ETH Price: $3,152.28 (+0.27%)
Gas: 2 Gwei

Token

$Hound on Ethereum (HOUND)
 

Overview

Max Total Supply

1,000,000,000 HOUND

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
circumcised.eth
Balance
19,301,880.668803758389473634 HOUND

Value
$0.00
0xa161af0e1ab3dbda1f8085b489350fb0df64a51e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x084f152D...aD1696Cad
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
DefiV3Token

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 1337 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 8 : DefiV3Token.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.17;

import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { LibCommon } from "./lib/LibCommon.sol";
import { ReflectiveERC20 } from "./ReflectiveERC20.sol";

/// @title A Defi Token implementation with extended functionalities
/// @notice Implements ERC20 standards with additional features like tax and deflation
contract DefiV3Token is ReflectiveERC20, Ownable {
  // Constants
  uint256 private constant MAX_BPS_AMOUNT = 10_000;
  uint256 private constant MAX_ALLOWED_BPS = 2_000;
  string public constant VERSION = "defi_v_3";

  // State Variables
  string public initialDocumentUri;
  string public documentUri;
  uint256 public immutable initialSupply;
  uint256 public immutable initialMaxTokenAmountPerAddress;
  uint256 public maxTokenAmountPerAddress;
  uint256 public maxTotalSupply;

  /// @notice Configuration properties for the ERC20 token
  struct ERC20ConfigProps {
    bool _isMintable;
    bool _isBurnable;
    bool _isDocumentAllowed;
    bool _isMaxAmountOfTokensSet;
    bool _isMaxSupplySet;
    bool _isTaxable;
    bool _isDeflationary;
    bool _isReflective;
  }
  ERC20ConfigProps private configProps;

  address public immutable initialTokenOwner;
  uint8 private immutable _decimals;
  address public taxAddress;
  uint256 public taxBPS;
  uint256 public deflationBPS;

  // Events
  event DocumentUriSet(string newDocUri);
  event MaxTokenAmountPerSet(uint256 newMaxTokenAmount);
  event TaxConfigSet(address indexed _taxAddress, uint256 indexed _taxBPS);
  event DeflationConfigSet(uint256 indexed _deflationBPS);
  event ReflectionConfigSet(uint256 indexed _feeBPS);

  // Custom Errors
  error InvalidMaxTokenAmount(uint256 maxTokenAmount);
  error InvalidDecimals(uint8 decimals);
  error MaxTokenAmountPerAddrLtPrevious();
  error DestBalanceExceedsMaxAllowed(address addr);
  error DocumentUriNotAllowed();
  error MaxTokenAmountNotAllowed();
  error TokenIsNotTaxable();
  error TokenIsNotDeflationary();
  error InvalidTotalBPS(uint256 bps);
  error InvalidReflectiveConfig();
  error InvalidMaxSupplyConfig();
  error TotalSupplyExceedsMaxAllowedAmount();

  /// @notice Constructor to initialize the DeFi token
  /// @param name_ Name of the token
  /// @param symbol_ Symbol of the token
  /// @param initialSupplyToSet Initial supply of tokens
  /// @param decimalsToSet Number of decimals for the token
  /// @param tokenOwner Address of the initial token owner
  /// @param customConfigProps Configuration properties for the token
  /// @param newDocumentUri URI for the document associated with the token
  /// @param _taxAddress Address where tax will be sent
  /// @param bpsParams array of BPS values in this order:
  ///           taxBPS = bpsParams[0],
  ///           deflationBPS = bpsParams[1],
  ///           rewardFeeBPS = bpsParams[2],
  /// @param amountParams array of amounts for amount specific config:
  ///           maxTokenAmount = amountParams[0], Maximum token amount per address
  ///           maxSupplyAmount = amountParams[1], Maximum token token supply amount

  constructor(
    string memory name_,
    string memory symbol_,
    uint256 initialSupplyToSet,
    uint8 decimalsToSet,
    address tokenOwner,
    ERC20ConfigProps memory customConfigProps,
    string memory newDocumentUri,
    address _taxAddress,
    uint256[3] memory bpsParams,
    uint256[2] memory amountParams
  )
    ReflectiveERC20(
      name_,
      symbol_,
      tokenOwner,
      initialSupplyToSet,
      decimalsToSet,
      initialSupplyToSet != 0 ? bpsParams[2] : 0,
      customConfigProps._isReflective
    )
  {
    // reflection feature can't be used in combination with burning/minting/deflation
    // or reflection config is invalid if no reflection BPS amount is provided
    if (
      (customConfigProps._isReflective &&
        (customConfigProps._isBurnable ||
          customConfigProps._isMintable ||
          customConfigProps._isDeflationary)) ||
      (!customConfigProps._isReflective && bpsParams[2] != 0)
    ) {
      revert InvalidReflectiveConfig();
    }

    if (customConfigProps._isMaxAmountOfTokensSet) {
      if (amountParams[0] == 0) {
        revert InvalidMaxTokenAmount(amountParams[0]);
      }
    }
    if (decimalsToSet > 18) {
      revert InvalidDecimals(decimalsToSet);
    }

    if (
      customConfigProps._isMaxSupplySet &&
      (!customConfigProps._isMintable || (totalSupply() > amountParams[1]))
    ) {
      revert InvalidMaxSupplyConfig();
    }

    bpsInitChecks(customConfigProps, bpsParams, _taxAddress);

    LibCommon.validateAddress(tokenOwner);

    taxAddress = _taxAddress;

    taxBPS = bpsParams[0];
    deflationBPS = bpsParams[1];
    initialSupply = initialSupplyToSet;
    initialMaxTokenAmountPerAddress = amountParams[0];
    initialDocumentUri = newDocumentUri;
    initialTokenOwner = tokenOwner;
    _decimals = decimalsToSet;
    configProps = customConfigProps;
    documentUri = newDocumentUri;
    maxTokenAmountPerAddress = amountParams[0];
    maxTotalSupply = amountParams[1];

    if (tokenOwner != msg.sender) {
      transferOwnership(tokenOwner);
    }
  }

  function bpsInitChecks(
    ERC20ConfigProps memory customConfigProps,
    uint256[3] memory bpsParams,
    address _taxAddress
  ) private pure {
    uint256 totalBPS = 0;
    if (customConfigProps._isTaxable) {
      LibCommon.validateAddress(_taxAddress);

      totalBPS += bpsParams[0];
    }
    if (customConfigProps._isDeflationary) {
      totalBPS += bpsParams[1];
    }
    if (customConfigProps._isReflective) {
      totalBPS += bpsParams[2];
    }
    if (totalBPS > MAX_ALLOWED_BPS) {
      revert InvalidTotalBPS(totalBPS);
    }
  }

  // Public and External Functions

  /// @notice Checks if the token is mintable
  /// @return True if the token can be minted
  function isMintable() public view returns (bool) {
    return configProps._isMintable;
  }

  /// @notice Checks if the token is burnable
  /// @return True if the token can be burned
  function isBurnable() public view returns (bool) {
    return configProps._isBurnable;
  }

  /// @notice Checks if the maximum amount of tokens per address is set
  /// @return True if there is a maximum limit for token amount per address
  function isMaxAmountOfTokensSet() public view returns (bool) {
    return configProps._isMaxAmountOfTokensSet;
  }

  /// @notice Checks if the maximum amount of token supply is set
  /// @return True if there is a maximum limit for token supply
  function isMaxSupplySet() public view returns (bool) {
    return configProps._isMaxSupplySet;
  }

  /// @notice Checks if setting a document URI is allowed
  /// @return True if setting a document URI is allowed
  function isDocumentUriAllowed() public view returns (bool) {
    return configProps._isDocumentAllowed;
  }

  /// @notice Returns the number of decimals used for the token
  /// @return The number of decimals
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /// @notice Checks if the token is taxable
  /// @return True if the token has tax applied on transfers
  function isTaxable() public view returns (bool) {
    return configProps._isTaxable;
  }

  /// @notice Checks if the token is deflationary
  /// @return True if the token has deflation applied on transfers
  function isDeflationary() public view returns (bool) {
    return configProps._isDeflationary;
  }

  /// @notice Checks if the token is reflective
  /// @return True if the token has reflection (ie. holder rewards) applied on transfers
  function isReflective() public view returns (bool) {
    return configProps._isReflective;
  }

  /// @notice Sets a new document URI
  /// @dev Can only be called by the contract owner
  /// @param newDocumentUri The new URI to be set
  function setDocumentUri(string memory newDocumentUri) external onlyOwner {
    if (!isDocumentUriAllowed()) {
      revert DocumentUriNotAllowed();
    }
    documentUri = newDocumentUri;
    emit DocumentUriSet(newDocumentUri);
  }

  /// @notice Sets a new maximum token amount per address
  /// @dev Can only be called by the contract owner
  /// @param newMaxTokenAmount The new maximum token amount per address
  function setMaxTokenAmountPerAddress(
    uint256 newMaxTokenAmount
  ) external onlyOwner {
    if (!isMaxAmountOfTokensSet()) {
      revert MaxTokenAmountNotAllowed();
    }
    if (newMaxTokenAmount <= maxTokenAmountPerAddress) {
      revert MaxTokenAmountPerAddrLtPrevious();
    }

    maxTokenAmountPerAddress = newMaxTokenAmount;
    emit MaxTokenAmountPerSet(newMaxTokenAmount);
  }

  /// @notice Sets a new reflection fee
  /// @dev Can only be called by the contract owner
  /// @param _feeBPS The reflection fee in basis points
  function setReflectionConfig(uint256 _feeBPS) external onlyOwner {
    if (!isReflective()) {
      revert TokenIsNotReflective();
    }
    super._setReflectionFee(_feeBPS);

    emit ReflectionConfigSet(_feeBPS);
  }

  /// @notice Sets a new tax configuration
  /// @dev Can only be called by the contract owner
  /// @param _taxAddress The address where tax will be sent
  /// @param _taxBPS The tax rate in basis points
  function setTaxConfig(
    address _taxAddress,
    uint256 _taxBPS
  ) external onlyOwner {
    if (!isTaxable()) {
      revert TokenIsNotTaxable();
    }

    uint256 totalBPS = deflationBPS + tFeeBPS + _taxBPS;
    if (totalBPS > MAX_ALLOWED_BPS) {
      revert InvalidTotalBPS(totalBPS);
    }
    LibCommon.validateAddress(_taxAddress);
    taxAddress = _taxAddress;
    taxBPS = _taxBPS;
    emit TaxConfigSet(_taxAddress, _taxBPS);
  }

  /// @notice Sets a new deflation configuration
  /// @dev Can only be called by the contract owner
  /// @param _deflationBPS The deflation rate in basis points
  function setDeflationConfig(uint256 _deflationBPS) external onlyOwner {
    if (!isDeflationary()) {
      revert TokenIsNotDeflationary();
    }
    uint256 totalBPS = deflationBPS + tFeeBPS + _deflationBPS;
    if (totalBPS > MAX_ALLOWED_BPS) {
      revert InvalidTotalBPS(totalBPS);
    }
    deflationBPS = _deflationBPS;
    emit DeflationConfigSet(_deflationBPS);
  }

  /// @notice Transfers tokens to a specified address
  /// @dev Overrides the ERC20 transfer function with added tax and deflation logic
  /// @param to The address to transfer tokens to
  /// @param amount The amount of tokens to be transferred
  /// @return True if the transfer was successful
  function transfer(
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    uint256 taxAmount = _taxAmount(msg.sender, amount);
    uint256 deflationAmount = _deflationAmount(amount);
    uint256 amountToTransfer = amount - taxAmount - deflationAmount;

    if (isMaxAmountOfTokensSet()) {
      if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) {
        revert DestBalanceExceedsMaxAllowed(to);
      }
    }

    if (taxAmount != 0) {
      _transferNonReflectedTax(msg.sender, taxAddress, taxAmount);
    }
    if (deflationAmount != 0) {
      _burn(msg.sender, deflationAmount);
    }
    return super.transfer(to, amountToTransfer);
  }

  /// @notice Transfers tokens from one address to another
  /// @dev Overrides the ERC20 transferFrom function with added tax and deflation logic
  /// @param from The address which you want to send tokens from
  /// @param to The address which you want to transfer to
  /// @param amount The amount of tokens to be transferred
  /// @return True if the transfer was successful
  function transferFrom(
    address from,
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    uint256 taxAmount = _taxAmount(from, amount);
    uint256 deflationAmount = _deflationAmount(amount);
    uint256 amountToTransfer = amount - taxAmount - deflationAmount;

    if (isMaxAmountOfTokensSet()) {
      if (balanceOf(to) + amountToTransfer > maxTokenAmountPerAddress) {
        revert DestBalanceExceedsMaxAllowed(to);
      }
    }

    if (taxAmount != 0) {
      _transferNonReflectedTax(from, taxAddress, taxAmount);
    }
    if (deflationAmount != 0) {
      _burn(from, deflationAmount);
    }

    return super.transferFrom(from, to, amountToTransfer);
  }

  /// @notice Mints new tokens to a specified address
  /// @dev Can only be called by the contract owner and if minting is enabled
  /// @param to The address to mint tokens to
  /// @param amount The amount of tokens to mint
  function mint(address to, uint256 amount) external onlyOwner {
    if (!isMintable()) {
      revert MintingNotEnabled();
    }
    if (isMaxAmountOfTokensSet()) {
      if (balanceOf(to) + amount > maxTokenAmountPerAddress) {
        revert DestBalanceExceedsMaxAllowed(to);
      }
    }
    if (isMaxSupplySet()) {
      if (totalSupply() + amount > maxTotalSupply) {
        revert TotalSupplyExceedsMaxAllowedAmount();
      }
    }

    super._mint(to, amount);
  }

  /// @notice Burns a specific amount of tokens
  /// @dev Can only be called by the contract owner and if burning is enabled
  /// @param amount The amount of tokens to be burned
  function burn(uint256 amount) external onlyOwner {
    if (!isBurnable()) {
      revert BurningNotEnabled();
    }
    _burn(msg.sender, amount);
  }

  /// @notice Renounces ownership of the contract
  /// @dev Leaves the contract without an owner, disabling any functions that require the owner's authorization
  function renounceOwnership() public override onlyOwner {
    super.renounceOwnership();
  }

  /// @notice Transfers ownership of the contract to a new account
  /// @dev Can only be called by the current owner
  /// @param newOwner The address of the new owner
  function transferOwnership(address newOwner) public override onlyOwner {
    super.transferOwnership(newOwner);
  }

  // Internal Functions

  /// @notice Calculates the tax amount for a transfer
  /// @param sender The address initiating the transfer
  /// @param amount The amount of tokens being transferred
  /// @return taxAmount The calculated tax amount
  function _taxAmount(
    address sender,
    uint256 amount
  ) internal view returns (uint256 taxAmount) {
    taxAmount = 0;
    if (taxBPS != 0 && sender != taxAddress) {
      taxAmount = (amount * taxBPS) / MAX_BPS_AMOUNT;
    }
  }

  /// @notice Calculates the deflation amount for a transfer
  /// @param amount The amount of tokens being transferred
  /// @return deflationAmount The calculated deflation amount
  function _deflationAmount(
    uint256 amount
  ) internal view returns (uint256 deflationAmount) {
    deflationAmount = 0;
    if (deflationBPS != 0) {
      deflationAmount = (amount * deflationBPS) / MAX_BPS_AMOUNT;
    }
  }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 4 of 8 : LibCommon.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

library LibCommon {
  /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
  /*                       CUSTOM ERRORS                        */
  /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

  /// @dev The ETH transfer has failed.
  error ETHTransferFailed();

  /// @dev The address is the zero address.
  error ZeroAddress();

  /// @notice raised when an ERC20 transfer fails
  error TransferFailed();

  /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
  /*                       ETH OPERATIONS                       */
  /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

  /// @notice Taken from Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol)
  /// @dev Sends `amount` (in wei) ETH to `to`.
  /// Reverts upon failure.
  function safeTransferETH(address to, uint256 amount) internal {
    // solhint-disable-next-line no-inline-assembly
    assembly {
      // Transfer the ETH and check if it succeeded or not.
      if iszero(call(gas(), to, amount, 0, 0, 0, 0)) {
        // Store the function selector of `ETHTransferFailed()`.
        // bytes4(keccak256(bytes("ETHTransferFailed()"))) = 0xb12d13eb
        mstore(0x00, 0xb12d13eb)
        // Revert with (offset, size).
        revert(0x1c, 0x04)
      }
    }
  }

  /// @notice Validates that the address is not the zero address using assembly.
  /// @dev Reverts if the address is the zero address.
  function validateAddress(address addr) internal pure {
    // solhint-disable-next-line no-inline-assembly
    assembly {
      if iszero(shl(96, addr)) {
        // Store the function selector of `ZeroAddress()`.
        // bytes4(keccak256(bytes("ZeroAddress()"))) = 0xd92e233d
        mstore(0x00, 0xd92e233d)
        // Revert with (offset, size).
        revert(0x1c, 0x04)
      }
    }
  }

  /// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20.
  /// @dev Reverts if the ERC20 transfer fails.
  /// @param tokenAddress The address of the ERC20 token.
  /// @param from The address to transfer the tokens from.
  /// @param to The address to transfer the tokens to.
  /// @param amount The amount of tokens to transfer.
  function safeTransferFrom(
    address tokenAddress,
    address from,
    address to,
    uint256 amount
  ) internal returns (bool) {
    // solhint-disable-next-line avoid-low-level-calls
    (bool success, bytes memory data) = tokenAddress.call(
      abi.encodeWithSignature(
        "transferFrom(address,address,uint256)",
        from,
        to,
        amount
      )
    );
    if (!success) {
      if (data.length != 0) {
        // bubble up error
        // solhint-disable-next-line no-inline-assembly
        assembly {
          let returndata_size := mload(data)
          revert(add(32, data), returndata_size)
        }
      } else {
        revert TransferFailed();
      }
    }
    return true;
  }

  /// @notice Helper function to transfer ERC20 tokens without the need for SafeERC20.
  /// @dev Reverts if the ERC20 transfer fails.
  /// @param tokenAddress The address of the ERC20 token.
  /// @param to The address to transfer the tokens to.
  /// @param amount The amount of tokens to transfer.
  function safeTransfer(
    address tokenAddress,
    address to,
    uint256 amount
  ) internal returns (bool) {
    // solhint-disable-next-line avoid-low-level-calls
    (bool success, bytes memory data) = tokenAddress.call(
      abi.encodeWithSignature("transfer(address,uint256)", to, amount)
    );
    if (!success) {
      if (data.length != 0) {
        // bubble up error
        // solhint-disable-next-line no-inline-assembly
        assembly {
          let returndata_size := mload(data)
          revert(add(32, data), returndata_size)
        }
      } else {
        revert TransferFailed();
      }
    }
    return true;
  }
}

File 5 of 8 : ReflectiveERC20.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.17;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { LibCommon } from "./lib/LibCommon.sol";

/// @title A ERC20 implementation with extended reflection token functionalities
/// @notice Implements ERC20 standards with additional token holder reward feature
abstract contract ReflectiveERC20 is ERC20 {
  // Constants
  uint256 private constant BPS_DIVISOR = 10_000;

  mapping(address => uint256) private _rOwned;
  mapping(address => uint256) private _tOwned;

  uint256 private constant UINT_256_MAX = type(uint256).max;
  uint256 private _rTotal;
  uint256 private _tFeeTotal;

  uint256 public tFeeBPS;
  bool private immutable isReflective;

  // custom errors
  error TokenIsNotReflective();
  error TotalReflectionTooSmall();
  error ZeroTransferError();
  error MintingNotEnabled();
  error BurningNotEnabled();
  error ERC20InsufficientBalance(
    address recipient,
    uint256 fromBalance,
    uint256 balance
  );

  /// @notice Gets total supply of the erc20 token
  /// @return Token total supply
  function _tTotal() public view virtual returns (uint256) {
    return totalSupply();
  }

  /// @notice Constructor to initialize the ReflectionErc20 token
  /// @param name_ Name of the token
  /// @param symbol_ Symbol of the token
  /// @param tokenOwner Address of the token owner
  /// @param totalSupply_ Initial total supply
  /// @param decimalsToSet Token decimal number
  /// @param decimalsToSet Token reward (reflection fee BPS value
  constructor(
    string memory name_,
    string memory symbol_,
    address tokenOwner,
    uint256 totalSupply_,
    uint8 decimalsToSet,
    uint256 tFeeBPS_,
    bool isReflective_
  ) ERC20(name_, symbol_) {
    if (totalSupply_ != 0) {
      super._mint(tokenOwner, totalSupply_ * 10 ** decimalsToSet);
      _rTotal = (UINT_256_MAX - (UINT_256_MAX % totalSupply_));
    }

    _rOwned[tokenOwner] = _rTotal;
    tFeeBPS = tFeeBPS_;
    isReflective = isReflective_;
  }

  // public standard ERC20 functions

  /// @notice Gets balance the erc20 token for specific address
  /// @param account Account address
  /// @return Token balance
  function balanceOf(address account) public view override returns (uint256) {
    if (isReflective) {
      return tokenFromReflection(_rOwned[account]);
    } else {
      return super.balanceOf(account);
    }
  }

  /// @notice Transfers allowed tokens between accounts
  /// @param from From account
  /// @param to To account
  /// @param value Transferred value
  /// @return Success
  function transferFrom(
    address from,
    address to,
    uint256 value
  ) public virtual override returns (bool) {
    address spender = super._msgSender();
    _spendAllowance(from, spender, value);
    _transfer(from, to, value);
    return true;
  }

  /// @notice Transfers tokens from owner to an account
  /// @param to To account
  /// @param value Transferred value
  /// @return Success
  function transfer(
    address to,
    uint256 value
  ) public virtual override returns (bool) {
    address owner = super._msgSender();
    _transfer(owner, to, value);
    return true;
  }

  // override internal OZ standard ERC20 functions related to transfer

  /// @notice Transfers tokens from owner to an account
  /// @param to To account
  /// @param amount Transferred amount
  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal override {
    if (isReflective) {
      LibCommon.validateAddress(from);
      LibCommon.validateAddress(to);
      if (amount == 0) {
        revert ZeroTransferError();
      }

      _transferReflected(from, to, amount);
    } else {
      super._transfer(from, to, amount);
    }
  }

  // override incompatible internal OZ standard ERC20 functions to disable them in case
  // reflection mechanism is used, ie. tFeeBPS is non zero

  /// @notice Creates specified amount of tokens, it either uses standard OZ ERC function
  ///         or in case of reflection logic, it is prohibited
  /// @param account Account new tokens will be transferred to
  /// @param value Created tokens value
  function _mint(address account, uint256 value) internal override {
    if (isReflective) {
      revert MintingNotEnabled();
    } else {
      super._mint(account, value);
    }
  }

  /// @notice Destroys specified amount of tokens, it either uses standard OZ ERC function
  ///         or in case of reflection logic, it is prohibited
  /// @param account Account in which tokens will be destroyed
  /// @param value Destroyed tokens value
  function _burn(address account, uint256 value) internal override {
    if (isReflective) {
      revert BurningNotEnabled();
    } else {
      super._burn(account, value);
    }
  }

  // public reflection custom functions

  /// @notice Sets a new reflection fee
  /// @dev Should only be called by the contract owner
  /// @param _tFeeBPS The reflection fee in basis points
  function _setReflectionFee(uint256 _tFeeBPS) internal {
    if (!isReflective) {
      revert TokenIsNotReflective();
    }

    tFeeBPS = _tFeeBPS;
  }

  /// @notice Calculates number of tokens from reflection amount
  /// @param rAmount Reflection token amount
  function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
    if (rAmount > _rTotal) {
      revert TotalReflectionTooSmall();
    }

    uint256 currentRate = _getRate();
    return rAmount / currentRate;
  }

  // private reflection custom functions

  /// @notice Transfers reflected amount of tokens
  /// @param sender Account to transfer tokens from
  /// @param recipient Account to transfer tokens to
  /// @param tAmount Total token amount
  function _transferReflected(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    uint256 tFee = calculateFee(tAmount);
    uint256 tTransferAmount = tAmount - tFee;
    (uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
      tAmount,
      tFee,
      tTransferAmount
    );

    if (tAmount != 0) {
      _rUpdate(sender, recipient, rAmount, rTransferAmount);

      _reflectFee(rFee, tFee);
      emit Transfer(sender, recipient, tAmount);
    }
  }

  /// @notice Deducts reflection fee from reflection supply to 'distribute' token holder rewards
  /// @param rFee Reflection fee
  /// @param tFee Token fee
  function _reflectFee(uint256 rFee, uint256 tFee) private {
    _rTotal = _rTotal - rFee;
    _tFeeTotal = _tFeeTotal + tFee;
  }

  /// @notice Calculates the reflection fee from token amount
  /// @param _amount Amount of tokens to calculate fee from
  function calculateFee(uint256 _amount) private view returns (uint256) {
    return (_amount * tFeeBPS) / BPS_DIVISOR;
  }

  /// @notice Transfers Tax related tokens and do not apply reflection fees
  /// @param from Account to transfer tokens from
  /// @param to Account to transfer tokens to
  /// @param tAmount Total token amount
  function _transferNonReflectedTax(
    address from,
    address to,
    uint256 tAmount
  ) internal {
    if (isReflective) {
      if (tAmount != 0) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount * currentRate;

        _rUpdate(from, to, rAmount, rAmount);
        emit Transfer(from, to, tAmount);
      }
    } else {
      super._transfer(from, to, tAmount);
    }
  }

  /// @notice Get reflective values from token values
  /// @param tAmount Token amount
  /// @param tFee Token fee
  /// @param tTransferAmount Transfer amount
  function _getRValues(
    uint256 tAmount,
    uint256 tFee,
    uint256 tTransferAmount
  ) private view returns (uint256, uint256, uint256) {
    uint256 currentRate = _getRate();
    uint256 rAmount = tAmount * currentRate;
    uint256 rFee = tFee * currentRate;
    uint256 rTransferAmount = tTransferAmount * currentRate;

    return (rAmount, rFee, rTransferAmount);
  }

  /// @notice Get ratio rate between reflective and token supply
  /// @return Reflective rate
  function _getRate() private view returns (uint256) {
    (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
    return rSupply / tSupply;
  }

  /// @notice Get reflective and token supplies
  /// @return Reflective and token supplies
  function _getCurrentSupply() private view returns (uint256, uint256) {
    return (_rTotal, _tTotal());
  }

  /// @notice Update reflective balances to reflect amount transfer,
  ///         with or without a fee applied. If a fee is applied,
  ///         the amount deducted from the sender will differ
  ///         from amount added to the recipient
  /// @param sender Sender address
  /// @param recipient Recipient address
  /// @param rSubAmount Amount to be deducted from sender
  /// @param rTransferAmount Amount to be added to recipient
  function _rUpdate(
    address sender,
    address recipient,
    uint256 rSubAmount,
    uint256 rTransferAmount
  ) private {
    uint256 fromBalance = _rOwned[sender];
    if (fromBalance < rSubAmount) {
      revert ERC20InsufficientBalance(recipient, fromBalance, rSubAmount);
    }
    _rOwned[sender] = _rOwned[sender] - rSubAmount;
    _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;
  }
}

File 6 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 8 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1337
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupplyToSet","type":"uint256"},{"internalType":"uint8","name":"decimalsToSet","type":"uint8"},{"internalType":"address","name":"tokenOwner","type":"address"},{"components":[{"internalType":"bool","name":"_isMintable","type":"bool"},{"internalType":"bool","name":"_isBurnable","type":"bool"},{"internalType":"bool","name":"_isDocumentAllowed","type":"bool"},{"internalType":"bool","name":"_isMaxAmountOfTokensSet","type":"bool"},{"internalType":"bool","name":"_isMaxSupplySet","type":"bool"},{"internalType":"bool","name":"_isTaxable","type":"bool"},{"internalType":"bool","name":"_isDeflationary","type":"bool"},{"internalType":"bool","name":"_isReflective","type":"bool"}],"internalType":"struct DefiV3Token.ERC20ConfigProps","name":"customConfigProps","type":"tuple"},{"internalType":"string","name":"newDocumentUri","type":"string"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256[3]","name":"bpsParams","type":"uint256[3]"},{"internalType":"uint256[2]","name":"amountParams","type":"uint256[2]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BurningNotEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"DestBalanceExceedsMaxAllowed","type":"error"},{"inputs":[],"name":"DocumentUriNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"fromBalance","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"InvalidDecimals","type":"error"},{"inputs":[],"name":"InvalidMaxSupplyConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"maxTokenAmount","type":"uint256"}],"name":"InvalidMaxTokenAmount","type":"error"},{"inputs":[],"name":"InvalidReflectiveConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"InvalidTotalBPS","type":"error"},{"inputs":[],"name":"MaxTokenAmountNotAllowed","type":"error"},{"inputs":[],"name":"MaxTokenAmountPerAddrLtPrevious","type":"error"},{"inputs":[],"name":"MintingNotEnabled","type":"error"},{"inputs":[],"name":"TokenIsNotDeflationary","type":"error"},{"inputs":[],"name":"TokenIsNotReflective","type":"error"},{"inputs":[],"name":"TokenIsNotTaxable","type":"error"},{"inputs":[],"name":"TotalReflectionTooSmall","type":"error"},{"inputs":[],"name":"TotalSupplyExceedsMaxAllowedAmount","type":"error"},{"inputs":[],"name":"ZeroTransferError","type":"error"},{"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":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"DeflationConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newDocUri","type":"string"}],"name":"DocumentUriSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"MaxTokenAmountPerSet","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":"uint256","name":"_feeBPS","type":"uint256"}],"name":"ReflectionConfigSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_taxAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"TaxConfigSet","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":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deflationBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"documentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialDocumentUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMaxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDeflationary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDocumentUriAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxAmountOfTokensSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxSupplySet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReflective","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deflationBPS","type":"uint256"}],"name":"setDeflationConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDocumentUri","type":"string"}],"name":"setDocumentUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokenAmount","type":"uint256"}],"name":"setMaxTokenAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeBPS","type":"uint256"}],"name":"setReflectionConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"uint256","name":"_taxBPS","type":"uint256"}],"name":"setTaxConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040523480156200001257600080fd5b5060405162002dd638038062002dd6833981016040819052620000359162000933565b8989878a8a8c6000036200004b57600062000051565b60408701515b60e08b01518686600362000066838262000ad3565b50600462000075828262000ad3565b50505083600014620000d057620000b0856200009385600a62000cb4565b6200009f908762000ccc565b620003b160201b6200100a1760201c565b620000be8460001962000ce6565b620000cc9060001962000d09565b6007555b6007546001600160a01b0390951660009081526005602052604090209490945560095550501515608052506200010f9050620001093390565b62000474565b8460e0015180156200013857508460200151806200012b575084515b806200013857508460c001515b806200015557508460e00151158015620001555750604082015115155b156200017457604051630c2a1c3360e21b815260040160405180910390fd5b846060015115620001ad578051600003620001ad5780516040516364824b8d60e01b815260048101919091526024015b60405180910390fd5b60128760ff161115620001d95760405163ca95039160e01b815260ff88166004820152602401620001a4565b84608001518015620001fa575084511580620001fa57506020810151600254115b156200021957604051635a8d424160e11b815260040160405180910390fd5b62000226858385620004c6565b6200023c866200056660201b620010c91760201c565b601080546001600160a01b0319166001600160a01b0385161790558151601155602082015160125560a0889052805160c052600b6200027c858262000ad3565b506001600160a01b03861660e090815260ff88166101009081528651600f805460208a015160408b015160608c015160808d015160a08e015160c08f0151998f015161ffff1990961697151561ff001916979097179315159097029290921763ffff00001916620100009115159190910263ff0000001916176301000000911515919091021761ffff60201b19166401000000009415159490940260ff60281b19169390931765010000000000921515929092029190911761ffff60301b191666010000000000009315159390930260ff60381b19169290921767010000000000000091151591909102179055600c62000377858262000ad3565b508051600d556020810151600e55336001600160a01b03871614620003a157620003a18662000580565b5050505050505050505062000d35565b6001600160a01b038216620004095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001a4565b80600260008282546200041d919062000d1f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008360a0015115620004fa57620004e9826200056660201b620010c91760201c565b8251620004f7908262000d1f565b90505b8360c00151156200051957602083015162000516908262000d1f565b90505b8360e00151156200053857604083015162000535908262000d1f565b90505b6107d08111156200056057604051633e474e0d60e01b815260048101829052602401620001a4565b50505050565b8060601b6200057d5763d92e233d6000526004601cfd5b50565b6200058a620005a5565b6200057d816200060360201b620010df1760201c565b505050565b600a546001600160a01b03163314620006015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001a4565b565b6200060d620005a5565b6001600160a01b038116620006745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620001a4565b6200057d8162000474565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620006c057620006c06200067f565b604052919050565b600082601f830112620006da57600080fd5b81516001600160401b03811115620006f657620006f66200067f565b60206200070c601f8301601f1916820162000695565b82815285828487010111156200072157600080fd5b60005b838110156200074157858101830151828201840152820162000724565b506000928101909101919091529392505050565b805160ff811681146200076757600080fd5b919050565b80516001600160a01b03811681146200076757600080fd5b805180151581146200076757600080fd5b6000610100808385031215620007aa57600080fd5b604051908101906001600160401b0382118183101715620007cf57620007cf6200067f565b81604052809250620007e18462000784565b8152620007f16020850162000784565b6020820152620008046040850162000784565b6040820152620008176060850162000784565b60608201526200082a6080850162000784565b60808201526200083d60a0850162000784565b60a08201526200085060c0850162000784565b60c08201526200086360e0850162000784565b60e0820152505092915050565b600082601f8301126200088257600080fd5b604051606081016001600160401b0381118282101715620008a757620008a76200067f565b604052806060840185811115620008bd57600080fd5b845b81811015620008d9578051835260209283019201620008bf565b509195945050505050565b600082601f830112620008f657600080fd5b604080519081016001600160401b03811182821017156200091b576200091b6200067f565b8060405250806040840185811115620008bd57600080fd5b6000806000806000806000806000806102808b8d0312156200095457600080fd5b8a516001600160401b03808211156200096c57600080fd5b6200097a8e838f01620006c8565b9b5060208d01519150808211156200099157600080fd5b6200099f8e838f01620006c8565b9a5060408d01519950620009b660608e0162000755565b9850620009c660808e016200076c565b9750620009d78e60a08f0162000795565b96506101a08d0151915080821115620009ef57600080fd5b50620009fe8d828e01620006c8565b94505062000a106101c08c016200076c565b925062000a228c6101e08d0162000870565b915062000a348c6102408d01620008e4565b90509295989b9194979a5092959850565b600181811c9082168062000a5a57607f821691505b60208210810362000a7b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a057600081815260208120601f850160051c8101602086101562000aaa5750805b601f850160051c820191505b8181101562000acb5782815560010162000ab6565b505050505050565b81516001600160401b0381111562000aef5762000aef6200067f565b62000b078162000b00845462000a45565b8462000a81565b602080601f83116001811462000b3f576000841562000b265750858301515b600019600386901b1c1916600185901b17855562000acb565b600085815260208120601f198616915b8281101562000b705788860151825594840194600190910190840162000b4f565b508582101562000b8f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000bf657816000190482111562000bda5762000bda62000b9f565b8085161562000be857918102915b93841c939080029062000bba565b509250929050565b60008262000c0f5750600162000cae565b8162000c1e5750600062000cae565b816001811462000c37576002811462000c425762000c62565b600191505062000cae565b60ff84111562000c565762000c5662000b9f565b50506001821b62000cae565b5060208310610133831016604e8410600b841016171562000c87575081810a62000cae565b62000c93838362000bb5565b806000190482111562000caa5762000caa62000b9f565b0290505b92915050565b600062000cc560ff84168362000bfe565b9392505050565b808202811582820484141762000cae5762000cae62000b9f565b60008262000d0457634e487b7160e01b600052601260045260246000fd5b500690565b8181038181111562000cae5762000cae62000b9f565b8082018082111562000cae5762000cae62000b9f565b60805160a05160c05160e0516101005161203962000d9d60003960006103b3015260006104cc01526000610519015260006103e2015260008181610b1c0152818161138a0152818161143c015281816114c10152818161152a0152611a9301526120396000f3fe608060405234801561001057600080fd5b50600436106102e95760003560e01c8063883356d911610191578063af465a27116100e3578063de0060ca11610097578063f820f56711610071578063f820f56714610625578063f91f825d14610636578063ffa1ad741461064957600080fd5b8063de0060ca146105ec578063f19c4e3b146105ff578063f2fde38b1461061257600080fd5b8063d48e4127116100c8578063d48e412714610597578063d8f67851146105a0578063dd62ed3e146105b357600080fd5b8063af465a271461057c578063b7bda68f1461058457600080fd5b80639703a19d11610145578063a476df611161011f578063a476df611461054e578063a9059cbb14610561578063a9d866851461057457600080fd5b80639703a19d1461050b578063a32f697614610514578063a457c2d71461053b57600080fd5b80638dac7191116101765780638dac7191146104c75780638e8c10a2146104ee57806395d89b411461050357600080fd5b8063883356d9146104925780638da5cb5b146104a257600080fd5b8063313ce5671161024a57806346b45af7116101fe5780635a3990ce116101d85780635a3990ce1461046557806370a0823114610477578063715018a61461048a57600080fd5b806346b45af71461043d5780634ac0bc3214610448578063542e96671461045c57600080fd5b8063395093511161022f578063395093511461040457806340c10f191461041757806342966c681461042a57600080fd5b8063313ce567146103ac578063378dc3dc146103dd57600080fd5b806323b872dd116102a15780632d838119116102865780632d8381191461037a5780632e0ee48e1461038d5780632fa782eb146103a357600080fd5b806323b872dd1461035e5780632ab4d0521461037157600080fd5b806306fdde03116102d257806306fdde0314610321578063095ea7b31461032957806318160ddd1461034c57600080fd5b806302252c4d146102ee578063044ab74e14610303575b600080fd5b6103016102fc366004611c4d565b610685565b005b61030b610747565b6040516103189190611c66565b60405180910390f35b61030b6107d5565b61033c610337366004611ccb565b610867565b6040519015158152602001610318565b6002545b604051908152602001610318565b61033c61036c366004611cf5565b610881565b610350600e5481565b610350610388366004611c4d565b610953565b600f54670100000000000000900460ff1661033c565b61035060115481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610318565b6103507f000000000000000000000000000000000000000000000000000000000000000081565b61033c610412366004611ccb565b6109ae565b610301610425366004611ccb565b6109ed565b610301610438366004611c4d565b610adb565b600f5460ff1661033c565b600f5465010000000000900460ff1661033c565b61035060125481565b600f546301000000900460ff1661033c565b610350610485366004611d31565b610b18565b610301610b85565b600f54610100900460ff1661033c565b600a546001600160a01b03165b6040516001600160a01b039091168152602001610318565b6104af7f000000000000000000000000000000000000000000000000000000000000000081565b600f546601000000000000900460ff1661033c565b61030b610b97565b61035060095481565b6103507f000000000000000000000000000000000000000000000000000000000000000081565b61033c610549366004611ccb565b610ba6565b61030161055c366004611d62565b610c5b565b61033c61056f366004611ccb565b610ce1565b61030b610dac565b610350610db9565b6010546104af906001600160a01b031681565b610350600d5481565b6103016105ae366004611c4d565b610dc9565b6103506105c1366004611e13565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600f54640100000000900460ff1661033c565b61030161060d366004611ccb565b610e90565b610301610620366004611d31565b610f8c565b600f5462010000900460ff1661033c565b610301610644366004611c4d565b610f9d565b61030b6040518060400160405280600881526020017f646566695f765f3300000000000000000000000000000000000000000000000081525081565b61068d61116c565b600f546301000000900460ff166106d0576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811161070b576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d8190556040518181527f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d59906020015b60405180910390a150565b600c805461075490611e46565b80601f016020809104026020016040519081016040528092919081815260200182805461078090611e46565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b505050505081565b6060600380546107e490611e46565b80601f016020809104026020016040519081016040528092919081815260200182805461081090611e46565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b6000336108758185856111c6565b60019150505b92915050565b60008061088e858461131e565b9050600061089b84611361565b90506000816108aa8487611e96565b6108b49190611e96565b600f549091506301000000900460ff161561090f57600d54816108d688610b18565b6108e09190611ea9565b111561090f5760405163f6202a8f60e01b81526001600160a01b03871660048201526024015b60405180910390fd5b821561092d5760105461092d9088906001600160a01b031685611388565b811561093d5761093d878361143a565b610948878783611483565b979650505050505050565b6000600754821115610991576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061099b61149c565b90506109a78184611ebc565b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061087590829086906109e8908790611ea9565b6111c6565b6109f561116c565b600f5460ff16610a1857604051630732158d60e31b815260040160405180910390fd5b600f546301000000900460ff1615610a6b57600d5481610a3784610b18565b610a419190611ea9565b1115610a6b5760405163f6202a8f60e01b81526001600160a01b0383166004820152602401610906565b600f54640100000000900460ff1615610acd57600e5481610a8b60025490565b610a959190611ea9565b1115610acd576040517f44ea8ea500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad782826114bf565b5050565b610ae361116c565b600f54610100900460ff16610b0b57604051636cb5913960e01b815260040160405180910390fd5b610b15338261143a565b50565b60007f000000000000000000000000000000000000000000000000000000000000000015610b62576001600160a01b03821660009081526005602052604090205461087b90610953565b6001600160a01b03821660009081526020819052604090205461087b565b919050565b610b8d61116c565b610b95611508565b565b6060600480546107e490611e46565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610906565b610c5082868684036111c6565b506001949350505050565b610c6361116c565b600f5462010000900460ff16610ca5576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c610cb18282611f2c565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade8160405161073c9190611c66565b600080610cee338461131e565b90506000610cfb84611361565b9050600081610d0a8487611e96565b610d149190611e96565b600f549091506301000000900460ff1615610d6a57600d5481610d3688610b18565b610d409190611ea9565b1115610d6a5760405163f6202a8f60e01b81526001600160a01b0387166004820152602401610906565b8215610d8857601054610d889033906001600160a01b031685611388565b8115610d9857610d98338361143a565b610da2868261151a565b9695505050505050565b600b805461075490611e46565b6000610dc460025490565b905090565b610dd161116c565b600f546601000000000000900460ff16610e17576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601254610e2a9190611ea9565b610e349190611ea9565b90506107d0811115610e5c57604051633e474e0d60e01b815260048101829052602401610906565b601282905560405182907fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec390600090a25050565b610e9861116c565b600f5465010000000000900460ff16610edd576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601254610ef09190611ea9565b610efa9190611ea9565b90506107d0811115610f2257604051633e474e0d60e01b815260048101829052602401610906565b610f2b836110c9565b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03851690811790915560118390556040518391907facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a90600090a3505050565b610f9461116c565b610b15816110df565b610fa561116c565b600f54670100000000000000900460ff16610fd357604051630800e34b60e41b815260040160405180910390fd5b610fdc81611528565b60405181907f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e390600090a250565b6001600160a01b0382166110605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610906565b80600260008282546110729190611ea9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8060601b610b155763d92e233d6000526004601cfd5b6110e761116c565b6001600160a01b0381166111635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610906565b610b158161156b565b600a546001600160a01b03163314610b955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610906565b6001600160a01b0383166112415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0382166112bd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600060115460001415801561134157506010546001600160a01b03848116911614155b1561087b57612710601154836113579190611fec565b6109a79190611ebc565b6000601254600014610b80576127106012548361137e9190611fec565b61087b9190611ebc565b7f00000000000000000000000000000000000000000000000000000000000000001561142f57801561142a5760006113be61149c565b905060006113cc8284611fec565b90506113da858583846115ca565b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161141f91815260200190565b60405180910390a350505b505050565b61142a8383836116ad565b7f00000000000000000000000000000000000000000000000000000000000000001561147957604051636cb5913960e01b815260040160405180910390fd5b610ad7828261189c565b600033611491858285611a05565b610c50858585611a91565b60008060006114a9611b0e565b90925090506114b88183611ebc565b9250505090565b7f0000000000000000000000000000000000000000000000000000000000000000156114fe57604051630732158d60e31b815260040160405180910390fd5b610ad7828261100a565b61151061116c565b610b95600061156b565b600033610875818585611a91565b7f000000000000000000000000000000000000000000000000000000000000000061156657604051630800e34b60e41b815260040160405180910390fd5b600955565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841660009081526005602052604090205482811015611636576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101849052606401610906565b6001600160a01b03851660009081526005602052604090205461165a908490611e96565b6001600160a01b03808716600090815260056020526040808220939093559086168152205461168a908390611ea9565b6001600160a01b0390941660009081526005602052604090209390935550505050565b6001600160a01b0383166117295760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0382166117a55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b038316600090815260208190526040902054818110156118345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6001600160a01b0382166119185760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b038216600090815260208190526040902054818110156119a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146118965781811015611a845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610906565b61189684848484036111c6565b7f00000000000000000000000000000000000000000000000000000000000000001561142f57611ac0836110c9565b611ac9826110c9565b80600003611b03576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142a838383611b24565b600080600754611b1c610db9565b915091509091565b6000611b2f82611bcb565b90506000611b3d8284611e96565b90506000806000611b4f868686611bde565b92509250925085600014611bc157611b69888885846115ca565b611b738286611c27565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051611bb891815260200190565b60405180910390a35b5050505050505050565b60006127106009548361137e9190611fec565b600080600080611bec61149c565b90506000611bfa8289611fec565b90506000611c088389611fec565b90506000611c168489611fec565b929a91995091975095505050505050565b81600754611c359190611e96565b600755600854611c46908290611ea9565b6008555050565b600060208284031215611c5f57600080fd5b5035919050565b600060208083528351808285015260005b81811015611c9357858101830151858201604001528201611c77565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b8057600080fd5b60008060408385031215611cde57600080fd5b611ce783611cb4565b946020939093013593505050565b600080600060608486031215611d0a57600080fd5b611d1384611cb4565b9250611d2160208501611cb4565b9150604084013590509250925092565b600060208284031215611d4357600080fd5b6109a782611cb4565b634e487b7160e01b600052604160045260246000fd5b600060208284031215611d7457600080fd5b813567ffffffffffffffff80821115611d8c57600080fd5b818401915084601f830112611da057600080fd5b813581811115611db257611db2611d4c565b604051601f8201601f19908116603f01168101908382118183101715611dda57611dda611d4c565b81604052828152876020848701011115611df357600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215611e2657600080fd5b611e2f83611cb4565b9150611e3d60208401611cb4565b90509250929050565b600181811c90821680611e5a57607f821691505b602082108103611e7a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561087b5761087b611e80565b8082018082111561087b5761087b611e80565b600082611ed957634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561142a57600081815260208120601f850160051c81016020861015611f055750805b601f850160051c820191505b81811015611f2457828155600101611f11565b505050505050565b815167ffffffffffffffff811115611f4657611f46611d4c565b611f5a81611f548454611e46565b84611ede565b602080601f831160018114611f8f5760008415611f775750858301515b600019600386901b1c1916600185901b178555611f24565b600085815260208120601f198616915b82811015611fbe57888601518255948401946001909101908401611f9f565b5085821015611fdc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761087b5761087b611e8056fea2646970667358221220f0883b06564851f25c2214f07da7f7c972f341f687d3de12c8903d945027bfe064736f6c63430008110033000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002c0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075ce495fc9c97fc049b6eca9ce0a8dc9640fbe6600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000030000000000000000000000000051972bd3a2d6436c3ff2feb6dcd1a43bb78670590000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c696665636861696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4348000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000176c696665636861696e666f756e646174696f6e2e636f6d000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102e95760003560e01c8063883356d911610191578063af465a27116100e3578063de0060ca11610097578063f820f56711610071578063f820f56714610625578063f91f825d14610636578063ffa1ad741461064957600080fd5b8063de0060ca146105ec578063f19c4e3b146105ff578063f2fde38b1461061257600080fd5b8063d48e4127116100c8578063d48e412714610597578063d8f67851146105a0578063dd62ed3e146105b357600080fd5b8063af465a271461057c578063b7bda68f1461058457600080fd5b80639703a19d11610145578063a476df611161011f578063a476df611461054e578063a9059cbb14610561578063a9d866851461057457600080fd5b80639703a19d1461050b578063a32f697614610514578063a457c2d71461053b57600080fd5b80638dac7191116101765780638dac7191146104c75780638e8c10a2146104ee57806395d89b411461050357600080fd5b8063883356d9146104925780638da5cb5b146104a257600080fd5b8063313ce5671161024a57806346b45af7116101fe5780635a3990ce116101d85780635a3990ce1461046557806370a0823114610477578063715018a61461048a57600080fd5b806346b45af71461043d5780634ac0bc3214610448578063542e96671461045c57600080fd5b8063395093511161022f578063395093511461040457806340c10f191461041757806342966c681461042a57600080fd5b8063313ce567146103ac578063378dc3dc146103dd57600080fd5b806323b872dd116102a15780632d838119116102865780632d8381191461037a5780632e0ee48e1461038d5780632fa782eb146103a357600080fd5b806323b872dd1461035e5780632ab4d0521461037157600080fd5b806306fdde03116102d257806306fdde0314610321578063095ea7b31461032957806318160ddd1461034c57600080fd5b806302252c4d146102ee578063044ab74e14610303575b600080fd5b6103016102fc366004611c4d565b610685565b005b61030b610747565b6040516103189190611c66565b60405180910390f35b61030b6107d5565b61033c610337366004611ccb565b610867565b6040519015158152602001610318565b6002545b604051908152602001610318565b61033c61036c366004611cf5565b610881565b610350600e5481565b610350610388366004611c4d565b610953565b600f54670100000000000000900460ff1661033c565b61035060115481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610318565b6103507f000000000000000000000000000000000000000000000000000000003b9aca0081565b61033c610412366004611ccb565b6109ae565b610301610425366004611ccb565b6109ed565b610301610438366004611c4d565b610adb565b600f5460ff1661033c565b600f5465010000000000900460ff1661033c565b61035060125481565b600f546301000000900460ff1661033c565b610350610485366004611d31565b610b18565b610301610b85565b600f54610100900460ff1661033c565b600a546001600160a01b03165b6040516001600160a01b039091168152602001610318565b6104af7f00000000000000000000000075ce495fc9c97fc049b6eca9ce0a8dc9640fbe6681565b600f546601000000000000900460ff1661033c565b61030b610b97565b61035060095481565b6103507f000000000000000000000000000000000000000000000000000000000000000081565b61033c610549366004611ccb565b610ba6565b61030161055c366004611d62565b610c5b565b61033c61056f366004611ccb565b610ce1565b61030b610dac565b610350610db9565b6010546104af906001600160a01b031681565b610350600d5481565b6103016105ae366004611c4d565b610dc9565b6103506105c1366004611e13565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600f54640100000000900460ff1661033c565b61030161060d366004611ccb565b610e90565b610301610620366004611d31565b610f8c565b600f5462010000900460ff1661033c565b610301610644366004611c4d565b610f9d565b61030b6040518060400160405280600881526020017f646566695f765f3300000000000000000000000000000000000000000000000081525081565b61068d61116c565b600f546301000000900460ff166106d0576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811161070b576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d8190556040518181527f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d59906020015b60405180910390a150565b600c805461075490611e46565b80601f016020809104026020016040519081016040528092919081815260200182805461078090611e46565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b505050505081565b6060600380546107e490611e46565b80601f016020809104026020016040519081016040528092919081815260200182805461081090611e46565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b6000336108758185856111c6565b60019150505b92915050565b60008061088e858461131e565b9050600061089b84611361565b90506000816108aa8487611e96565b6108b49190611e96565b600f549091506301000000900460ff161561090f57600d54816108d688610b18565b6108e09190611ea9565b111561090f5760405163f6202a8f60e01b81526001600160a01b03871660048201526024015b60405180910390fd5b821561092d5760105461092d9088906001600160a01b031685611388565b811561093d5761093d878361143a565b610948878783611483565b979650505050505050565b6000600754821115610991576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061099b61149c565b90506109a78184611ebc565b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061087590829086906109e8908790611ea9565b6111c6565b6109f561116c565b600f5460ff16610a1857604051630732158d60e31b815260040160405180910390fd5b600f546301000000900460ff1615610a6b57600d5481610a3784610b18565b610a419190611ea9565b1115610a6b5760405163f6202a8f60e01b81526001600160a01b0383166004820152602401610906565b600f54640100000000900460ff1615610acd57600e5481610a8b60025490565b610a959190611ea9565b1115610acd576040517f44ea8ea500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad782826114bf565b5050565b610ae361116c565b600f54610100900460ff16610b0b57604051636cb5913960e01b815260040160405180910390fd5b610b15338261143a565b50565b60007f000000000000000000000000000000000000000000000000000000000000000115610b62576001600160a01b03821660009081526005602052604090205461087b90610953565b6001600160a01b03821660009081526020819052604090205461087b565b919050565b610b8d61116c565b610b95611508565b565b6060600480546107e490611e46565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610906565b610c5082868684036111c6565b506001949350505050565b610c6361116c565b600f5462010000900460ff16610ca5576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c610cb18282611f2c565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade8160405161073c9190611c66565b600080610cee338461131e565b90506000610cfb84611361565b9050600081610d0a8487611e96565b610d149190611e96565b600f549091506301000000900460ff1615610d6a57600d5481610d3688610b18565b610d409190611ea9565b1115610d6a5760405163f6202a8f60e01b81526001600160a01b0387166004820152602401610906565b8215610d8857601054610d889033906001600160a01b031685611388565b8115610d9857610d98338361143a565b610da2868261151a565b9695505050505050565b600b805461075490611e46565b6000610dc460025490565b905090565b610dd161116c565b600f546601000000000000900460ff16610e17576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601254610e2a9190611ea9565b610e349190611ea9565b90506107d0811115610e5c57604051633e474e0d60e01b815260048101829052602401610906565b601282905560405182907fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec390600090a25050565b610e9861116c565b600f5465010000000000900460ff16610edd576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601254610ef09190611ea9565b610efa9190611ea9565b90506107d0811115610f2257604051633e474e0d60e01b815260048101829052602401610906565b610f2b836110c9565b6010805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03851690811790915560118390556040518391907facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a90600090a3505050565b610f9461116c565b610b15816110df565b610fa561116c565b600f54670100000000000000900460ff16610fd357604051630800e34b60e41b815260040160405180910390fd5b610fdc81611528565b60405181907f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e390600090a250565b6001600160a01b0382166110605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610906565b80600260008282546110729190611ea9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8060601b610b155763d92e233d6000526004601cfd5b6110e761116c565b6001600160a01b0381166111635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610906565b610b158161156b565b600a546001600160a01b03163314610b955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610906565b6001600160a01b0383166112415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0382166112bd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600060115460001415801561134157506010546001600160a01b03848116911614155b1561087b57612710601154836113579190611fec565b6109a79190611ebc565b6000601254600014610b80576127106012548361137e9190611fec565b61087b9190611ebc565b7f00000000000000000000000000000000000000000000000000000000000000011561142f57801561142a5760006113be61149c565b905060006113cc8284611fec565b90506113da858583846115ca565b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161141f91815260200190565b60405180910390a350505b505050565b61142a8383836116ad565b7f00000000000000000000000000000000000000000000000000000000000000011561147957604051636cb5913960e01b815260040160405180910390fd5b610ad7828261189c565b600033611491858285611a05565b610c50858585611a91565b60008060006114a9611b0e565b90925090506114b88183611ebc565b9250505090565b7f0000000000000000000000000000000000000000000000000000000000000001156114fe57604051630732158d60e31b815260040160405180910390fd5b610ad7828261100a565b61151061116c565b610b95600061156b565b600033610875818585611a91565b7f000000000000000000000000000000000000000000000000000000000000000161156657604051630800e34b60e41b815260040160405180910390fd5b600955565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841660009081526005602052604090205482811015611636576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101849052606401610906565b6001600160a01b03851660009081526005602052604090205461165a908490611e96565b6001600160a01b03808716600090815260056020526040808220939093559086168152205461168a908390611ea9565b6001600160a01b0390941660009081526005602052604090209390935550505050565b6001600160a01b0383166117295760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0382166117a55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b038316600090815260208190526040902054818110156118345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6001600160a01b0382166119185760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b038216600090815260208190526040902054818110156119a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610906565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146118965781811015611a845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610906565b61189684848484036111c6565b7f00000000000000000000000000000000000000000000000000000000000000011561142f57611ac0836110c9565b611ac9826110c9565b80600003611b03576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142a838383611b24565b600080600754611b1c610db9565b915091509091565b6000611b2f82611bcb565b90506000611b3d8284611e96565b90506000806000611b4f868686611bde565b92509250925085600014611bc157611b69888885846115ca565b611b738286611c27565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051611bb891815260200190565b60405180910390a35b5050505050505050565b60006127106009548361137e9190611fec565b600080600080611bec61149c565b90506000611bfa8289611fec565b90506000611c088389611fec565b90506000611c168489611fec565b929a91995091975095505050505050565b81600754611c359190611e96565b600755600854611c46908290611ea9565b6008555050565b600060208284031215611c5f57600080fd5b5035919050565b600060208083528351808285015260005b81811015611c9357858101830151858201604001528201611c77565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b8057600080fd5b60008060408385031215611cde57600080fd5b611ce783611cb4565b946020939093013593505050565b600080600060608486031215611d0a57600080fd5b611d1384611cb4565b9250611d2160208501611cb4565b9150604084013590509250925092565b600060208284031215611d4357600080fd5b6109a782611cb4565b634e487b7160e01b600052604160045260246000fd5b600060208284031215611d7457600080fd5b813567ffffffffffffffff80821115611d8c57600080fd5b818401915084601f830112611da057600080fd5b813581811115611db257611db2611d4c565b604051601f8201601f19908116603f01168101908382118183101715611dda57611dda611d4c565b81604052828152876020848701011115611df357600080fd5b826020860160208301376000928101602001929092525095945050505050565b60008060408385031215611e2657600080fd5b611e2f83611cb4565b9150611e3d60208401611cb4565b90509250929050565b600181811c90821680611e5a57607f821691505b602082108103611e7a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561087b5761087b611e80565b8082018082111561087b5761087b611e80565b600082611ed957634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561142a57600081815260208120601f850160051c81016020861015611f055750805b601f850160051c820191505b81811015611f2457828155600101611f11565b505050505050565b815167ffffffffffffffff811115611f4657611f46611d4c565b611f5a81611f548454611e46565b84611ede565b602080601f831160018114611f8f5760008415611f775750858301515b600019600386901b1c1916600185901b178555611f24565b600085815260208120601f198616915b82811015611fbe57888601518255948401946001909101908401611f9f565b5085821015611fdc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761087b5761087b611e8056fea2646970667358221220f0883b06564851f25c2214f07da7f7c972f341f687d3de12c8903d945027bfe064736f6c63430008110033

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.