Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 13683807 | 1580 days ago | IN | 0 ETH | 0.00557383 | ||||
| Approve | 13683661 | 1580 days ago | IN | 0 ETH | 0.00571724 | ||||
| Approve | 13683612 | 1580 days ago | IN | 0 ETH | 0.00845068 | ||||
| Approve | 13683598 | 1580 days ago | IN | 0 ETH | 0.0057148 | ||||
| Approve | 13683594 | 1580 days ago | IN | 0 ETH | 0.00501219 | ||||
| Approve | 13683590 | 1580 days ago | IN | 0 ETH | 0.00634337 | ||||
| Approve | 13683589 | 1580 days ago | IN | 0 ETH | 0.00767447 | ||||
| Approve | 13683585 | 1580 days ago | IN | 0 ETH | 0.00484681 | ||||
| Approve | 13683583 | 1580 days ago | IN | 0 ETH | 0.00518373 | ||||
| Approve | 13683583 | 1580 days ago | IN | 0 ETH | 0.00759924 | ||||
| Approve | 13683582 | 1580 days ago | IN | 0 ETH | 0.00696729 | ||||
| Approve | 13683576 | 1580 days ago | IN | 0 ETH | 0.00713041 | ||||
| Approve | 13683575 | 1580 days ago | IN | 0 ETH | 0.00446223 | ||||
| Renounce Ownersh... | 13683574 | 1580 days ago | IN | 0 ETH | 0.00243211 | ||||
| Approve | 13683572 | 1580 days ago | IN | 0 ETH | 0.00391576 | ||||
| Approve | 13683563 | 1580 days ago | IN | 0 ETH | 0.00373391 | ||||
| Approve | 13683554 | 1580 days ago | IN | 0 ETH | 0.00492989 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 13687215 | 1579 days ago | 0.00904676 ETH | ||||
| - | 13687215 | 1579 days ago | 0.00904676 ETH | ||||
| - | 13687215 | 1579 days ago | 0.01809353 ETH | ||||
| - | 13684093 | 1580 days ago | 0.01388047 ETH | ||||
| - | 13684093 | 1580 days ago | 0.01388047 ETH | ||||
| - | 13684093 | 1580 days ago | 0.02776094 ETH | ||||
| - | 13684091 | 1580 days ago | 0.0072931 ETH | ||||
| - | 13684091 | 1580 days ago | 0.0072931 ETH | ||||
| - | 13684091 | 1580 days ago | 0.01458621 ETH | ||||
| - | 13683768 | 1580 days ago | 0.0030947 ETH | ||||
| - | 13683768 | 1580 days ago | 0.0030947 ETH | ||||
| - | 13683768 | 1580 days ago | 0.00618941 ETH | ||||
| - | 13683750 | 1580 days ago | 0.02140157 ETH | ||||
| - | 13683750 | 1580 days ago | 0.02140157 ETH | ||||
| - | 13683750 | 1580 days ago | 0.04280315 ETH | ||||
| - | 13683721 | 1580 days ago | 0.04783737 ETH | ||||
| - | 13683721 | 1580 days ago | 0.04783737 ETH | ||||
| - | 13683721 | 1580 days ago | 0.09567475 ETH | ||||
| - | 13683688 | 1580 days ago | 0.04783737 ETH | ||||
| - | 13683688 | 1580 days ago | 0.04783737 ETH | ||||
| - | 13683688 | 1580 days ago | 0.09567475 ETH | ||||
| - | 13683687 | 1580 days ago | 0.02516243 ETH | ||||
| - | 13683687 | 1580 days ago | 0.02516243 ETH | ||||
| - | 13683687 | 1580 days ago | 0.05032487 ETH | ||||
| - | 13683645 | 1580 days ago | 0.00707915 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MultiAlphaCapital
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-11-25
*/
// Multi-Alpha Capital: $MAC
// You buy on Ethereum, we strategize, find and execute best Alphas on multiple chains from Yield Farming to NFTs and return the profits to $MAC holders.
// Tokenomics:
// 10% of each buy goes to existing holders.
// 10% of each sell goes into multi-chain farming, yield generating and blue-chip NFT acquisitions to add to the treasury and buy back MAC tokens.
// Twitter: https://twitter.com/MulAlphaCapital
// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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 substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `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);
}
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;
/**
* @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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 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 functionCall(target, data, "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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(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) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason 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 {
// 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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: MultiAlphaCapital.sol
// Multi-Alpha Capital: $MAC
// You buy on Ethereum, we strategize, find and execute best Alphas on multiple chains from Yield Farming to NFTs and return the profits to $MAC holders.
// Tokenomics:
// 10% of each buy goes to existing holders.
// 10% of each sell goes into multi-chain farming, yield generating and blue-chip NFT acquisitions to add to the treasury and buy back MAC tokens.
// Twitter: https://twitter.com/MulAlphaCapital
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;
}
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;
}
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);
}
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;
}
pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT
contract MultiAlphaCapital is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _rOwned;
mapping (address => uint256) private _tOwned;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _isExcludedFromFee;
mapping (address => bool) private _isExcluded;
address[] private _excluded;
uint256 private constant MAX = ~uint256(0);
uint256 private _tTotal = 1000000000000 * 10**9;
uint256 private _rTotal = (MAX - (MAX % _tTotal));
uint256 private _tFeeTotal;
string private _name = 'MultiAlphaCapital';
string private _symbol = 'MAC';
uint8 private _decimals = 9;
uint256 private _taxFee = 10;
uint256 private _teamFee = 10;
uint256 private _previousTaxFee = _taxFee;
uint256 private _previousTeamFee = _teamFee;
address payable public _MACWalletAddress;
address payable public _marketingWalletAddress;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
bool inSwap = false;
bool public swapEnabled = true;
uint256 private _maxTxAmount = 100000000000000e9;
// We will set a minimum amount of tokens to be swaped => 5M
uint256 private _numOfTokensToExchangeForTeam = 5 * 10**3 * 10**9;
event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
event SwapEnabledUpdated(bool enabled);
modifier lockTheSwap {
inSwap = true;
_;
inSwap = false;
}
constructor (address payable MACWalletAddress, address payable marketingWalletAddress) {
_MACWalletAddress = MACWalletAddress;
_marketingWalletAddress = marketingWalletAddress;
_rOwned[_msgSender()] = _rTotal;
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
// Create a uniswap pair for this new token
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
// set the rest of the contract variables
uniswapV2Router = _uniswapV2Router;
// Exclude owner and this contract from fee
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
emit Transfer(address(0), _msgSender(), _tTotal);
}
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 _tTotal;
}
function balanceOf(address account) public view override returns (uint256) {
if (_isExcluded[account]) return _tOwned[account];
return tokenFromReflection(_rOwned[account]);
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function isExcluded(address account) public view returns (bool) {
return _isExcluded[account];
}
function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
_isExcludedFromFee[account] = excluded;
}
function totalFees() public view returns (uint256) {
return _tFeeTotal;
}
function deliver(uint256 tAmount) public {
address sender = _msgSender();
require(!_isExcluded[sender], "Excluded addresses cannot call this function");
(uint256 rAmount,,,,,) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rTotal = _rTotal.sub(rAmount);
_tFeeTotal = _tFeeTotal.add(tAmount);
}
function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
require(tAmount <= _tTotal, "Amount must be less than supply");
if (!deductTransferFee) {
(uint256 rAmount,,,,,) = _getValues(tAmount);
return rAmount;
} else {
(,uint256 rTransferAmount,,,,) = _getValues(tAmount);
return rTransferAmount;
}
}
function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
require(rAmount <= _rTotal, "Amount must be less than total reflections");
uint256 currentRate = _getRate();
return rAmount.div(currentRate);
}
function excludeAccount(address account) external onlyOwner() {
require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
require(!_isExcluded[account], "Account is already excluded");
if(_rOwned[account] > 0) {
_tOwned[account] = tokenFromReflection(_rOwned[account]);
}
_isExcluded[account] = true;
_excluded.push(account);
}
function includeAccount(address account) external onlyOwner() {
require(_isExcluded[account], "Account is already excluded");
for (uint256 i = 0; i < _excluded.length; i++) {
if (_excluded[i] == account) {
_excluded[i] = _excluded[_excluded.length - 1];
_tOwned[account] = 0;
_isExcluded[account] = false;
_excluded.pop();
break;
}
}
}
function removeAllFee() private {
if(_taxFee == 0 && _teamFee == 0) return;
_previousTaxFee = _taxFee;
_previousTeamFee = _teamFee;
_taxFee = 0;
_teamFee = 0;
}
function restoreAllFee() private {
_taxFee = _previousTaxFee;
_teamFee = _previousTeamFee;
}
function isExcludedFromFee(address account) public view returns(bool) {
return _isExcludedFromFee[account];
}
function _approve(address owner, address spender, uint256 amount) private {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _transfer(address sender, address recipient, uint256 amount) private {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
if(sender != owner() && recipient != owner())
require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
// is the token balance of this contract address over the min number of
// tokens that we need to initiate a swap?
// also, don't get caught in a circular team event.
// also, don't swap if sender is uniswap pair.
uint256 contractTokenBalance = balanceOf(address(this));
if(contractTokenBalance >= _maxTxAmount)
{
contractTokenBalance = _maxTxAmount;
}
bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
// We need to swap the current tokens to ETH and send to the team wallet
swapTokensForEth(contractTokenBalance);
uint256 contractETHBalance = address(this).balance;
if(contractETHBalance > 0) {
sendETHToTeam(address(this).balance);
}
}
//indicates if fee should be deducted from transfer
bool takeFee = true;
//if any account belongs to _isExcludedFromFee account then remove the fee
if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
takeFee = false;
}
//transfer amount, it will take tax and team fee
_tokenTransfer(sender,recipient,amount,takeFee);
}
function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function sendETHToTeam(uint256 amount) private {
_MACWalletAddress.transfer(amount.div(2));
_marketingWalletAddress.transfer(amount.div(2));
}
// We are exposing these functions to be able to manual swap and send
// in case the token is highly valued and 5M becomes too much
function manualSwap() external onlyOwner() {
uint256 contractBalance = balanceOf(address(this));
swapTokensForEth(contractBalance);
}
function manualSend() external onlyOwner() {
uint256 contractETHBalance = address(this).balance;
sendETHToTeam(contractETHBalance);
}
function setSwapEnabled(bool enabled) external onlyOwner(){
swapEnabled = enabled;
}
function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
if(!takeFee)
removeAllFee();
if (_isExcluded[sender] && !_isExcluded[recipient]) {
_transferFromExcluded(sender, recipient, amount);
} else if (!_isExcluded[sender] && _isExcluded[recipient]) {
_transferToExcluded(sender, recipient, amount);
} else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
_transferStandard(sender, recipient, amount);
} else if (_isExcluded[sender] && _isExcluded[recipient]) {
_transferBothExcluded(sender, recipient, amount);
} else {
_transferStandard(sender, recipient, amount);
}
if(!takeFee)
restoreAllFee();
}
function _transferStandard(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeTeam(tTeam);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeTeam(tTeam);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeTeam(tTeam);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeTeam(tTeam);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _takeTeam(uint256 tTeam) private {
uint256 currentRate = _getRate();
uint256 rTeam = tTeam.mul(currentRate);
_rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
if(_isExcluded[address(this)])
_tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
}
function _reflectFee(uint256 rFee, uint256 tFee) private {
_rTotal = _rTotal.sub(rFee);
_tFeeTotal = _tFeeTotal.add(tFee);
}
//to recieve ETH from uniswapV2Router when swaping
receive() external payable {}
function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
(uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee);
uint256 currentRate = _getRate();
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
}
function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) {
uint256 tFee = tAmount.mul(taxFee).div(100);
uint256 tTeam = tAmount.mul(teamFee).div(100);
uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
return (tTransferAmount, tFee, tTeam);
}
function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
uint256 rAmount = tAmount.mul(currentRate);
uint256 rFee = tFee.mul(currentRate);
uint256 rTransferAmount = rAmount.sub(rFee);
return (rAmount, rTransferAmount, rFee);
}
function _getRate() private view returns(uint256) {
(uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
return rSupply.div(tSupply);
}
function _getCurrentSupply() private view returns(uint256, uint256) {
uint256 rSupply = _rTotal;
uint256 tSupply = _tTotal;
for (uint256 i = 0; i < _excluded.length; i++) {
if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
rSupply = rSupply.sub(_rOwned[_excluded[i]]);
tSupply = tSupply.sub(_tOwned[_excluded[i]]);
}
if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
return (rSupply, tSupply);
}
function _getTaxFee() private view returns(uint256) {
return _taxFee;
}
function _getMaxTxAmount() private view returns(uint256) {
return _maxTxAmount;
}
function _getETHBalance() public view returns(uint256 balance) {
return address(this).balance;
}
function _setTaxFee(uint256 taxFee) external onlyOwner() {
require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
_taxFee = taxFee;
}
function _setTeamFee(uint256 teamFee) external onlyOwner() {
require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
_teamFee = teamFee;
}
function _setMACWallet(address payable MACWalletAddress) external onlyOwner() {
_MACWalletAddress = MACWalletAddress;
}
function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
require(maxTxAmount >= 100000000000000e9 , 'maxTxAmount should be greater than 100000000000000e9');
_maxTxAmount = maxTxAmount;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address payable","name":"MACWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":"_MACWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"MACWalletAddress","type":"address"}],"name":"_setMACWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c0604052683635c9adc5dea0000060078190556200002190600019620005af565b6200002f906000196200054c565b60085560408051808201909152601180825270135d5b1d1a505b1c1a1850d85c1a5d185b607a1b60209092019182526200006c91600a9162000440565b50604080518082019091526003808252624d414360e81b60209092019182526200009991600b9162000440565b50600c805460ff19166009179055600a600d819055600e819055600f8190556010556012805461ffff60a01b1916600160a81b17905569152d02c7e14af680000060135565048c27395000601455348015620000f457600080fd5b5060405162002b6138038062002b6183398101604081905262000117916200050d565b6200012233620003f0565b601180546001600160a01b038085166001600160a01b031992831617909255601280549284169290911691909117905560085460016000620001613390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d857600080fd5b505afa158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002139190620004e6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025c57600080fd5b505afa15801562000271573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002979190620004e6565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002e057600080fd5b505af1158015620002f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031b9190620004e6565b6001600160601b0319606091821b811660a0529082901b166080526001600460006200034f6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620003973390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620003df91815260200190565b60405180910390a3505050620005eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200044e9062000572565b90600052602060002090601f016020900481019282620004725760008555620004bd565b82601f106200048d57805160ff1916838001178555620004bd565b82800160010185558215620004bd579182015b82811115620004bd578251825591602001919060010190620004a0565b50620004cb929150620004cf565b5090565b5b80821115620004cb5760008155600101620004d0565b600060208284031215620004f957600080fd5b81516200050681620005d2565b9392505050565b600080604083850312156200052157600080fd5b82516200052e81620005d2565b60208401519092506200054181620005d2565b809150509250929050565b6000828210156200056d57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200058757607f821691505b60208210811415620005a957634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005cd57634e487b7160e01b600052601260045260246000fd5b500690565b6001600160a01b0381168114620005e857600080fd5b50565b60805160601c60a05160601c61252e620006336000396000818161043001526115ce0152600081816102ab015281816117bb0152818161188301526118bf015261252e6000f3fe6080604052600436106102135760003560e01c80636ddd171311610118578063af9549e0116100a0578063f2cc0c181161006f578063f2cc0c1814610688578063f2fde38b146106a8578063f4293890146106c8578063f815a842146106dd578063f84354f1146106f057600080fd5b8063af9549e0146105c9578063cba0e996146105e9578063dd62ed3e14610622578063e01af92c1461066857600080fd5b80638da5cb5b116100e75780638da5cb5b1461053657806394d5eca51461055457806395d89b4114610574578063a457c2d714610589578063a9059cbb146105a957600080fd5b80636ddd1713146104c05780636fd312ad146104e157806370a0823114610501578063715018a61461052157600080fd5b8063313ce5671161019b5780634549b0391161016a5780634549b039146103fe57806349bd5a5e1461041e57806351bc3c85146104525780635342acb4146104675780635880b873146104a057600080fd5b8063313ce5671461037c578063395093511461039e5780633bd5d173146103be5780634144d9e4146103de57600080fd5b806318160ddd116101e257806318160ddd146102e55780631bbae6e0146102fa57806323b872dd1461031c578063286671621461033c5780632d8381191461035c57600080fd5b806306fdde031461021f578063095ea7b31461024a57806313114a9d1461027a5780631694505e1461029957600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610710565b6040516102419190612293565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612210565b6107a2565b6040519015158152602001610241565b34801561028657600080fd5b506009545b604051908152602001610241565b3480156102a557600080fd5b506102cd7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102f157600080fd5b5060075461028b565b34801561030657600080fd5b5061031a610315366004612257565b6107b9565b005b34801561032857600080fd5b5061026a61033736600461219a565b610868565b34801561034857600080fd5b5061031a610357366004612257565b6108d1565b34801561036857600080fd5b5061028b610377366004612257565b61095e565b34801561038857600080fd5b50600c5460405160ff9091168152602001610241565b3480156103aa57600080fd5b5061026a6103b9366004612210565b6109e2565b3480156103ca57600080fd5b5061031a6103d9366004612257565b610a18565b3480156103ea57600080fd5b506012546102cd906001600160a01b031681565b34801561040a57600080fd5b5061028b610419366004612270565b610b02565b34801561042a57600080fd5b506102cd7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045e57600080fd5b5061031a610b8f565b34801561047357600080fd5b5061026a610482366004612127565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104ac57600080fd5b5061031a6104bb366004612257565b610bd2565b3480156104cc57600080fd5b5060125461026a90600160a81b900460ff1681565b3480156104ed57600080fd5b5061031a6104fc366004612127565b610c5f565b34801561050d57600080fd5b5061028b61051c366004612127565b610cab565b34801561052d57600080fd5b5061031a610d0a565b34801561054257600080fd5b506000546001600160a01b03166102cd565b34801561056057600080fd5b506011546102cd906001600160a01b031681565b34801561058057600080fd5b50610234610d40565b34801561059557600080fd5b5061026a6105a4366004612210565b610d4f565b3480156105b557600080fd5b5061026a6105c4366004612210565b610d9e565b3480156105d557600080fd5b5061031a6105e43660046121db565b610dab565b3480156105f557600080fd5b5061026a610604366004612127565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561062e57600080fd5b5061028b61063d366004612161565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561067457600080fd5b5061031a61068336600461223c565b610e00565b34801561069457600080fd5b5061031a6106a3366004612127565b610e48565b3480156106b457600080fd5b5061031a6106c3366004612127565b611013565b3480156106d457600080fd5b5061031a6110ab565b3480156106e957600080fd5b504761028b565b3480156106fc57600080fd5b5061031a61070b366004612127565b6110df565b6060600a805461071f906123fe565b80601f016020809104026020016040519081016040528092919081815260200182805461074b906123fe565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107af338484611296565b5060015b92915050565b6000546001600160a01b031633146107ec5760405162461bcd60e51b81526004016107e3906122e8565b60405180910390fd5b69152d02c7e14af68000008110156108635760405162461bcd60e51b815260206004820152603460248201527f6d61785478416d6f756e742073686f756c642062652067726561746572207468604482015273616e20313030303030303030303030303030653960601b60648201526084016107e3565b601355565b60006108758484846113ba565b6108c784336108c2856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611682565b611296565b5060019392505050565b6000546001600160a01b031633146108fb5760405162461bcd60e51b81526004016107e3906122e8565b6001811015801561090d575060198111155b6109595760405162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d203235000000000060448201526064016107e3565b600e55565b60006008548211156109c55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107e3565b60006109cf6116ae565b90506109db83826116d1565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916107af9185906108c290866116dd565b3360008181526005602052604090205460ff1615610a8d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016107e3565b6000610a98836116e9565b505050506001600160a01b038416600090815260016020526040902054919250610ac491905082611745565b6001600160a01b038316600090815260016020526040902055600854610aea9082611745565b600855600954610afa90846116dd565b600955505050565b6000600754831115610b565760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107e3565b81610b75576000610b66846116e9565b509395506107b3945050505050565b6000610b80846116e9565b509295506107b3945050505050565b6000546001600160a01b03163314610bb95760405162461bcd60e51b81526004016107e3906122e8565b6000610bc430610cab565b9050610bcf81611751565b50565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b81526004016107e3906122e8565b60018110158015610c0e575060198111155b610c5a5760405162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d20323500000000000060448201526064016107e3565b600d55565b6000546001600160a01b03163314610c895760405162461bcd60e51b81526004016107e3906122e8565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526005602052604081205460ff1615610ce857506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546107b39061095e565b6000546001600160a01b03163314610d345760405162461bcd60e51b81526004016107e3906122e8565b610d3e6000611940565b565b6060600b805461071f906123fe565b60006107af33846108c2856040518060600160405280602581526020016124d4602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611682565b60006107af3384846113ba565b6000546001600160a01b03163314610dd55760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610e2a5760405162461bcd60e51b81526004016107e3906122e8565b60128054911515600160a81b0260ff60a81b19909216919091179055565b6000546001600160a01b03163314610e725760405162461bcd60e51b81526004016107e3906122e8565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610eea5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016107e3565b6001600160a01b03811660009081526005602052604090205460ff1615610f535760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b6001600160a01b03811660009081526001602052604090205415610fad576001600160a01b038116600090815260016020526040902054610f939061095e565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b0316331461103d5760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b0381166110a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b610bcf81611940565b6000546001600160a01b031633146110d55760405162461bcd60e51b81526004016107e3906122e8565b47610bcf81611990565b6000546001600160a01b031633146111095760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03811660009081526005602052604090205460ff166111715760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b60005b60065481101561129257816001600160a01b03166006828154811061119b5761119b612480565b6000918252602090912001546001600160a01b0316141561128057600680546111c6906001906123e7565b815481106111d6576111d6612480565b600091825260209091200154600680546001600160a01b03909216918390811061120257611202612480565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600680548061125a5761125a61246a565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061128a81612439565b915050611174565b5050565b6001600160a01b0383166112f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b6001600160a01b0382166113595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661141e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107e3565b6001600160a01b0382166114805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107e3565b600081116114e25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107e3565b6000546001600160a01b0384811691161480159061150e57506000546001600160a01b03838116911614155b15611576576013548111156115765760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107e3565b600061158130610cab565b9050601354811061159157506013545b6014546012549082101590600160a01b900460ff161580156115bc5750601254600160a81b900460ff165b80156115c55750805b801561160357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b156116235761161182611751565b4780156116215761162147611990565b505b6001600160a01b03851660009081526004602052604090205460019060ff168061166557506001600160a01b03851660009081526004602052604090205460ff165b1561166e575060005b61167a86868684611a15565b505050505050565b600081848411156116a65760405162461bcd60e51b81526004016107e39190612293565b505050900390565b60008060006116bb611b92565b90925090506116ca82826116d1565b9250505090565b60006109db82846123a6565b60006109db828461238e565b60008060008060008060008060006117068a600d54600e54611d14565b92509250925060006117166116ae565b905060008060006117288e8786611d69565b919e509c509a509598509396509194505050505091939550919395565b60006109db82846123e7565b6012805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061179957611799612480565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561181257600080fd5b505afa158015611826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184a9190612144565b8160018151811061185d5761185d612480565b60200260200101906001600160a01b031690816001600160a01b0316815250506118a8307f000000000000000000000000000000000000000000000000000000000000000084611296565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906118fd90859060009086903090429060040161231d565b600060405180830381600087803b15801561191757600080fd5b505af115801561192b573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6011546001600160a01b03166108fc6119aa8360026116d1565b6040518115909202916000818181858888f193505050501580156119d2573d6000803e3d6000fd5b506012546001600160a01b03166108fc6119ed8360026116d1565b6040518115909202916000818181858888f19350505050158015611292573d6000803e3d6000fd5b80611a2257611a22611da5565b6001600160a01b03841660009081526005602052604090205460ff168015611a6357506001600160a01b03831660009081526005602052604090205460ff16155b15611a7857611a73848484611dd3565b611b76565b6001600160a01b03841660009081526005602052604090205460ff16158015611ab957506001600160a01b03831660009081526005602052604090205460ff165b15611ac957611a73848484611ef9565b6001600160a01b03841660009081526005602052604090205460ff16158015611b0b57506001600160a01b03831660009081526005602052604090205460ff16155b15611b1b57611a73848484611fa2565b6001600160a01b03841660009081526005602052604090205460ff168015611b5b57506001600160a01b03831660009081526005602052604090205460ff165b15611b6b57611a73848484611fe6565b611b76848484611fa2565b80611b8c57611b8c600f54600d55601054600e55565b50505050565b6008546007546000918291825b600654811015611ce457826001600060068481548110611bc157611bc1612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c2c5750816002600060068481548110611c0557611c05612480565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c4257600854600754945094505050509091565b611c886001600060068481548110611c5c57611c5c612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611745565b9250611cd06002600060068481548110611ca457611ca4612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611745565b915080611cdc81612439565b915050611b9f565b50600754600854611cf4916116d1565b821015611d0b576008546007549350935050509091565b90939092509050565b6000808080611d2e6064611d288989612059565b906116d1565b90506000611d416064611d288a89612059565b90506000611d5982611d538b86611745565b90611745565b9992985090965090945050505050565b6000808080611d788786612059565b90506000611d868787612059565b90506000611d948383611745565b929992985090965090945050505050565b600d54158015611db55750600e54155b15611dbc57565b600d8054600f55600e805460105560009182905555565b600080600080600080611de5876116e9565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150611e179088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611e469087611745565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054611e7590866116dd565b6001600160a01b038916600090815260016020526040902055611e9781612065565b611ea184836120ee565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611ee691815260200190565b60405180910390a3505050505050505050565b600080600080600080611f0b876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611f3d9087611745565b6001600160a01b03808b16600090815260016020908152604080832094909455918b16815260029091522054611f7390846116dd565b6001600160a01b038916600090815260026020908152604080832093909355600190522054611e7590866116dd565b600080600080600080611fb4876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611e469087611745565b600080600080600080611ff8876116e9565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061202a9088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611f3d9087611745565b60006109db82846123c8565b600061206f6116ae565b9050600061207d8383612059565b3060009081526001602052604090205490915061209a90826116dd565b3060009081526001602090815260408083209390935560059052205460ff16156120e957306000908152600260205260409020546120d890846116dd565b306000908152600260205260409020555b505050565b6008546120fb9083611745565b60085560095461210b90826116dd565b6009555050565b8035801515811461212257600080fd5b919050565b60006020828403121561213957600080fd5b81356109db81612496565b60006020828403121561215657600080fd5b81516109db81612496565b6000806040838503121561217457600080fd5b823561217f81612496565b9150602083013561218f81612496565b809150509250929050565b6000806000606084860312156121af57600080fd5b83356121ba81612496565b925060208401356121ca81612496565b929592945050506040919091013590565b600080604083850312156121ee57600080fd5b82356121f981612496565b915061220760208401612112565b90509250929050565b6000806040838503121561222357600080fd5b823561222e81612496565b946020939093013593505050565b60006020828403121561224e57600080fd5b6109db82612112565b60006020828403121561226957600080fd5b5035919050565b6000806040838503121561228357600080fd5b8235915061220760208401612112565b600060208083528351808285015260005b818110156122c0578581018301518582016040015282016122a4565b818111156122d2576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561236d5784516001600160a01b031683529383019391830191600101612348565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156123a1576123a1612454565b500190565b6000826123c357634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123e2576123e2612454565b500290565b6000828210156123f9576123f9612454565b500390565b600181811c9082168061241257607f821691505b6020821081141561243357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244d5761244d612454565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610bcf57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207a561cfac8e423c34b05f0e732a7f904d234c802f581bb840d598bf9f2333afb64736f6c634300080700330000000000000000000000001fadc269b9a836f6d134f3a102b231e679a2397d0000000000000000000000008cc9ba446a055d74dbff69f5cedfdacf61aef71a
Deployed Bytecode
0x6080604052600436106102135760003560e01c80636ddd171311610118578063af9549e0116100a0578063f2cc0c181161006f578063f2cc0c1814610688578063f2fde38b146106a8578063f4293890146106c8578063f815a842146106dd578063f84354f1146106f057600080fd5b8063af9549e0146105c9578063cba0e996146105e9578063dd62ed3e14610622578063e01af92c1461066857600080fd5b80638da5cb5b116100e75780638da5cb5b1461053657806394d5eca51461055457806395d89b4114610574578063a457c2d714610589578063a9059cbb146105a957600080fd5b80636ddd1713146104c05780636fd312ad146104e157806370a0823114610501578063715018a61461052157600080fd5b8063313ce5671161019b5780634549b0391161016a5780634549b039146103fe57806349bd5a5e1461041e57806351bc3c85146104525780635342acb4146104675780635880b873146104a057600080fd5b8063313ce5671461037c578063395093511461039e5780633bd5d173146103be5780634144d9e4146103de57600080fd5b806318160ddd116101e257806318160ddd146102e55780631bbae6e0146102fa57806323b872dd1461031c578063286671621461033c5780632d8381191461035c57600080fd5b806306fdde031461021f578063095ea7b31461024a57806313114a9d1461027a5780631694505e1461029957600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610710565b6040516102419190612293565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612210565b6107a2565b6040519015158152602001610241565b34801561028657600080fd5b506009545b604051908152602001610241565b3480156102a557600080fd5b506102cd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b3480156102f157600080fd5b5060075461028b565b34801561030657600080fd5b5061031a610315366004612257565b6107b9565b005b34801561032857600080fd5b5061026a61033736600461219a565b610868565b34801561034857600080fd5b5061031a610357366004612257565b6108d1565b34801561036857600080fd5b5061028b610377366004612257565b61095e565b34801561038857600080fd5b50600c5460405160ff9091168152602001610241565b3480156103aa57600080fd5b5061026a6103b9366004612210565b6109e2565b3480156103ca57600080fd5b5061031a6103d9366004612257565b610a18565b3480156103ea57600080fd5b506012546102cd906001600160a01b031681565b34801561040a57600080fd5b5061028b610419366004612270565b610b02565b34801561042a57600080fd5b506102cd7f0000000000000000000000002289323fb42ed1f9cab38b8b0d0a3cfce2cdb43281565b34801561045e57600080fd5b5061031a610b8f565b34801561047357600080fd5b5061026a610482366004612127565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104ac57600080fd5b5061031a6104bb366004612257565b610bd2565b3480156104cc57600080fd5b5060125461026a90600160a81b900460ff1681565b3480156104ed57600080fd5b5061031a6104fc366004612127565b610c5f565b34801561050d57600080fd5b5061028b61051c366004612127565b610cab565b34801561052d57600080fd5b5061031a610d0a565b34801561054257600080fd5b506000546001600160a01b03166102cd565b34801561056057600080fd5b506011546102cd906001600160a01b031681565b34801561058057600080fd5b50610234610d40565b34801561059557600080fd5b5061026a6105a4366004612210565b610d4f565b3480156105b557600080fd5b5061026a6105c4366004612210565b610d9e565b3480156105d557600080fd5b5061031a6105e43660046121db565b610dab565b3480156105f557600080fd5b5061026a610604366004612127565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561062e57600080fd5b5061028b61063d366004612161565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561067457600080fd5b5061031a61068336600461223c565b610e00565b34801561069457600080fd5b5061031a6106a3366004612127565b610e48565b3480156106b457600080fd5b5061031a6106c3366004612127565b611013565b3480156106d457600080fd5b5061031a6110ab565b3480156106e957600080fd5b504761028b565b3480156106fc57600080fd5b5061031a61070b366004612127565b6110df565b6060600a805461071f906123fe565b80601f016020809104026020016040519081016040528092919081815260200182805461074b906123fe565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107af338484611296565b5060015b92915050565b6000546001600160a01b031633146107ec5760405162461bcd60e51b81526004016107e3906122e8565b60405180910390fd5b69152d02c7e14af68000008110156108635760405162461bcd60e51b815260206004820152603460248201527f6d61785478416d6f756e742073686f756c642062652067726561746572207468604482015273616e20313030303030303030303030303030653960601b60648201526084016107e3565b601355565b60006108758484846113ba565b6108c784336108c2856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611682565b611296565b5060019392505050565b6000546001600160a01b031633146108fb5760405162461bcd60e51b81526004016107e3906122e8565b6001811015801561090d575060198111155b6109595760405162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d203235000000000060448201526064016107e3565b600e55565b60006008548211156109c55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107e3565b60006109cf6116ae565b90506109db83826116d1565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916107af9185906108c290866116dd565b3360008181526005602052604090205460ff1615610a8d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016107e3565b6000610a98836116e9565b505050506001600160a01b038416600090815260016020526040902054919250610ac491905082611745565b6001600160a01b038316600090815260016020526040902055600854610aea9082611745565b600855600954610afa90846116dd565b600955505050565b6000600754831115610b565760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107e3565b81610b75576000610b66846116e9565b509395506107b3945050505050565b6000610b80846116e9565b509295506107b3945050505050565b6000546001600160a01b03163314610bb95760405162461bcd60e51b81526004016107e3906122e8565b6000610bc430610cab565b9050610bcf81611751565b50565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b81526004016107e3906122e8565b60018110158015610c0e575060198111155b610c5a5760405162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d20323500000000000060448201526064016107e3565b600d55565b6000546001600160a01b03163314610c895760405162461bcd60e51b81526004016107e3906122e8565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526005602052604081205460ff1615610ce857506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546107b39061095e565b6000546001600160a01b03163314610d345760405162461bcd60e51b81526004016107e3906122e8565b610d3e6000611940565b565b6060600b805461071f906123fe565b60006107af33846108c2856040518060600160405280602581526020016124d4602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611682565b60006107af3384846113ba565b6000546001600160a01b03163314610dd55760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610e2a5760405162461bcd60e51b81526004016107e3906122e8565b60128054911515600160a81b0260ff60a81b19909216919091179055565b6000546001600160a01b03163314610e725760405162461bcd60e51b81526004016107e3906122e8565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610eea5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016107e3565b6001600160a01b03811660009081526005602052604090205460ff1615610f535760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b6001600160a01b03811660009081526001602052604090205415610fad576001600160a01b038116600090815260016020526040902054610f939061095e565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b0316331461103d5760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b0381166110a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b610bcf81611940565b6000546001600160a01b031633146110d55760405162461bcd60e51b81526004016107e3906122e8565b47610bcf81611990565b6000546001600160a01b031633146111095760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03811660009081526005602052604090205460ff166111715760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b60005b60065481101561129257816001600160a01b03166006828154811061119b5761119b612480565b6000918252602090912001546001600160a01b0316141561128057600680546111c6906001906123e7565b815481106111d6576111d6612480565b600091825260209091200154600680546001600160a01b03909216918390811061120257611202612480565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600680548061125a5761125a61246a565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061128a81612439565b915050611174565b5050565b6001600160a01b0383166112f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b6001600160a01b0382166113595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661141e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107e3565b6001600160a01b0382166114805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107e3565b600081116114e25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107e3565b6000546001600160a01b0384811691161480159061150e57506000546001600160a01b03838116911614155b15611576576013548111156115765760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107e3565b600061158130610cab565b9050601354811061159157506013545b6014546012549082101590600160a01b900460ff161580156115bc5750601254600160a81b900460ff165b80156115c55750805b801561160357507f0000000000000000000000002289323fb42ed1f9cab38b8b0d0a3cfce2cdb4326001600160a01b0316856001600160a01b031614155b156116235761161182611751565b4780156116215761162147611990565b505b6001600160a01b03851660009081526004602052604090205460019060ff168061166557506001600160a01b03851660009081526004602052604090205460ff165b1561166e575060005b61167a86868684611a15565b505050505050565b600081848411156116a65760405162461bcd60e51b81526004016107e39190612293565b505050900390565b60008060006116bb611b92565b90925090506116ca82826116d1565b9250505090565b60006109db82846123a6565b60006109db828461238e565b60008060008060008060008060006117068a600d54600e54611d14565b92509250925060006117166116ae565b905060008060006117288e8786611d69565b919e509c509a509598509396509194505050505091939550919395565b60006109db82846123e7565b6012805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061179957611799612480565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561181257600080fd5b505afa158015611826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184a9190612144565b8160018151811061185d5761185d612480565b60200260200101906001600160a01b031690816001600160a01b0316815250506118a8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611296565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906118fd90859060009086903090429060040161231d565b600060405180830381600087803b15801561191757600080fd5b505af115801561192b573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6011546001600160a01b03166108fc6119aa8360026116d1565b6040518115909202916000818181858888f193505050501580156119d2573d6000803e3d6000fd5b506012546001600160a01b03166108fc6119ed8360026116d1565b6040518115909202916000818181858888f19350505050158015611292573d6000803e3d6000fd5b80611a2257611a22611da5565b6001600160a01b03841660009081526005602052604090205460ff168015611a6357506001600160a01b03831660009081526005602052604090205460ff16155b15611a7857611a73848484611dd3565b611b76565b6001600160a01b03841660009081526005602052604090205460ff16158015611ab957506001600160a01b03831660009081526005602052604090205460ff165b15611ac957611a73848484611ef9565b6001600160a01b03841660009081526005602052604090205460ff16158015611b0b57506001600160a01b03831660009081526005602052604090205460ff16155b15611b1b57611a73848484611fa2565b6001600160a01b03841660009081526005602052604090205460ff168015611b5b57506001600160a01b03831660009081526005602052604090205460ff165b15611b6b57611a73848484611fe6565b611b76848484611fa2565b80611b8c57611b8c600f54600d55601054600e55565b50505050565b6008546007546000918291825b600654811015611ce457826001600060068481548110611bc157611bc1612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c2c5750816002600060068481548110611c0557611c05612480565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c4257600854600754945094505050509091565b611c886001600060068481548110611c5c57611c5c612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611745565b9250611cd06002600060068481548110611ca457611ca4612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611745565b915080611cdc81612439565b915050611b9f565b50600754600854611cf4916116d1565b821015611d0b576008546007549350935050509091565b90939092509050565b6000808080611d2e6064611d288989612059565b906116d1565b90506000611d416064611d288a89612059565b90506000611d5982611d538b86611745565b90611745565b9992985090965090945050505050565b6000808080611d788786612059565b90506000611d868787612059565b90506000611d948383611745565b929992985090965090945050505050565b600d54158015611db55750600e54155b15611dbc57565b600d8054600f55600e805460105560009182905555565b600080600080600080611de5876116e9565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150611e179088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611e469087611745565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054611e7590866116dd565b6001600160a01b038916600090815260016020526040902055611e9781612065565b611ea184836120ee565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611ee691815260200190565b60405180910390a3505050505050505050565b600080600080600080611f0b876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611f3d9087611745565b6001600160a01b03808b16600090815260016020908152604080832094909455918b16815260029091522054611f7390846116dd565b6001600160a01b038916600090815260026020908152604080832093909355600190522054611e7590866116dd565b600080600080600080611fb4876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611e469087611745565b600080600080600080611ff8876116e9565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061202a9088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611f3d9087611745565b60006109db82846123c8565b600061206f6116ae565b9050600061207d8383612059565b3060009081526001602052604090205490915061209a90826116dd565b3060009081526001602090815260408083209390935560059052205460ff16156120e957306000908152600260205260409020546120d890846116dd565b306000908152600260205260409020555b505050565b6008546120fb9083611745565b60085560095461210b90826116dd565b6009555050565b8035801515811461212257600080fd5b919050565b60006020828403121561213957600080fd5b81356109db81612496565b60006020828403121561215657600080fd5b81516109db81612496565b6000806040838503121561217457600080fd5b823561217f81612496565b9150602083013561218f81612496565b809150509250929050565b6000806000606084860312156121af57600080fd5b83356121ba81612496565b925060208401356121ca81612496565b929592945050506040919091013590565b600080604083850312156121ee57600080fd5b82356121f981612496565b915061220760208401612112565b90509250929050565b6000806040838503121561222357600080fd5b823561222e81612496565b946020939093013593505050565b60006020828403121561224e57600080fd5b6109db82612112565b60006020828403121561226957600080fd5b5035919050565b6000806040838503121561228357600080fd5b8235915061220760208401612112565b600060208083528351808285015260005b818110156122c0578581018301518582016040015282016122a4565b818111156122d2576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561236d5784516001600160a01b031683529383019391830191600101612348565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156123a1576123a1612454565b500190565b6000826123c357634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123e2576123e2612454565b500290565b6000828210156123f9576123f9612454565b500390565b600181811c9082168061241257607f821691505b6020821081141561243357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244d5761244d612454565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610bcf57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207a561cfac8e423c34b05f0e732a7f904d234c802f581bb840d598bf9f2333afb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001fadc269b9a836f6d134f3a102b231e679a2397d0000000000000000000000008cc9ba446a055d74dbff69f5cedfdacf61aef71a
-----Decoded View---------------
Arg [0] : MACWalletAddress (address): 0x1fadC269b9a836f6D134F3A102B231E679a2397D
Arg [1] : marketingWalletAddress (address): 0x8Cc9Ba446A055D74DbFF69f5ceDfdAcf61AeF71a
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001fadc269b9a836f6d134f3a102b231e679a2397d
Arg [1] : 0000000000000000000000008cc9ba446a055d74dbff69f5cedfdacf61aef71a
Deployed Bytecode Sourcemap
30705:18842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33432:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34436:173;;;;;;;;;;-1:-1:-1;34436:173:0;;;;;:::i;:::-;;:::i;:::-;;;3661:14:1;;3654:22;3636:41;;3624:2;3609:18;34436:173:0;3496:187:1;35784:95:0;;;;;;;;;;-1:-1:-1;35857:10:0;;35784:95;;;10951:25:1;;;10939:2;10924:18;35784:95:0;10805:177:1;31840:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3228:32:1;;;3210:51;;3198:2;3183:18;31840:51:0;3064:203:1;33745:103:0;;;;;;;;;;-1:-1:-1;33829:7:0;;33745:103;;49307:233;;;;;;;;;;-1:-1:-1;49307:233:0;;;;;:::i;:::-;;:::i;:::-;;34621:329;;;;;;;;;;-1:-1:-1;34621:329:0;;;;;:::i;:::-;;:::i;48954:188::-;;;;;;;;;;-1:-1:-1;48954:188:0;;;;;:::i;:::-;;:::i;36792:269::-;;;;;;;;;;-1:-1:-1;36792:269:0;;;;;:::i;:::-;;:::i;33642:91::-;;;;;;;;;;-1:-1:-1;33712:9:0;;33642:91;;33712:9;;;;12114:36:1;;12102:2;12087:18;33642:91:0;11972:184:1;34962:230:0;;;;;;;;;;-1:-1:-1;34962:230:0;;;;;:::i;:::-;;:::i;35891:405::-;;;;;;;;;;-1:-1:-1;35891:405:0;;;;;:::i;:::-;;:::i;31781:46::-;;;;;;;;;;-1:-1:-1;31781:46:0;;;;-1:-1:-1;;;;;31781:46:0;;;36308:472;;;;;;;;;;-1:-1:-1;36308:472:0;;;;;:::i;:::-;;:::i;31902:38::-;;;;;;;;;;;;;;;41978:168;;;;;;;;;;;;;:::i;38483:131::-;;;;;;;;;;-1:-1:-1;38483:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;38575:27:0;38547:4;38575:27;;;:18;:27;;;;;;;;;38483:131;48761:181;;;;;;;;;;-1:-1:-1;48761:181:0;;;;;:::i;:::-;;:::i;31983:30::-;;;;;;;;;;-1:-1:-1;31983:30:0;;;;-1:-1:-1;;;31983:30:0;;;;;;49154:141;;;;;;;;;;-1:-1:-1;49154:141:0;;;;;:::i;:::-;;:::i;33860:210::-;;;;;;;;;;-1:-1:-1;33860:210:0;;;;;:::i;:::-;;:::i;12730:94::-;;;;;;;;;;;;;:::i;12079:87::-;;;;;;;;;;-1:-1:-1;12125:7:0;12152:6;-1:-1:-1;;;;;12152:6:0;12079:87;;31730:40;;;;;;;;;;-1:-1:-1;31730:40:0;;;;-1:-1:-1;;;;;31730:40:0;;;33535:95;;;;;;;;;;;;;:::i;35204:281::-;;;;;;;;;;-1:-1:-1;35204:281:0;;;;;:::i;:::-;;:::i;34082:179::-;;;;;;;;;;-1:-1:-1;34082:179:0;;;;;:::i;:::-;;:::i;35627:145::-;;;;;;;;;;-1:-1:-1;35627:145:0;;;;;:::i;:::-;;:::i;35497:118::-;;;;;;;;;;-1:-1:-1;35497:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;35583:20:0;35555:4;35583:20;;;:11;:20;;;;;;;;;35497:118;34273:151;;;;;;;;;;-1:-1:-1;34273:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;34385:18:0;;;34354:7;34385:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34273:151;42338:106;;;;;;;;;;-1:-1:-1;42338:106:0;;;;;:::i;:::-;;:::i;37073:475::-;;;;;;;;;;-1:-1:-1;37073:475:0;;;;;:::i;:::-;;:::i;12979:192::-;;;;;;;;;;-1:-1:-1;12979:192:0;;;;;:::i;:::-;;:::i;42158:168::-;;;;;;;;;;;;;:::i;48631:118::-;;;;;;;;;;-1:-1:-1;48716:21:0;48631:118;;37560:522;;;;;;;;;;-1:-1:-1;37560:522:0;;;;;:::i;:::-;;:::i;33432:91::-;33469:13;33506:5;33499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33432:91;:::o;34436:173::-;34511:4;34532:39;10947:10;34555:7;34564:6;34532:8;:39::i;:::-;-1:-1:-1;34593:4:0;34436:173;;;;;:::o;49307:233::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;;;;;;;;;49412:17:::1;49397:11;:32;;49389:98;;;::::0;-1:-1:-1;;;49389:98:0;;7064:2:1;49389:98:0::1;::::0;::::1;7046:21:1::0;7103:2;7083:18;;;7076:30;7142:34;7122:18;;;7115:62;-1:-1:-1;;;7193:18:1;;;7186:50;7253:19;;49389:98:0::1;6862:416:1::0;49389:98:0::1;49502:12;:26:::0;49307:233::o;34621:329::-;34719:4;34740:36;34750:6;34758:9;34769:6;34740:9;:36::i;:::-;34791:121;34800:6;10947:10;34822:89;34860:6;34822:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34822:19:0;;;;;;:11;:19;;;;;;;;10947:10;34822:33;;;;;;;;;;:37;:89::i;:::-;34791:8;:121::i;:::-;-1:-1:-1;34934:4:0;34621:329;;;;;:::o;48954:188::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;49047:1:::1;49036:7;:12;;:29;;;;;49063:2;49052:7;:13;;49036:29;49028:69;;;::::0;-1:-1:-1;;;49028:69:0;;6352:2:1;49028:69:0::1;::::0;::::1;6334:21:1::0;6391:2;6371:18;;;6364:30;6430:29;6410:18;;;6403:57;6477:18;;49028:69:0::1;6150:351:1::0;49028:69:0::1;49112:8;:18:::0;48954:188::o;36792:269::-;36858:7;36901;;36890;:18;;36882:73;;;;-1:-1:-1;;;36882:73:0;;5131:2:1;36882:73:0;;;5113:21:1;5170:2;5150:18;;;5143:30;5209:34;5189:18;;;5182:62;-1:-1:-1;;;5260:18:1;;;5253:40;5310:19;;36882:73:0;4929:406:1;36882:73:0;36970:19;36993:10;:8;:10::i;:::-;36970:33;-1:-1:-1;37025:24:0;:7;36970:33;37025:11;:24::i;:::-;37018:31;36792:269;-1:-1:-1;;;36792:269:0:o;34962:230::-;10947:10;35050:4;35103:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35103:34:0;;;;;;;;;;35050:4;;35071:83;;35094:7;;35103:50;;35142:10;35103:38;:50::i;35891:405::-;10947:10;35947:14;36000:19;;;:11;:19;;;;;;;;35999:20;35991:77;;;;-1:-1:-1;;;35991:77:0;;10594:2:1;35991:77:0;;;10576:21:1;10633:2;10613:18;;;10606:30;10672:34;10652:18;;;10645:62;-1:-1:-1;;;10723:18:1;;;10716:42;10775:19;;35991:77:0;10392:408:1;35991:77:0;36084:15;36108:19;36119:7;36108:10;:19::i;:::-;-1:-1:-1;;;;;;;;;36160:15:0;;;;;;:7;:15;;;;;;36083:44;;-1:-1:-1;36160:28:0;;:15;-1:-1:-1;36083:44:0;36160:19;:28::i;:::-;-1:-1:-1;;;;;36142:15:0;;;;;;:7;:15;;;;;:46;36213:7;;:20;;36225:7;36213:11;:20::i;:::-;36203:7;:30;36261:10;;:23;;36276:7;36261:14;:23::i;:::-;36248:10;:36;-1:-1:-1;;;35891:405:0:o;36308:472::-;36398:7;36441;;36430;:18;;36422:62;;;;-1:-1:-1;;;36422:62:0;;7485:2:1;36422:62:0;;;7467:21:1;7524:2;7504:18;;;7497:30;7563:33;7543:18;;;7536:61;7614:18;;36422:62:0;7283:355:1;36422:62:0;36504:17;36499:270;;36543:15;36567:19;36578:7;36567:10;:19::i;:::-;-1:-1:-1;36542:44:0;;-1:-1:-1;36605:14:0;;-1:-1:-1;;;;;36605:14:0;36499:270;36662:23;36693:19;36704:7;36693:10;:19::i;:::-;-1:-1:-1;36660:52:0;;-1:-1:-1;36731:22:0;;-1:-1:-1;;;;;36731:22:0;41978:168;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;42036:23:::1;42062:24;42080:4;42062:9;:24::i;:::-;42036:50;;42101:33;42118:15;42101:16;:33::i;:::-;42021:125;41978:168::o:0;48761:181::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;48851:1:::1;48841:6;:11;;:27;;;;;48866:2;48856:6;:12;;48841:27;48833:66;;;::::0;-1:-1:-1;;;48833:66:0;;9836:2:1;48833:66:0::1;::::0;::::1;9818:21:1::0;9875:2;9855:18;;;9848:30;9914:28;9894:18;;;9887:56;9960:18;;48833:66:0::1;9634:350:1::0;48833:66:0::1;48914:7;:16:::0;48761:181::o;49154:141::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;49247:17:::1;:36:::0;;-1:-1:-1;;;;;;49247:36:0::1;-1:-1:-1::0;;;;;49247:36:0;;;::::1;::::0;;;::::1;::::0;;49154:141::o;33860:210::-;-1:-1:-1;;;;;33954:20:0;;33926:7;33954:20;;;:11;:20;;;;;;;;33950:49;;;-1:-1:-1;;;;;;33983:16:0;;;;;:7;:16;;;;;;;33860:210::o;33950:49::-;-1:-1:-1;;;;;34041:16:0;;;;;;:7;:16;;;;;;34021:37;;:19;:37::i;12730:94::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;12795:21:::1;12813:1;12795:9;:21::i;:::-;12730:94::o:0;33535:95::-;33574:13;33611:7;33604:14;;;;;:::i;35204:281::-;35297:4;35318:129;10947:10;35341:7;35350:96;35389:15;35350:96;;;;;;;;;;;;;;;;;10947:10;35350:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35350:34:0;;;;;;;;;;;;:38;:96::i;34082:179::-;34160:4;34181:42;10947:10;34205:9;34216:6;34181:9;:42::i;35627:145::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35722:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;35722:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35627:145::o;42338:106::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;42411:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;42411:21:0::1;-1:-1:-1::0;;;;42411:21:0;;::::1;::::0;;;::::1;::::0;;42338:106::o;37073:475::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;37169:42:::1;-1:-1:-1::0;;;;;37158:53:0;::::1;;;37150:100;;;::::0;-1:-1:-1;;;37150:100:0;;10191:2:1;37150:100:0::1;::::0;::::1;10173:21:1::0;10230:2;10210:18;;;10203:30;10269:34;10249:18;;;10242:62;-1:-1:-1;;;10320:18:1;;;10313:32;10362:19;;37150:100:0::1;9989:398:1::0;37150:100:0::1;-1:-1:-1::0;;;;;37274:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37273:21;37265:61;;;::::0;-1:-1:-1;;;37265:61:0;;6708:2:1;37265:61:0::1;::::0;::::1;6690:21:1::0;6747:2;6727:18;;;6720:30;6786:29;6766:18;;;6759:57;6833:18;;37265:61:0::1;6506:351:1::0;37265:61:0::1;-1:-1:-1::0;;;;;37344:16:0;::::1;37363:1;37344:16:::0;;;:7:::1;:16;::::0;;;;;:20;37341:116:::1;;-1:-1:-1::0;;;;;37424:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;37404:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;37385:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;37341:116:::1;-1:-1:-1::0;;;;;37471:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;37471:27:0::1;37494:4;37471:27:::0;;::::1;::::0;;;37513:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37513:23:0::1;::::0;;::::1;::::0;;37073:475::o;12979:192::-;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13068:22:0;::::1;13060:73;;;::::0;-1:-1:-1;;;13060:73:0;;5542:2:1;13060:73:0::1;::::0;::::1;5524:21:1::0;5581:2;5561:18;;;5554:30;5620:34;5600:18;;;5593:62;-1:-1:-1;;;5671:18:1;;;5664:36;5717:19;;13060:73:0::1;5340:402:1::0;13060:73:0::1;13144:19;13154:8;13144:9;:19::i;42158:168::-:0;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;42245:21:::1;42281:33;42245:21:::0;42281:13:::1;:33::i;37560:522::-:0;12125:7;12152:6;-1:-1:-1;;;;;12152:6:0;10947:10;12299:23;12291:68;;;;-1:-1:-1;;;12291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37645:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37637:60;;;::::0;-1:-1:-1;;;37637:60:0;;6708:2:1;37637:60:0::1;::::0;::::1;6690:21:1::0;6747:2;6727:18;;;6720:30;6786:29;6766:18;;;6759:57;6833:18;;37637:60:0::1;6506:351:1::0;37637:60:0::1;37717:9;37712:359;37736:9;:16:::0;37732:20;::::1;37712:359;;;37798:7;-1:-1:-1::0;;;;;37782:23:0::1;:9;37792:1;37782:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37782:12:0::1;:23;37778:278;;;37845:9;37855:16:::0;;:20:::1;::::0;37874:1:::1;::::0;37855:20:::1;:::i;:::-;37845:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;37830:9:::1;:12:::0;;-1:-1:-1;;;;;37845:31:0;;::::1;::::0;37840:1;;37830:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;37830:46:0::1;-1:-1:-1::0;;;;;37830:46:0;;::::1;;::::0;;37899:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;37942:11:::1;:20:::0;;;;:28;;-1:-1:-1;;37942:28:0::1;::::0;;37993:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37993:15:0;;;;;-1:-1:-1;;;;;;37993:15:0::1;::::0;;;;;37712:359:::1;37560:522:::0;:::o;37778:278::-:1;37754:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37712:359;;;;37560:522:::0;:::o;38626:357::-;-1:-1:-1;;;;;38723:19:0;;38715:68;;;;-1:-1:-1;;;38715:68:0;;9431:2:1;38715:68:0;;;9413:21:1;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;-1:-1:-1;;;9560:18:1;;;9553:34;9604:19;;38715:68:0;9229:400:1;38715:68:0;-1:-1:-1;;;;;38806:21:0;;38798:68;;;;-1:-1:-1;;;38798:68:0;;5949:2:1;38798:68:0;;;5931:21:1;5988:2;5968:18;;;5961:30;6027:34;6007:18;;;6000:62;-1:-1:-1;;;6078:18:1;;;6071:32;6120:19;;38798:68:0;5747:398:1;38798:68:0;-1:-1:-1;;;;;38883:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38939:32;;10951:25:1;;;38939:32:0;;10924:18:1;38939:32:0;;;;;;;38626:357;;;:::o;38995:1964::-;-1:-1:-1;;;;;39096:20:0;;39088:70;;;;-1:-1:-1;;;39088:70:0;;9025:2:1;39088:70:0;;;9007:21:1;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:35;9199:19;;39088:70:0;8823:401:1;39088:70:0;-1:-1:-1;;;;;39181:23:0;;39173:71;;;;-1:-1:-1;;;39173:71:0;;4727:2:1;39173:71:0;;;4709:21:1;4766:2;4746:18;;;4739:30;4805:34;4785:18;;;4778:62;-1:-1:-1;;;4856:18:1;;;4849:33;4899:19;;39173:71:0;4525:399:1;39173:71:0;39276:1;39267:6;:10;39259:64;;;;-1:-1:-1;;;39259:64:0;;8615:2:1;39259:64:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:34;8673:18;;;8666:62;-1:-1:-1;;;8744:18:1;;;8737:39;8793:19;;39259:64:0;8413:405:1;39259:64:0;12125:7;12152:6;-1:-1:-1;;;;;39343:17:0;;;12152:6;;39343:17;;;;:41;;-1:-1:-1;12125:7:0;12152:6;-1:-1:-1;;;;;39364:20:0;;;12152:6;;39364:20;;39343:41;39340:138;;;39421:12;;39411:6;:22;;39403:75;;;;-1:-1:-1;;;39403:75:0;;7845:2:1;39403:75:0;;;7827:21:1;7884:2;7864:18;;;7857:30;7923:34;7903:18;;;7896:62;-1:-1:-1;;;7974:18:1;;;7967:38;8022:19;;39403:75:0;7643:404:1;39403:75:0;39761:28;39792:24;39810:4;39792:9;:24::i;:::-;39761:55;;39860:12;;39836:20;:36;39833:124;;-1:-1:-1;39929:12:0;;39833:124;40024:29;;40073:6;;40000:53;;;;;-1:-1:-1;;;40073:6:0;;;;40072:7;:22;;;;-1:-1:-1;40083:11:0;;-1:-1:-1;;;40083:11:0;;;;40072:22;:45;;;;;40098:19;40072:45;:72;;;;;40131:13;-1:-1:-1;;;;;40121:23:0;:6;-1:-1:-1;;;;;40121:23:0;;;40072:72;40068:436;;;40255:38;40272:20;40255:16;:38::i;:::-;40343:21;40386:22;;40383:106;;40433:36;40447:21;40433:13;:36::i;:::-;40146:358;40068:436;-1:-1:-1;;;;;40712:26:0;;40585:12;40712:26;;;:18;:26;;;;;;40600:4;;40712:26;;;:59;;-1:-1:-1;;;;;;40742:29:0;;;;;;:18;:29;;;;;;;;40712:59;40709:113;;;-1:-1:-1;40801:5:0;40709:113;40900:47;40915:6;40922:9;40932:6;40939:7;40900:14;:47::i;:::-;39073:1886;;;38995:1964;;;:::o;5519:240::-;5639:7;5700:12;5692:6;;;;5684:29;;;;-1:-1:-1;;;5684:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;5735:5:0;;;5519:240::o;47617:175::-;47658:7;47683:15;47700;47719:19;:17;:19::i;:::-;47682:56;;-1:-1:-1;47682:56:0;-1:-1:-1;47760:20:0;47682:56;;47760:11;:20::i;:::-;47753:27;;;;47617:175;:::o;4377:98::-;4435:7;4462:5;4466:1;4462;:5;:::i;3240:98::-;3298:7;3325:5;3329:1;3325;:5;:::i;46375:481::-;46434:7;46443;46452;46461;46470;46479;46504:23;46529:12;46543:13;46560:39;46572:7;46581;;46590:8;;46560:11;:39::i;:::-;46503:96;;;;;;46614:19;46637:10;:8;:10::i;:::-;46614:33;;46663:15;46680:23;46705:12;46721:39;46733:7;46742:4;46748:11;46721;:39::i;:::-;46662:98;;-1:-1:-1;46662:98:0;-1:-1:-1;46662:98:0;-1:-1:-1;46815:15:0;;-1:-1:-1;46832:4:0;;-1:-1:-1;46838:5:0;;-1:-1:-1;;;;;46375:481:0;;;;;;;:::o;3621:98::-;3679:7;3706:5;3710:1;3706;:5;:::i;40971:656::-;32392:6;:13;;-1:-1:-1;;;;32392:13:0;-1:-1:-1;;;32392:13:0;;;41140:16:::1;::::0;;41154:1:::1;41140:16:::0;;;;;::::1;::::0;;-1:-1:-1;;41140:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;41140:16:0::1;41116:40;;41189:4;41171;41176:1;41171:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;41171:23:0::1;;;-1:-1:-1::0;;;;;41171:23:0::1;;;::::0;::::1;41219:15;-1:-1:-1::0;;;;;41219:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41209:4;41214:1;41209:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;41209:32:0::1;;;-1:-1:-1::0;;;;;41209:32:0::1;;;::::0;::::1;41258:62;41275:4;41290:15;41308:11;41258:8;:62::i;:::-;41367:248;::::0;-1:-1:-1;;;41367:248:0;;-1:-1:-1;;;;;41367:15:0::1;:66;::::0;::::1;::::0;:248:::1;::::0;41452:11;;41482:1:::1;::::0;41530:4;;41561::::1;::::0;41585:15:::1;::::0;41367:248:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;32436:6:0;:14;;-1:-1:-1;;;;32436:14:0;;;-1:-1:-1;;;;40971:656:0:o;13179:173::-;13235:16;13254:6;;-1:-1:-1;;;;;13271:17:0;;;-1:-1:-1;;;;;;13271:17:0;;;;;;13304:40;;13254:6;;;;;;;13304:40;;13235:16;13304:40;13224:128;13179:173;:::o;41639:177::-;41701:17;;-1:-1:-1;;;;;41701:17:0;:41;41728:13;:6;41739:1;41728:10;:13::i;:::-;41701:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41757:23:0;;-1:-1:-1;;;;;41757:23:0;:47;41790:13;:6;41801:1;41790:10;:13::i;:::-;41757:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42456:883;42572:7;42568:44;;42598:14;:12;:14::i;:::-;-1:-1:-1;;;;;42633:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42657:22:0;;;;;;:11;:22;;;;;;;;42656:23;42633:46;42629:637;;;42700:48;42722:6;42730:9;42741:6;42700:21;:48::i;:::-;42629:637;;;-1:-1:-1;;;;;42775:19:0;;;;;;:11;:19;;;;;;;;42774:20;:46;;;;-1:-1:-1;;;;;;42798:22:0;;;;;;:11;:22;;;;;;;;42774:46;42770:496;;;42841:46;42861:6;42869:9;42880:6;42841:19;:46::i;42770:496::-;-1:-1:-1;;;;;42914:19:0;;;;;;:11;:19;;;;;;;;42913:20;:47;;;;-1:-1:-1;;;;;;42938:22:0;;;;;;:11;:22;;;;;;;;42937:23;42913:47;42909:357;;;42981:44;42999:6;43007:9;43018:6;42981:17;:44::i;42909:357::-;-1:-1:-1;;;;;43051:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;43074:22:0;;;;;;:11;:22;;;;;;;;43051:45;43047:219;;;43117:48;43139:6;43147:9;43158:6;43117:21;:48::i;43047:219::-;43206:44;43224:6;43232:9;43243:6;43206:17;:44::i;:::-;43286:7;43282:45;;43312:15;38402;;38392:7;:25;38443:16;;38432:8;:27;38344:127;43312:15;42456:883;;;;:::o;47804:595::-;47905:7;;47945;;47854;;;;;47967:305;47991:9;:16;47987:20;;47967:305;;;48061:7;48037;:21;48045:9;48055:1;48045:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;48045:12:0;48037:21;;;;;;;;;;;;;:31;;:66;;;48096:7;48072;:21;48080:9;48090:1;48080:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;48080:12:0;48072:21;;;;;;;;;;;;;:31;48037:66;48033:97;;;48113:7;;48122;;48105:25;;;;;;;47804:595;;:::o;48033:97::-;48159:34;48171:7;:21;48179:9;48189:1;48179:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;48179:12:0;48171:21;;;;;;;;;;;;;48159:7;;:11;:34::i;:::-;48149:44;;48222:34;48234:7;:21;48242:9;48252:1;48242:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;48242:12:0;48234:21;;;;;;;;;;;;;48222:7;;:11;:34::i;:::-;48212:44;-1:-1:-1;48009:3:0;;;;:::i;:::-;;;;47967:305;;;-1:-1:-1;48312:7:0;;48300;;:20;;:11;:20::i;:::-;48290:7;:30;48286:61;;;48330:7;;48339;;48322:25;;;;;;47804:595;;:::o;48286:61::-;48370:7;;48379;;-1:-1:-1;47804:595:0;-1:-1:-1;47804:595:0:o;46868:371::-;46961:7;;;;47018:28;47042:3;47018:19;:7;47030:6;47018:11;:19::i;:::-;:23;;:28::i;:::-;47003:43;-1:-1:-1;47061:13:0;47077:29;47102:3;47077:20;:7;47089;47077:11;:20::i;:29::-;47061:45;-1:-1:-1;47121:23:0;47147:28;47061:45;47147:17;:7;47159:4;47147:11;:17::i;:::-;:21;;:28::i;:::-;47121:54;47215:4;;-1:-1:-1;47221:5:0;;-1:-1:-1;46868:371:0;;-1:-1:-1;;;;;46868:371:0:o;47251:354::-;47346:7;;;;47406:24;:7;47418:11;47406;:24::i;:::-;47388:42;-1:-1:-1;47445:12:0;47460:21;:4;47469:11;47460:8;:21::i;:::-;47445:36;-1:-1:-1;47496:23:0;47522:17;:7;47445:36;47522:11;:17::i;:::-;47562:7;;;;-1:-1:-1;47588:4:0;;-1:-1:-1;47251:354:0;;-1:-1:-1;;;;;47251:354:0:o;38094:238::-;38144:7;;:12;:29;;;;-1:-1:-1;38160:8:0;;:13;38144:29;38141:41;;;38094:238::o;38141:41::-;38216:7;;;38198:15;:25;38257:8;;;38238:16;:27;-1:-1:-1;38282:11:0;;;;38308:12;38094:238::o;44482:580::-;44589:15;44606:23;44631:12;44645:23;44670:12;44684:13;44701:19;44712:7;44701:10;:19::i;:::-;-1:-1:-1;;;;;44753:15:0;;;;;;:7;:15;;;;;;44588:132;;-1:-1:-1;44588:132:0;;-1:-1:-1;44588:132:0;;-1:-1:-1;44588:132:0;-1:-1:-1;44588:132:0;-1:-1:-1;44588:132:0;-1:-1:-1;44753:28:0;;44773:7;44753:19;:28::i;:::-;-1:-1:-1;;;;;44735:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44814:7;:15;;;;:28;;44834:7;44814:19;:28::i;:::-;-1:-1:-1;;;;;44796:15:0;;;;;;;:7;:15;;;;;;:46;;;;44878:18;;;;;;;:39;;44901:15;44878:22;:39::i;:::-;-1:-1:-1;;;;;44857:18:0;;;;;;:7;:18;;;;;:60;44932:16;44942:5;44932:9;:16::i;:::-;44963:23;44975:4;44981;44963:11;:23::i;:::-;45023:9;-1:-1:-1;;;;;45006:44:0;45015:6;-1:-1:-1;;;;;45006:44:0;;45034:15;45006:44;;;;10951:25:1;;10939:2;10924:18;;10805:177;45006:44:0;;;;;;;;44573:489;;;;;;44482:580;;;:::o;43878:592::-;43983:15;44000:23;44025:12;44039:23;44064:12;44078:13;44095:19;44106:7;44095:10;:19::i;:::-;-1:-1:-1;;;;;44147:15:0;;;;;;:7;:15;;;;;;43982:132;;-1:-1:-1;43982:132:0;;-1:-1:-1;43982:132:0;;-1:-1:-1;43982:132:0;-1:-1:-1;43982:132:0;-1:-1:-1;43982:132:0;-1:-1:-1;44147:28:0;;43982:132;44147:19;:28::i;:::-;-1:-1:-1;;;;;44129:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44211:18;;;;;:7;:18;;;;;:39;;44234:15;44211:22;:39::i;:::-;-1:-1:-1;;;;;44190:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44286:7;:18;;;;:39;;44309:15;44286:22;:39::i;43351:515::-;43454:15;43471:23;43496:12;43510:23;43535:12;43549:13;43566:19;43577:7;43566:10;:19::i;:::-;-1:-1:-1;;;;;43618:15:0;;;;;;:7;:15;;;;;;43453:132;;-1:-1:-1;43453:132:0;;-1:-1:-1;43453:132:0;;-1:-1:-1;43453:132:0;-1:-1:-1;43453:132:0;-1:-1:-1;43453:132:0;-1:-1:-1;43618:28:0;;43453:132;43618:19;:28::i;45074:655::-;45181:15;45198:23;45223:12;45237:23;45262:12;45276:13;45293:19;45304:7;45293:10;:19::i;:::-;-1:-1:-1;;;;;45345:15:0;;;;;;:7;:15;;;;;;45180:132;;-1:-1:-1;45180:132:0;;-1:-1:-1;45180:132:0;;-1:-1:-1;45180:132:0;-1:-1:-1;45180:132:0;-1:-1:-1;45180:132:0;-1:-1:-1;45345:28:0;;45365:7;45345:19;:28::i;:::-;-1:-1:-1;;;;;45327:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45406:7;:15;;;;:28;;45426:7;45406:19;:28::i;3978:98::-;4036:7;4063:5;4067:1;4063;:5;:::i;45741:349::-;45798:19;45821:10;:8;:10::i;:::-;45798:33;-1:-1:-1;45846:13:0;45862:22;:5;45798:33;45862:9;:22::i;:::-;45940:4;45924:22;;;;:7;:22;;;;;;45846:38;;-1:-1:-1;45924:33:0;;45846:38;45924:26;:33::i;:::-;45915:4;45899:22;;;;:7;:22;;;;;;;;:58;;;;45975:11;:26;;;;;;45972:106;;;46061:4;46045:22;;;;:7;:22;;;;;;:33;;46072:5;46045:26;:33::i;:::-;46036:4;46020:22;;;;:7;:22;;;;;:58;45972:106;45783:307;;45741:349;:::o;46102:159::-;46184:7;;:17;;46196:4;46184:11;:17::i;:::-;46174:7;:27;46229:10;;:20;;46244:4;46229:14;:20::i;:::-;46216:10;:33;-1:-1:-1;;46102:159:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;947:388::-;1015:6;1023;1076:2;1064:9;1055:7;1051:23;1047:32;1044:52;;;1092:1;1089;1082:12;1044:52;1131:9;1118:23;1150:31;1175:5;1150:31;:::i;:::-;1200:5;-1:-1:-1;1257:2:1;1242:18;;1229:32;1270:33;1229:32;1270:33;:::i;:::-;1322:7;1312:17;;;947:388;;;;;:::o;1340:456::-;1417:6;1425;1433;1486:2;1474:9;1465:7;1461:23;1457:32;1454:52;;;1502:1;1499;1492:12;1454:52;1541:9;1528:23;1560:31;1585:5;1560:31;:::i;:::-;1610:5;-1:-1:-1;1667:2:1;1652:18;;1639:32;1680:33;1639:32;1680:33;:::i;:::-;1340:456;;1732:7;;-1:-1:-1;;;1786:2:1;1771:18;;;;1758:32;;1340:456::o;1801:315::-;1866:6;1874;1927:2;1915:9;1906:7;1902:23;1898:32;1895:52;;;1943:1;1940;1933:12;1895:52;1982:9;1969:23;2001:31;2026:5;2001:31;:::i;:::-;2051:5;-1:-1:-1;2075:35:1;2106:2;2091:18;;2075:35;:::i;:::-;2065:45;;1801:315;;;;;:::o;2121:::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2305:9;2292:23;2324:31;2349:5;2324:31;:::i;:::-;2374:5;2426:2;2411:18;;;;2398:32;;-1:-1:-1;;;2121:315:1:o;2441:180::-;2497:6;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;2589:26;2605:9;2589:26;:::i;2626:180::-;2685:6;2738:2;2726:9;2717:7;2713:23;2709:32;2706:52;;;2754:1;2751;2744:12;2706:52;-1:-1:-1;2777:23:1;;2626:180;-1:-1:-1;2626:180:1:o;2811:248::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2989:9;2976:23;2966:33;;3018:35;3049:2;3038:9;3034:18;3018:35;:::i;3923:597::-;4035:4;4064:2;4093;4082:9;4075:21;4125:6;4119:13;4168:6;4163:2;4152:9;4148:18;4141:34;4193:1;4203:140;4217:6;4214:1;4211:13;4203:140;;;4312:14;;;4308:23;;4302:30;4278:17;;;4297:2;4274:26;4267:66;4232:10;;4203:140;;;4361:6;4358:1;4355:13;4352:91;;;4431:1;4426:2;4417:6;4406:9;4402:22;4398:31;4391:42;4352:91;-1:-1:-1;4504:2:1;4483:15;-1:-1:-1;;4479:29:1;4464:45;;;;4511:2;4460:54;;3923:597;-1:-1:-1;;;3923:597:1:o;8052:356::-;8254:2;8236:21;;;8273:18;;;8266:30;8332:34;8327:2;8312:18;;8305:62;8399:2;8384:18;;8052:356::o;10987:980::-;11249:4;11297:3;11286:9;11282:19;11328:6;11317:9;11310:25;11354:2;11392:6;11387:2;11376:9;11372:18;11365:34;11435:3;11430:2;11419:9;11415:18;11408:31;11459:6;11494;11488:13;11525:6;11517;11510:22;11563:3;11552:9;11548:19;11541:26;;11602:2;11594:6;11590:15;11576:29;;11623:1;11633:195;11647:6;11644:1;11641:13;11633:195;;;11712:13;;-1:-1:-1;;;;;11708:39:1;11696:52;;11803:15;;;;11768:12;;;;11744:1;11662:9;11633:195;;;-1:-1:-1;;;;;;;11884:32:1;;;;11879:2;11864:18;;11857:60;-1:-1:-1;;;11948:3:1;11933:19;11926:35;11845:3;10987:980;-1:-1:-1;;;10987:980:1:o;12161:128::-;12201:3;12232:1;12228:6;12225:1;12222:13;12219:39;;;12238:18;;:::i;:::-;-1:-1:-1;12274:9:1;;12161:128::o;12294:217::-;12334:1;12360;12350:132;;12404:10;12399:3;12395:20;12392:1;12385:31;12439:4;12436:1;12429:15;12467:4;12464:1;12457:15;12350:132;-1:-1:-1;12496:9:1;;12294:217::o;12516:168::-;12556:7;12622:1;12618;12614:6;12610:14;12607:1;12604:21;12599:1;12592:9;12585:17;12581:45;12578:71;;;12629:18;;:::i;:::-;-1:-1:-1;12669:9:1;;12516:168::o;12689:125::-;12729:4;12757:1;12754;12751:8;12748:34;;;12762:18;;:::i;:::-;-1:-1:-1;12799:9:1;;12689:125::o;12819:380::-;12898:1;12894:12;;;;12941;;;12962:61;;13016:4;13008:6;13004:17;12994:27;;12962:61;13069:2;13061:6;13058:14;13038:18;13035:38;13032:161;;;13115:10;13110:3;13106:20;13103:1;13096:31;13150:4;13147:1;13140:15;13178:4;13175:1;13168:15;13032:161;;12819:380;;;:::o;13204:135::-;13243:3;-1:-1:-1;;13264:17:1;;13261:43;;;13284:18;;:::i;:::-;-1:-1:-1;13331:1:1;13320:13;;13204:135::o;13344:127::-;13405:10;13400:3;13396:20;13393:1;13386:31;13436:4;13433:1;13426:15;13460:4;13457:1;13450:15;13476:127;13537:10;13532:3;13528:20;13525:1;13518:31;13568:4;13565:1;13558:15;13592:4;13589:1;13582:15;13608:127;13669:10;13664:3;13660:20;13657:1;13650:31;13700:4;13697:1;13690:15;13724:4;13721:1;13714:15;13872:131;-1:-1:-1;;;;;13947:31:1;;13937:42;;13927:70;;13993:1;13990;13983:12
Swarm Source
ipfs://7a561cfac8e423c34b05f0e732a7f904d234c802f581bb840d598bf9f2333afb
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,146.33 | 0.000000000000000001 | <$0.000001 |
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.