ETH Price: $2,080.03 (+1.06%)
 

Overview

Max Total Supply

69,000,000 JODY

Holders

48

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0x00...dEaD
Balance
1,000,000 JODY

Value
$0.00
0x000000000000000000000000000000000000dead
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
DefiTokenFixedSupply

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
// SPDX-License-Identifier: GPL-3.0

/**
_DEFAULT_BRANDING_
*/

pragma solidity 0.8.17;

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

/// @title A Defi Token implementation with extended functionalities
/// @notice Implements ERC20 standards with additional features like tax and deflation
contract DefiTokenFixedSupply is ReflectiveV3ERC20, Ownable {
  // Constants
  uint256 private constant MAX_BPS_AMOUNT = 10_000;
  uint256 private constant MAX_ALLOWED_BPS = 2_000;
  uint256 public constant MAX_EXCLUSION_LIMIT = 100;
  string public constant VERSION = "defi_v_1_fixed_supply";
  string public constant CONTRACT_NAME = "DefiTokenFixedSupply";
  bytes32 public constant CONTRACT_HASH = 0xd309adf9916831da4fa176663947be0e9c745ad6645bb47e804e4c488a7f1b4e;

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

  mapping(address => bool) public isFeesAndLimitsExcluded;
  address[] public feesAndLimitsExcluded;

  /// @notice Configuration properties for the ERC20 token
  struct ERC20ConfigProps {
    bool _isBurnable;
    bool _isDocumentAllowed;
    bool _isMaxAmountOfTokensSet;
    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);
  event ExcludeFromFeesAndLimits(address indexed account);
  event IncludedInFeesAndLimits(address indexed account);

  // 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 AlreadyExcludedFromFeesAndLimits();
  error AlreadyIncludedInFeesAndLimits();
  error ReachedMaxExclusionLimit();

  /// @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

  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[1] memory amountParams
  )
    ReflectiveV3ERC20(
      name_,
      symbol_,
      tokenOwner,
      initialSupplyToSet,
      decimalsToSet,
      initialSupplyToSet != 0 ? bpsParams[2] : 0,
      customConfigProps._isReflective
    )
  {
    // reflection feature can't be used in combination with burning/deflation
    // or reflection config is invalid if no reflection BPS amount is provided
    if (
      (customConfigProps._isReflective &&
        (customConfigProps._isBurnable ||
          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);
    }

    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];

    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

  function getFeesAndLimitsExclusionList() external view returns (address[] memory) {
    return feesAndLimitsExcluded;
  }

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

  function getRewardsExclusionList() public view returns (address[] memory) {
    return rewardsExcluded;
  }

  /// @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 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(msg.sender, amount);
    uint256 amountToTransfer = amount - taxAmount - deflationAmount;

    if (isMaxAmountOfTokensSet() && !isFeesAndLimitsExcluded[to]) {
      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(from, amount);
    uint256 amountToTransfer = amount - taxAmount - deflationAmount;

    if (isMaxAmountOfTokensSet() && !isFeesAndLimitsExcluded[to]) {
      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 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);
  }

  /// @notice method for adding a new account to the exclusion list
  /// @param account account to add to the exclusion list
  /// @dev only callable by owner
  function excludeFromFeesAndLimits(
    address account
  ) external onlyOwner {
    if (isFeesAndLimitsExcluded[account]) {
      revert AlreadyExcludedFromFeesAndLimits();
    }
    if (feesAndLimitsExcluded.length >= MAX_EXCLUSION_LIMIT) {
      revert ReachedMaxExclusionLimit();
    }

    isFeesAndLimitsExcluded[account] = true;
    feesAndLimitsExcluded.push(account);

    emit ExcludeFromFeesAndLimits(account);
  }

  /// @notice method for adding a new account to the reflection exclusion list
  /// @param account account to add to the exclusion list
  /// @dev only callable by owner
  function excludeFromRewards(address account) external onlyOwner {
    super._excludeFromRewards(account);
  }

  /// @notice method for removing an account from the fees exclusion list
  /// @param account account to remove from the exclusion list
  /// @dev only callable by owner
  function includeInFeesAndLimits(address account) external onlyOwner() {
    if (!isFeesAndLimitsExcluded[account]) {
      revert AlreadyIncludedInFeesAndLimits();
    }

    for (uint256 i = 0; i < feesAndLimitsExcluded.length; i++) {
      if (feesAndLimitsExcluded[i] == account) {
        feesAndLimitsExcluded[i] = feesAndLimitsExcluded[feesAndLimitsExcluded.length - 1];
        isFeesAndLimitsExcluded[account] = false;
        feesAndLimitsExcluded.pop();
        emit IncludedInFeesAndLimits(account);

        break;
      }
    }
  }

  /// @notice method for removing an account from the reflection exclusion list
  /// @param account account to remove from the exclusion list
  /// @dev only callable by owner
  function includeInRewards(address account) external onlyOwner() {
    super._includeInRewards(account);
  }

  // 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 && !isFeesAndLimitsExcluded[sender]) {
      taxAmount = (amount * taxBPS) / MAX_BPS_AMOUNT;
    }
  }

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

// 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);
    }
}

// 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;
    }
}

// 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;
  }
}

// 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 ERC20 Token with Extended Reflection Mechanism
/// @notice This contract implements ERC20 standards along with an additional reward feature for token holders
abstract contract ReflectiveV3ERC20 is ERC20 {
  // Constants
  uint256 private constant BPS_DIVISOR = 10_000;
  uint256 public constant MAX_REWARDS_EXCLUSION_LIMIT = 100;

  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;

  mapping (address => bool) private _isRewardsExcluded;
  address[] public rewardsExcluded;

  // events
  event ExcludedFromRewards(address indexed account);
  event IncludedInRewards(address indexed account);

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

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

  /// @notice Constructor to initialize the ReflectiveV2ERC20 token
  /// @param name_ The name of the token
  /// @param symbol_ The symbol of the token
  /// @param tokenOwner The address of the token owner
  /// @param totalSupply_ The initial total supply of the token
  /// @param decimalsToSet The number of decimal places for the token
  /// @param tFeeBPS_ The reflection fee in basis points
  /// @param isReflective_ Indicates if the token is reflective
  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_;
  }

  /// @notice Returns the balance of tokens for a specific address
  /// @param account The address to query the balance of
  /// @return The balance of tokens
  function balanceOf(address account) public view override returns (uint256) {
    if (isReflective) {
      if (_isRewardsExcluded[account]) return _tOwned[account];

      return tokenFromReflection(_rOwned[account]);
    } else {
      return super.balanceOf(account);
    }
  }

  /// @notice Transfers tokens from one account to another
  /// @param from The address to transfer tokens from
  /// @param to The address to transfer tokens to
  /// @param value The amount of tokens to transfer
  /// @return A boolean indicating 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 to a specified address
  /// @param to The address to transfer tokens to
  /// @param value The amount of tokens to transfer
  /// @return A boolean indicating 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 Internal function to transfer tokens from one account to another
  /// @param from The address to transfer tokens from
  /// @param to The address to transfer tokens to
  /// @param amount The amount of tokens to transfer
  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal override {
    if (isReflective) {
      LibCommon.validateAddress(from);
      LibCommon.validateAddress(to);
      if (amount == 0) {
        revert ZeroTransferError();
      }

      if (_isRewardsExcluded[from] && !_isRewardsExcluded[to]) {
          _transferFromExcluded(from, to, amount);
      } else if (!_isRewardsExcluded[from] && _isRewardsExcluded[to]) {
          _transferToExcluded(from, to, amount);
      } else if (!_isRewardsExcluded[from] && !_isRewardsExcluded[to]) {
          _transferStandard(from, to, amount);
      } else if (_isRewardsExcluded[from] && _isRewardsExcluded[to]) {
          _transferBothExcluded(from, to, amount);
      } else {
          _transferStandard(from, to, amount);
      }
    } else {
      super._transfer(from, to, amount);
    }
  }

  /// @notice Internal function to burn tokens, disallowed if reflection mechanism is used
  /// @param account The account to burn tokens from
  /// @param value The amount of tokens to burn
  function _burn(address account, uint256 value) internal override {
    if (isReflective) {
      revert BurningNotEnabled();
    } else {
      super._burn(account, value);
    }
  }

  /// @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 the number of tokens from a reflection amount
  /// @param rAmount The reflection amount
  /// @return The number of tokens corresponding to the reflection amount
  function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
    if (rAmount > _rTotal) {
      revert TotalReflectionTooSmall();
    }

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

  /// @notice Excludes an account from receiving rewards
  /// @param account The account to exclude from rewards
  function _excludeFromRewards(
    address account
  ) internal {
    if (!isReflective) {
      revert TokenIsNotReflective();
    }
    if (_isRewardsExcluded[account]) {
      revert AlreadyExcludedFromRewards();
    }
    if (rewardsExcluded.length >= MAX_REWARDS_EXCLUSION_LIMIT) {
      revert ReachedMaxRewardExclusionLimit();
    }

    if(_rOwned[account] > 0) {
        _tOwned[account] = tokenFromReflection(_rOwned[account]);
    }

    _isRewardsExcluded[account] = true;
    rewardsExcluded.push(account);

    emit ExcludedFromRewards(account);
  }

  /// @notice Includes an account to receive rewards
  /// @param account The account to include for rewards
  function _includeInRewards(address account) internal {
    if (!isReflective) {
      revert TokenIsNotReflective();
    }
    if (!_isRewardsExcluded[account]) {
      revert AlreadyIncludedInRewards();
    }

    for (uint256 i = 0; i < rewardsExcluded.length; i++) {
      if (rewardsExcluded[i] == account) {
        rewardsExcluded[i] = rewardsExcluded[rewardsExcluded.length - 1];
        _isRewardsExcluded[account] = false;
        _tOwned[account] = 0;
        rewardsExcluded.pop();
        emit IncludedInRewards(account);

        break;
      }
    }
  }

  /// @notice Transfers a standard amount of tokens with reflection applied
  /// @param sender The address sending the tokens
  /// @param recipient The address receiving the tokens
  /// @param tAmount The total token amount to transfer
  function _transferStandard(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    uint256 tFee = calculateFee(tAmount, sender);
    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 Transfers a token amount from an excluded account
  /// @param sender The address sending the tokens
  /// @param recipient The address receiving the tokens
  /// @param tAmount The total token amount to transfer
  function _transferFromExcluded(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    uint256 tFee = calculateFee(tAmount, sender);
    uint256 tTransferAmount = tAmount - tFee;
    (uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
      tAmount,
      tFee,
      tTransferAmount
    );

    if (tAmount != 0) {
      _rUpdate(sender, recipient, rAmount, rTransferAmount);
      _tOwned[sender] = _tOwned[sender] - (tAmount);

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

  /// @notice Transfers a token amount to an excluded account
  /// @param sender The address sending the tokens
  /// @param recipient The address receiving the tokens
  /// @param tAmount The total token amount to transfer
  function _transferToExcluded(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    uint256 tFee = calculateFee(tAmount, sender);
    uint256 tTransferAmount = tAmount - tFee;
    (uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
      tAmount,
      tFee,
      tTransferAmount
    );

    if (tAmount != 0) {
      _rUpdate(sender, recipient, rAmount, rTransferAmount);
      _tOwned[recipient] = _tOwned[recipient] + (tTransferAmount);

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

  /// @notice Transfers a token amount between two excluded accounts
  /// @param sender The address sending the tokens
  /// @param recipient The address receiving the tokens
  /// @param tAmount The total token amount to transfer
  function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
    uint256 tFee = calculateFee(tAmount, sender);
    uint256 tTransferAmount = tAmount - tFee;
    (uint256 rAmount, uint256 rFee, uint256 rTransferAmount) = _getRValues(
      tAmount,
      tFee,
      tTransferAmount
    );

    if (tAmount != 0) {
      _rUpdate(sender, recipient, rAmount, rTransferAmount);
      _tOwned[sender] = _tOwned[sender] - (tAmount);
      _tOwned[recipient] = _tOwned[recipient] + (tTransferAmount);

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

  /// @notice Reflects the fee to all holders by deducting it from the total reflections
  /// @param rFee The reflection fee amount
  /// @param tFee The token fee amount
  function _reflectFee(uint256 rFee, uint256 tFee) private {
    _rTotal = _rTotal - rFee;
    _tFeeTotal = _tFeeTotal + tFee;
  }

  /// @notice Calculates the reflection fee from a token amount
  /// @param amount The token amount to calculate the fee from
  /// @param sender The address of the sender
  /// @return The calculated fee amount
  function calculateFee(uint256 amount, address sender) private view returns (uint256) {
    if (_isRewardsExcluded[sender]) {
      return 0;
    } else {
      return (amount * tFeeBPS) / BPS_DIVISOR;
    }
  }

  /// @notice Transfers tokens without applying reflection fees
  /// @param from The address to transfer tokens from
  /// @param to The address to transfer tokens to
  /// @param tAmount The total token amount to transfer
  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 Retrieves the reflection values from token values
  /// @param tAmount The token amount
  /// @param tFee The token fee amount
  /// @param tTransferAmount The transfer amount
  /// @return The reflection values (rAmount, rFee, rTransferAmount)
  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 Retrieves the current reflection rate
  /// @return The current reflection rate
  function _getRate() private view returns (uint256) {
    (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
    return rSupply / tSupply;
  }

  /// @notice Retrieves the current reflection and token supplies
  /// @return The current reflection and token supplies
  function _getCurrentSupply() private view returns (uint256, uint256) {
    return (_rTotal, _tTotal());
  }

  /// @notice Updates the reflection balances for a transfer
  /// @param sender The address sending the tokens
  /// @param recipient The address receiving the tokens
  /// @param rSubAmount The amount to be deducted from the sender
  /// @param rTransferAmount The amount to be added to the 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;
  }
}

// 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 {}
}

// 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);
}

// 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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

API
[{"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":"_isBurnable","type":"bool"},{"internalType":"bool","name":"_isDocumentAllowed","type":"bool"},{"internalType":"bool","name":"_isMaxAmountOfTokensSet","type":"bool"},{"internalType":"bool","name":"_isTaxable","type":"bool"},{"internalType":"bool","name":"_isDeflationary","type":"bool"},{"internalType":"bool","name":"_isReflective","type":"bool"}],"internalType":"struct DefiTokenFixedSupply.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[1]","name":"amountParams","type":"uint256[1]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExcludedFromFeesAndLimits","type":"error"},{"inputs":[],"name":"AlreadyExcludedFromRewards","type":"error"},{"inputs":[],"name":"AlreadyIncludedInFeesAndLimits","type":"error"},{"inputs":[],"name":"AlreadyIncludedInRewards","type":"error"},{"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":[{"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":"ReachedMaxExclusionLimit","type":"error"},{"inputs":[],"name":"ReachedMaxRewardExclusionLimit","type":"error"},{"inputs":[],"name":"TokenIsNotDeflationary","type":"error"},{"inputs":[],"name":"TokenIsNotReflective","type":"error"},{"inputs":[],"name":"TokenIsNotTaxable","type":"error"},{"inputs":[],"name":"TotalReflectionTooSmall","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":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromFeesAndLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludedFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInFeesAndLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInRewards","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":"CONTRACT_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EXCLUSION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_REWARDS_EXCLUSION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"account","type":"address"}],"name":"excludeFromFeesAndLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"feesAndLimitsExcluded","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeesAndLimitsExclusionList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsExclusionList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFeesAndLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isFeesAndLimitsExcluded","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":"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":"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":"","type":"uint256"}],"name":"rewardsExcluded","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

6101206040523480156200001257600080fd5b50604051620068f8380380620068f8833981810160405281019062000038919062000f6f565b8989878a8a60008d036200004e5760006200006b565b86600260038110620000655762000064620010c4565b5b60200201515b8a60a001518686816003908162000083919062001334565b50806004908162000095919062001334565b505050600084146200013557620000d38584600a620000b591906200159e565b86620000c29190620015ef565b6200059860201b62001eb11760201c565b837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000101919062001669565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200012e9190620016a1565b6007819055505b600754600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160098190555080151560808115158152505050505050505050620001b5620001a96200070560201b60201c565b6200070d60201b60201c565b8460a001518015620001d55750846000015180620001d4575084608001515b5b806200020c57508460a001511580156200020b5750600082600260038110620002035762000202620010c4565b5b602002015114155b5b1562000244576040517f30a870cc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846040015115620002ce57600081600060018110620002685762000267620010c4565b5b602002015103620002cd57806000600181106200028a5762000289620010c4565b5b60200201516040517f64824b8d000000000000000000000000000000000000000000000000000000008152600401620002c49190620016ed565b60405180910390fd5b5b60128760ff1611156200031a57866040517fca9503910000000000000000000000000000000000000000000000000000000081526004016200031191906200171b565b60405180910390fd5b6200032d858385620007d360201b60201c565b6200034386620008e060201b620020071760201c565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816000600381106200039b576200039a620010c4565b5b602002015160148190555081600160038110620003bd57620003bc620010c4565b5b60200201516015819055508760a0818152505080600060018110620003e757620003e6620010c4565b5b602002015160c0818152505083600d908162000404919062001334565b508573ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508660ff166101008160ff168152505084601260008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff02191690831515021790555060608201518160000160036101000a81548160ff02191690831515021790555060808201518160000160046101000a81548160ff02191690831515021790555060a08201518160000160056101000a81548160ff02191690831515021790555090505083600e90816200051f919062001334565b5080600060018110620005375762000536620010c4565b5b6020020151600f819055503373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161462000588576200058786620008fa60201b60201c565b5b5050505050505050505062001900565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200060a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006019062001799565b60405180910390fd5b6200061e600083836200092360201b60201c565b8060026000828254620006329190620017bb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006e59190620016ed565b60405180910390a362000701600083836200092860201b60201c565b5050565b600033905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008360600151156200082257620007f682620008e060201b620020071760201c565b826000600381106200080d576200080c620010c4565b5b6020020151816200081f9190620017bb565b90505b836080015115620008595782600160038110620008445762000843620010c4565b5b602002015181620008569190620017bb565b90505b8360a00151156200089057826002600381106200087b576200087a620010c4565b5b6020020151816200088d9190620017bb565b90505b6107d0811115620008da57806040517f3e474e0d000000000000000000000000000000000000000000000000000000008152600401620008d19190620016ed565b60405180910390fd5b50505050565b8060601b620008f75763d92e233d6000526004601cfd5b50565b6200090a6200092d60201b60201c565b6200092081620009be60201b620020201760201c565b50565b505050565b505050565b6200093d6200070560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200096362000a5460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b39062001846565b60405180910390fd5b565b620009ce6200092d60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3790620018de565b60405180910390fd5b62000a51816200070d60201b60201c565b50565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000ae78262000a9c565b810181811067ffffffffffffffff8211171562000b095762000b0862000aad565b5b80604052505050565b600062000b1e62000a7e565b905062000b2c828262000adc565b919050565b600067ffffffffffffffff82111562000b4f5762000b4e62000aad565b5b62000b5a8262000a9c565b9050602081019050919050565b60005b8381101562000b8757808201518184015260208101905062000b6a565b60008484015250505050565b600062000baa62000ba48462000b31565b62000b12565b90508281526020810184848401111562000bc95762000bc862000a97565b5b62000bd684828562000b67565b509392505050565b600082601f83011262000bf65762000bf562000a92565b5b815162000c0884826020860162000b93565b91505092915050565b6000819050919050565b62000c268162000c11565b811462000c3257600080fd5b50565b60008151905062000c468162000c1b565b92915050565b600060ff82169050919050565b62000c648162000c4c565b811462000c7057600080fd5b50565b60008151905062000c848162000c59565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cb78262000c8a565b9050919050565b62000cc98162000caa565b811462000cd557600080fd5b50565b60008151905062000ce98162000cbe565b92915050565b600080fd5b60008115159050919050565b62000d0b8162000cf4565b811462000d1757600080fd5b50565b60008151905062000d2b8162000d00565b92915050565b600060c0828403121562000d4a5762000d4962000cef565b5b62000d5660c062000b12565b9050600062000d688482850162000d1a565b600083015250602062000d7e8482850162000d1a565b602083015250604062000d948482850162000d1a565b604083015250606062000daa8482850162000d1a565b606083015250608062000dc08482850162000d1a565b60808301525060a062000dd68482850162000d1a565b60a08301525092915050565b600067ffffffffffffffff82111562000e005762000dff62000aad565b5b602082029050919050565b600080fd5b600062000e2762000e218462000de2565b62000b12565b9050806020840283018581111562000e445762000e4362000e0b565b5b835b8181101562000e71578062000e5c888262000c35565b84526020840193505060208101905062000e46565b5050509392505050565b600082601f83011262000e935762000e9262000a92565b5b600362000ea284828562000e10565b91505092915050565b600067ffffffffffffffff82111562000ec95762000ec862000aad565b5b602082029050919050565b600062000eeb62000ee58462000eab565b62000b12565b9050806020840283018581111562000f085762000f0762000e0b565b5b835b8181101562000f35578062000f20888262000c35565b84526020840193505060208101905062000f0a565b5050509392505050565b600082601f83011262000f575762000f5662000a92565b5b600162000f6684828562000ed4565b91505092915050565b6000806000806000806000806000806102208b8d03121562000f965762000f9562000a88565b5b60008b015167ffffffffffffffff81111562000fb75762000fb662000a8d565b5b62000fc58d828e0162000bde565b9a505060208b015167ffffffffffffffff81111562000fe95762000fe862000a8d565b5b62000ff78d828e0162000bde565b99505060406200100a8d828e0162000c35565b98505060606200101d8d828e0162000c73565b9750506080620010308d828e0162000cd8565b96505060a0620010438d828e0162000d31565b9550506101608b015167ffffffffffffffff81111562001068576200106762000a8d565b5b620010768d828e0162000bde565b9450506101806200108a8d828e0162000cd8565b9350506101a06200109e8d828e0162000e7b565b925050610200620010b28d828e0162000f3f565b9150509295989b9194979a5092959850565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200114657607f821691505b6020821081036200115c576200115b620010fe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620011c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001187565b620011d2868362001187565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620012156200120f620012098462000c11565b620011ea565b62000c11565b9050919050565b6000819050919050565b6200123183620011f4565b6200124962001240826200121c565b84845462001194565b825550505050565b600090565b6200126062001251565b6200126d81848462001226565b505050565b5b8181101562001295576200128960008262001256565b60018101905062001273565b5050565b601f821115620012e457620012ae8162001162565b620012b98462001177565b81016020851015620012c9578190505b620012e1620012d88562001177565b83018262001272565b50505b505050565b600082821c905092915050565b60006200130960001984600802620012e9565b1980831691505092915050565b6000620013248383620012f6565b9150826002028217905092915050565b6200133f82620010f3565b67ffffffffffffffff8111156200135b576200135a62000aad565b5b6200136782546200112d565b6200137482828562001299565b600060209050601f831160018114620013ac576000841562001397578287015190505b620013a3858262001316565b86555062001413565b601f198416620013bc8662001162565b60005b82811015620013e657848901518255600182019150602085019450602081019050620013bf565b8683101562001406578489015162001402601f891682620012f6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620014a9578086048111156200148157620014806200141b565b5b6001851615620014915780820291505b8081029050620014a1856200144a565b945062001461565b94509492505050565b600082620014c4576001905062001597565b81620014d4576000905062001597565b8160018114620014ed5760028114620014f8576200152e565b600191505062001597565b60ff8411156200150d576200150c6200141b565b5b8360020a9150848211156200152757620015266200141b565b5b5062001597565b5060208310610133831016604e8410600b8410161715620015685782820a9050838111156200156257620015616200141b565b5b62001597565b62001577848484600162001457565b925090508184048111156200159157620015906200141b565b5b81810290505b9392505050565b6000620015ab8262000c11565b9150620015b88362000c4c565b9250620015e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620014b2565b905092915050565b6000620015fc8262000c11565b9150620016098362000c11565b9250828202620016198162000c11565b915082820484148315176200163357620016326200141b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620016768262000c11565b9150620016838362000c11565b9250826200169657620016956200163a565b5b828206905092915050565b6000620016ae8262000c11565b9150620016bb8362000c11565b9250828203905081811115620016d657620016d56200141b565b5b92915050565b620016e78162000c11565b82525050565b6000602082019050620017046000830184620016dc565b92915050565b620017158162000c4c565b82525050565b60006020820190506200173260008301846200170a565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001781601f8362001738565b91506200178e8262001749565b602082019050919050565b60006020820190508181036000830152620017b48162001772565b9050919050565b6000620017c88262000c11565b9150620017d58362000c11565b9250828201905080821115620017f057620017ef6200141b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200182e60208362001738565b91506200183b82620017f6565b602082019050919050565b6000602082019050818103600083015262001861816200181f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620018c660268362001738565b9150620018d38262001868565b604082019050919050565b60006020820190508181036000830152620018f981620018b7565b9050919050565b60805160a05160c05160e05161010051614f896200196f600039600061118101526000611469015260006115cd015260006111a70152600081816112f4015281816122f40152818161274b0152818161281f0152818161295701528181612ca101526134510152614f896000f3fe608060405234801561001057600080fd5b506004361061030b5760003560e01c8063715018a61161019d578063af465a27116100e9578063dd62ed3e116100a2578063f820f5671161007c578063f820f56714610950578063f8afaba51461096e578063f91f825d1461098a578063ffa1ad74146109a65761030b565b8063dd62ed3e146108e8578063f19c4e3b14610918578063f2fde38b146109345761030b565b8063af465a2714610838578063b609995e14610856578063b7bda68f14610872578063bfcf735514610890578063d48e4127146108ae578063d8f67851146108cc5761030b565b806395d89b4111610156578063a457c2d711610130578063a457c2d71461079e578063a476df61146107ce578063a9059cbb146107ea578063a9d866851461081a5761030b565b806395d89b41146107445780639703a19d14610762578063a32f6976146107805761030b565b8063715018a6146106a4578063883356d9146106ae5780638da5cb5b146106cc5780638dac7191146106ea5780638e8c10a21461070857806393fbda99146107265761030b565b80632fa782eb1161025c5780634a88266c116102155780635514c832116101ef5780635514c8321461061a5780635a3990ce14610638578063614d08f81461065657806370a08231146106745761030b565b80634a88266c146105ae5780634ac0bc32146105de578063542e9667146105fc5761030b565b80632fa782eb146104ea578063313ce56714610508578063378dc3dc14610526578063395093511461054457806342966c681461057457806349a602db146105905761030b565b8063111e0376116102c957806323b872dd116102a357806323b872dd1461043c57806323bbbd6a1461046c5780632d8381191461049c5780632e0ee48e146104cc5761030b565b8063111e0376146103e4578063154af8e71461040057806318160ddd1461041e5761030b565b8062af2d9d1461031057806302252c4d14610340578063044ab74e1461035c57806306fdde031461037a578063095ea7b3146103985780630bd92756146103c8575b600080fd5b61032a60048036038101906103259190613e69565b6109c4565b6040516103379190613ed7565b60405180910390f35b61035a60048036038101906103559190613e69565b610a03565b005b610364610ac5565b6040516103719190613f82565b60405180910390f35b610382610b53565b60405161038f9190613f82565b60405180910390f35b6103b260048036038101906103ad9190613fd0565b610be5565b6040516103bf919061402b565b60405180910390f35b6103e260048036038101906103dd9190614046565b610c08565b005b6103fe60048036038101906103f99190614046565b610ebe565b005b610408610ed2565b6040516104159190614131565b60405180910390f35b610426610f60565b6040516104339190614162565b60405180910390f35b6104566004803603810190610451919061417d565b610f6a565b604051610463919061402b565b60405180910390f35b61048660048036038101906104819190613e69565b6110c0565b6040516104939190613ed7565b60405180910390f35b6104b660048036038101906104b19190613e69565b6110ff565b6040516104c39190614162565b60405180910390f35b6104d461115d565b6040516104e1919061402b565b60405180910390f35b6104f2611177565b6040516104ff9190614162565b60405180910390f35b61051061117d565b60405161051d91906141ec565b60405180910390f35b61052e6111a5565b60405161053b9190614162565b60405180910390f35b61055e60048036038101906105599190613fd0565b6111c9565b60405161056b919061402b565b60405180910390f35b61058e60048036038101906105899190613e69565b611200565b005b610598611253565b6040516105a59190614162565b60405180910390f35b6105c860048036038101906105c39190614046565b611258565b6040516105d5919061402b565b60405180910390f35b6105e6611278565b6040516105f3919061402b565b60405180910390f35b610604611292565b6040516106119190614162565b60405180910390f35b610622611298565b60405161062f9190614162565b60405180910390f35b61064061129d565b60405161064d919061402b565b60405180910390f35b61065e6112b7565b60405161066b9190613f82565b60405180910390f35b61068e60048036038101906106899190614046565b6112f0565b60405161069b9190614162565b60405180910390f35b6106ac611411565b005b6106b6611423565b6040516106c3919061402b565b60405180910390f35b6106d461143d565b6040516106e19190613ed7565b60405180910390f35b6106f2611467565b6040516106ff9190613ed7565b60405180910390f35b61071061148b565b60405161071d919061402b565b60405180910390f35b61072e6114a5565b60405161073b9190614131565b60405180910390f35b61074c611533565b6040516107599190613f82565b60405180910390f35b61076a6115c5565b6040516107779190614162565b60405180910390f35b6107886115cb565b6040516107959190614162565b60405180910390f35b6107b860048036038101906107b39190613fd0565b6115ef565b6040516107c5919061402b565b60405180910390f35b6107e860048036038101906107e3919061433c565b611666565b005b61080460048036038101906107ff9190613fd0565b6116f6565b604051610811919061402b565b60405180910390f35b61082261184a565b60405161082f9190613f82565b60405180910390f35b6108406118d8565b60405161084d9190614162565b60405180910390f35b610870600480360381019061086b9190614046565b6118e7565b005b61087a6118fb565b6040516108879190613ed7565b60405180910390f35b610898611921565b6040516108a5919061439e565b60405180910390f35b6108b6611948565b6040516108c39190614162565b60405180910390f35b6108e660048036038101906108e19190613e69565b61194e565b005b61090260048036038101906108fd91906143b9565b611a32565b60405161090f9190614162565b60405180910390f35b610932600480360381019061092d9190613fd0565b611ab9565b005b61094e60048036038101906109499190614046565b611bff565b005b610958611c13565b604051610965919061402b565b60405180910390f35b61098860048036038101906109839190614046565b611c2d565b005b6109a4600480360381019061099f9190613e69565b611df9565b005b6109ae611e78565b6040516109bb9190613f82565b60405180910390f35b601181815481106109d457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0b6120a3565b610a1361129d565b610a49576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f548111610a84576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610aba9190614162565b60405180910390a150565b600e8054610ad290614428565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90614428565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b606060038054610b6290614428565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8e90614428565b8015610bdb5780601f10610bb057610100808354040283529160200191610bdb565b820191906000526020600020905b815481529060010190602001808311610bbe57829003601f168201915b5050505050905090565b600080610bf0612121565b9050610bfd818585612129565b600191505092915050565b610c106120a3565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c93576040517fed68fdd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b601180549050811015610eba578173ffffffffffffffffffffffffffffffffffffffff1660118281548110610cce57610ccd614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ea75760116001601180549050610d2891906144b7565b81548110610d3957610d38614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660118281548110610d7857610d77614459565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011805480610e2a57610e296144eb565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f98bab529cae32acf2e47348750c372f438f475b15be0136f55544297ef96bd2c60405160405180910390a2610eba565b8080610eb29061451a565b915050610c96565b5050565b610ec66120a3565b610ecf816122f2565b50565b6060600b805480602002602001604051908101604052809291908181526020018280548015610f5657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610f0c575b5050505050905090565b6000600254905090565b600080610f7785846125e1565b90506000610f8586856126c2565b90506000818386610f9691906144b7565b610fa091906144b7565b9050610faa61129d565b80156110005750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561106057600f5481611012886112f0565b61101c9190614562565b111561105f57856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016110569190613ed7565b60405180910390fd5b5b600083146110965761109587601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612749565b5b600082146110a9576110a8878361281d565b5b6110b4878783612883565b93505050509392505050565b600b81815481106110d057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060075482111561113d576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111476128b2565b9050808361115591906145c5565b915050919050565b6000601260000160059054906101000a900460ff16905090565b60145481565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806111d4612121565b90506111f58185856111e68589611a32565b6111f09190614562565b612129565b600191505092915050565b6112086120a3565b611210611423565b611246576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611250338261281d565b50565b606481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601260000160039054906101000a900460ff16905090565b60155481565b606481565b6000601260000160029054906101000a900460ff16905090565b6040518060400160405280601481526020017f44656669546f6b656e4669786564537570706c7900000000000000000000000081525081565b60007f00000000000000000000000000000000000000000000000000000000000000001561140057600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113b157600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061140c565b6113f9600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ff565b905061140c565b611409826128d6565b90505b919050565b6114196120a3565b61142161291e565b565b6000601260000160009054906101000a900460ff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601260000160049054906101000a900460ff16905090565b6060601180548060200260200160405190810160405280929190818152602001828054801561152957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116114df575b5050505050905090565b60606004805461154290614428565b80601f016020809104026020016040519081016040528092919081815260200182805461156e90614428565b80156115bb5780601f10611590576101008083540402835291602001916115bb565b820191906000526020600020905b81548152906001019060200180831161159e57829003601f168201915b5050505050905090565b60095481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806115fa612121565b905060006116088286611a32565b90508381101561164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614668565b60405180910390fd5b61165a8286868403612129565b60019250505092915050565b61166e6120a3565b611676611c13565b6116ac576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e90816116bb9190614834565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516116eb9190613f82565b60405180910390a150565b60008061170333846125e1565b9050600061171133856126c2565b9050600081838661172291906144b7565b61172c91906144b7565b905061173661129d565b801561178c5750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117ec57600f548161179e886112f0565b6117a89190614562565b11156117eb57856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016117e29190613ed7565b60405180910390fd5b5b600083146118225761182133601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612749565b5b6000821461183557611834338361281d565b5b61183f8682612932565b935050505092915050565b600d805461185790614428565b80601f016020809104026020016040519081016040528092919081815260200182805461188390614428565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b505050505081565b60006118e2610f60565b905090565b6118ef6120a3565b6118f881612955565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7fd309adf9916831da4fa176663947be0e9c745ad6645bb47e804e4c488a7f1b4e60001b81565b600f5481565b6119566120a3565b61195e61148b565b611994576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816009546015546119a79190614562565b6119b19190614562565b90506107d08111156119fa57806040517f3e474e0d0000000000000000000000000000000000000000000000000000000081526004016119f19190614162565b60405180910390fd5b81601581905550817fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec360405160405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ac16120a3565b611ac9611278565b611aff576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601554611b129190614562565b611b1c9190614562565b90506107d0811115611b6557806040517f3e474e0d000000000000000000000000000000000000000000000000000000008152600401611b5c9190614162565b60405180910390fd5b611b6e83612007565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601481905550818373ffffffffffffffffffffffffffffffffffffffff167facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a60405160405180910390a3505050565b611c076120a3565b611c1081612020565b50565b6000601260000160019054906101000a900460ff16905090565b611c356120a3565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cb9576040517ff20d03d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606460118054905010611cf8576040517fc92787fc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f94f5dc0e322a0a7c5af09958609aeb2384692e22922827ff9595db226c01dfa560405160405180910390a250565b611e016120a3565b611e0961115d565b611e3f576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4881612c9f565b807f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e360405160405180910390a250565b6040518060400160405280601581526020017f646566695f765f315f66697865645f737570706c79000000000000000000000081525081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790614952565b60405180910390fd5b611f2c60008383612d00565b8060026000828254611f3e9190614562565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fef9190614162565b60405180910390a361200360008383612d05565b5050565b8060601b61201d5763d92e233d6000526004601cfd5b50565b6120286120a3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e906149e4565b60405180910390fd5b6120a081612d0a565b50565b6120ab612121565b73ffffffffffffffffffffffffffffffffffffffff166120c961143d565b73ffffffffffffffffffffffffffffffffffffffff161461211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690614a50565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90614ae2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90614b74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122e59190614162565b60405180910390a3505050565b7f0000000000000000000000000000000000000000000000000000000000000000612349576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123cd576040517fe2f18de900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600b805490501061240c576040517ff266e36200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156124e05761249c600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ff565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f743dcd4a012534912a3350f3ed8937d3b4f0771c62892ed15e4373dc2c5f584a60405160405180910390a250565b600080601454141580156126435750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156126995750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126bc57612710601454836126af9190614b94565b6126b991906145c5565b90505b92915050565b600080601554141580156127205750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561274357612710601554836127369190614b94565b61274091906145c5565b90505b92915050565b7f00000000000000000000000000000000000000000000000000000000000000001561280c57600081146128075760006127816128b2565b9050600081836127919190614b94565b905061279f85858384612dd0565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127fc9190614162565b60405180910390a350505b612818565b612817838383612f80565b5b505050565b7f000000000000000000000000000000000000000000000000000000000000000015612875576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287f82826131f6565b5050565b60008061288e612121565b905061289b8582856133c3565b6128a685858561344f565b60019150509392505050565b60008060006128bf6137c6565b9150915080826128cf91906145c5565b9250505090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6129266120a3565b6129306000612d0a565b565b60008061293d612121565b905061294a81858561344f565b600191505092915050565b7f00000000000000000000000000000000000000000000000000000000000000006129ac576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a2f576040517f1214f5e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b80549050811015612c9b578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612a6a57612a69614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612c8857600b6001600b80549050612ac491906144b7565b81548110612ad557612ad4614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b8281548110612b1457612b13614459565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b805480612c0b57612c0a6144eb565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f9ccbe1146da67d2d78acc466156a4860eecd4209be8b75a9370e8bf3e949ed1f60405160405180910390a2612c9b565b8080612c939061451a565b915050612a32565b5050565b7f0000000000000000000000000000000000000000000000000000000000000000612cf6576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060098190555050565b505050565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612e5d578381846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612e5493929190614bd6565b60405180910390fd5b82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ea891906144b7565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f369190614562565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe690614c7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590614d11565b60405180910390fd5b613069838383612d00565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156130ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e690614da3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131dd9190614162565b60405180910390a36131f0848484612d05565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325c90614e35565b60405180910390fd5b61327182600083612d00565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ee90614ec7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133aa9190614162565b60405180910390a36133be83600084612d05565b505050565b60006133cf8484611a32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114613449578181101561343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614f33565b60405180910390fd5b6134488484848403612129565b5b50505050565b7f0000000000000000000000000000000000000000000000000000000000000000156137b55761347e83612007565b61348782612007565b600081036134c1576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135645750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613579576135748383836137dc565b6137b0565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561361c5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136315761362c83838361392c565b6137af565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136d55750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136ea576136e5838383613a7c565b6137ae565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561378c5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137a15761379c838383613b3e565b6137ad565b6137ac838383613a7c565b5b5b5b5b6137c1565b6137c0838383612f80565b5b505050565b6000806007546137d46118d8565b915091509091565b60006137e88285613d1c565b9050600081836137f891906144b7565b9050600080600061380a868686613d9d565b925092509250600086146139225761382488888584612dd0565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461386f91906144b7565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138bc8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef886040516139199190614162565b60405180910390a35b5050505050505050565b60006139388285613d1c565b90506000818361394891906144b7565b9050600080600061395a868686613d9d565b92509250925060008614613a725761397488888584612dd0565b83600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139bf9190614562565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a0c8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613a699190614162565b60405180910390a35b5050505050505050565b6000613a888285613d1c565b905060008183613a9891906144b7565b90506000806000613aaa868686613d9d565b92509250925060008614613b3457613ac488888584612dd0565b613ace8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613b2b9190614162565b60405180910390a35b5050505050505050565b6000613b4a8285613d1c565b905060008183613b5a91906144b7565b90506000806000613b6c868686613d9d565b92509250925060008614613d1257613b8688888584612dd0565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bd191906144b7565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5f9190614562565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cac8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613d099190614162565b60405180910390a35b5050505050505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613d795760009050613d97565b61271060095484613d8a9190614b94565b613d9491906145c5565b90505b92915050565b600080600080613dab6128b2565b905060008188613dbb9190614b94565b905060008288613dcb9190614b94565b905060008388613ddb9190614b94565b90508282829650965096505050505093509350939050565b81600754613e0191906144b7565b60078190555080600854613e159190614562565b6008819055505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613e4681613e33565b8114613e5157600080fd5b50565b600081359050613e6381613e3d565b92915050565b600060208284031215613e7f57613e7e613e29565b5b6000613e8d84828501613e54565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ec182613e96565b9050919050565b613ed181613eb6565b82525050565b6000602082019050613eec6000830184613ec8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f2c578082015181840152602081019050613f11565b60008484015250505050565b6000601f19601f8301169050919050565b6000613f5482613ef2565b613f5e8185613efd565b9350613f6e818560208601613f0e565b613f7781613f38565b840191505092915050565b60006020820190508181036000830152613f9c8184613f49565b905092915050565b613fad81613eb6565b8114613fb857600080fd5b50565b600081359050613fca81613fa4565b92915050565b60008060408385031215613fe757613fe6613e29565b5b6000613ff585828601613fbb565b925050602061400685828601613e54565b9150509250929050565b60008115159050919050565b61402581614010565b82525050565b6000602082019050614040600083018461401c565b92915050565b60006020828403121561405c5761405b613e29565b5b600061406a84828501613fbb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140a881613eb6565b82525050565b60006140ba838361409f565b60208301905092915050565b6000602082019050919050565b60006140de82614073565b6140e8818561407e565b93506140f38361408f565b8060005b8381101561412457815161410b88826140ae565b9750614116836140c6565b9250506001810190506140f7565b5085935050505092915050565b6000602082019050818103600083015261414b81846140d3565b905092915050565b61415c81613e33565b82525050565b60006020820190506141776000830184614153565b92915050565b60008060006060848603121561419657614195613e29565b5b60006141a486828701613fbb565b93505060206141b586828701613fbb565b92505060406141c686828701613e54565b9150509250925092565b600060ff82169050919050565b6141e6816141d0565b82525050565b600060208201905061420160008301846141dd565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61424982613f38565b810181811067ffffffffffffffff8211171561426857614267614211565b5b80604052505050565b600061427b613e1f565b90506142878282614240565b919050565b600067ffffffffffffffff8211156142a7576142a6614211565b5b6142b082613f38565b9050602081019050919050565b82818337600083830152505050565b60006142df6142da8461428c565b614271565b9050828152602081018484840111156142fb576142fa61420c565b5b6143068482856142bd565b509392505050565b600082601f83011261432357614322614207565b5b81356143338482602086016142cc565b91505092915050565b60006020828403121561435257614351613e29565b5b600082013567ffffffffffffffff8111156143705761436f613e2e565b5b61437c8482850161430e565b91505092915050565b6000819050919050565b61439881614385565b82525050565b60006020820190506143b3600083018461438f565b92915050565b600080604083850312156143d0576143cf613e29565b5b60006143de85828601613fbb565b92505060206143ef85828601613fbb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061444057607f821691505b602082108103614453576144526143f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c282613e33565b91506144cd83613e33565b92508282039050818111156144e5576144e4614488565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061452582613e33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361455757614556614488565b5b600182019050919050565b600061456d82613e33565b915061457883613e33565b92508282019050808211156145905761458f614488565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145d082613e33565b91506145db83613e33565b9250826145eb576145ea614596565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614652602583613efd565b915061465d826145f6565b604082019050919050565b6000602082019050818103600083015261468181614645565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146ad565b6146f486836146ad565b95508019841693508086168417925050509392505050565b6000819050919050565b600061473161472c61472784613e33565b61470c565b613e33565b9050919050565b6000819050919050565b61474b83614716565b61475f61475782614738565b8484546146ba565b825550505050565b600090565b614774614767565b61477f818484614742565b505050565b5b818110156147a35761479860008261476c565b600181019050614785565b5050565b601f8211156147e8576147b981614688565b6147c28461469d565b810160208510156147d1578190505b6147e56147dd8561469d565b830182614784565b50505b505050565b600082821c905092915050565b600061480b600019846008026147ed565b1980831691505092915050565b600061482483836147fa565b9150826002028217905092915050565b61483d82613ef2565b67ffffffffffffffff81111561485657614855614211565b5b6148608254614428565b61486b8282856147a7565b600060209050601f83116001811461489e576000841561488c578287015190505b6148968582614818565b8655506148fe565b601f1984166148ac86614688565b60005b828110156148d4578489015182556001820191506020850194506020810190506148af565b868310156148f157848901516148ed601f8916826147fa565b8355505b6001600288020188555050505b505050505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061493c601f83613efd565b915061494782614906565b602082019050919050565b6000602082019050818103600083015261496b8161492f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149ce602683613efd565b91506149d982614972565b604082019050919050565b600060208201905081810360008301526149fd816149c1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a3a602083613efd565b9150614a4582614a04565b602082019050919050565b60006020820190508181036000830152614a6981614a2d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614acc602483613efd565b9150614ad782614a70565b604082019050919050565b60006020820190508181036000830152614afb81614abf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b5e602283613efd565b9150614b6982614b02565b604082019050919050565b60006020820190508181036000830152614b8d81614b51565b9050919050565b6000614b9f82613e33565b9150614baa83613e33565b9250828202614bb881613e33565b91508282048414831517614bcf57614bce614488565b5b5092915050565b6000606082019050614beb6000830186613ec8565b614bf86020830185614153565b614c056040830184614153565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c69602583613efd565b9150614c7482614c0d565b604082019050919050565b60006020820190508181036000830152614c9881614c5c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614cfb602383613efd565b9150614d0682614c9f565b604082019050919050565b60006020820190508181036000830152614d2a81614cee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602683613efd565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e1f602183613efd565b9150614e2a82614dc3565b604082019050919050565b60006020820190508181036000830152614e4e81614e12565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb1602283613efd565b9150614ebc82614e55565b604082019050919050565b60006020820190508181036000830152614ee081614ea4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f1d601d83613efd565b9150614f2882614ee7565b602082019050919050565b60006020820190508181036000830152614f4c81614f10565b905091905056fea2646970667358221220969e7bff446b265540cabedb631f23b7910df11073b226666c5e34c88dcb304e64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000041cdb4000000000000000000000000000000000000000000000000000000000000000120000000000000000000000009013ea41be658026b23937a52912d01640fd736600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000009013ea41be658026b23937a52912d01640fd7366000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a6f64790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a4f4459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030b5760003560e01c8063715018a61161019d578063af465a27116100e9578063dd62ed3e116100a2578063f820f5671161007c578063f820f56714610950578063f8afaba51461096e578063f91f825d1461098a578063ffa1ad74146109a65761030b565b8063dd62ed3e146108e8578063f19c4e3b14610918578063f2fde38b146109345761030b565b8063af465a2714610838578063b609995e14610856578063b7bda68f14610872578063bfcf735514610890578063d48e4127146108ae578063d8f67851146108cc5761030b565b806395d89b4111610156578063a457c2d711610130578063a457c2d71461079e578063a476df61146107ce578063a9059cbb146107ea578063a9d866851461081a5761030b565b806395d89b41146107445780639703a19d14610762578063a32f6976146107805761030b565b8063715018a6146106a4578063883356d9146106ae5780638da5cb5b146106cc5780638dac7191146106ea5780638e8c10a21461070857806393fbda99146107265761030b565b80632fa782eb1161025c5780634a88266c116102155780635514c832116101ef5780635514c8321461061a5780635a3990ce14610638578063614d08f81461065657806370a08231146106745761030b565b80634a88266c146105ae5780634ac0bc32146105de578063542e9667146105fc5761030b565b80632fa782eb146104ea578063313ce56714610508578063378dc3dc14610526578063395093511461054457806342966c681461057457806349a602db146105905761030b565b8063111e0376116102c957806323b872dd116102a357806323b872dd1461043c57806323bbbd6a1461046c5780632d8381191461049c5780632e0ee48e146104cc5761030b565b8063111e0376146103e4578063154af8e71461040057806318160ddd1461041e5761030b565b8062af2d9d1461031057806302252c4d14610340578063044ab74e1461035c57806306fdde031461037a578063095ea7b3146103985780630bd92756146103c8575b600080fd5b61032a60048036038101906103259190613e69565b6109c4565b6040516103379190613ed7565b60405180910390f35b61035a60048036038101906103559190613e69565b610a03565b005b610364610ac5565b6040516103719190613f82565b60405180910390f35b610382610b53565b60405161038f9190613f82565b60405180910390f35b6103b260048036038101906103ad9190613fd0565b610be5565b6040516103bf919061402b565b60405180910390f35b6103e260048036038101906103dd9190614046565b610c08565b005b6103fe60048036038101906103f99190614046565b610ebe565b005b610408610ed2565b6040516104159190614131565b60405180910390f35b610426610f60565b6040516104339190614162565b60405180910390f35b6104566004803603810190610451919061417d565b610f6a565b604051610463919061402b565b60405180910390f35b61048660048036038101906104819190613e69565b6110c0565b6040516104939190613ed7565b60405180910390f35b6104b660048036038101906104b19190613e69565b6110ff565b6040516104c39190614162565b60405180910390f35b6104d461115d565b6040516104e1919061402b565b60405180910390f35b6104f2611177565b6040516104ff9190614162565b60405180910390f35b61051061117d565b60405161051d91906141ec565b60405180910390f35b61052e6111a5565b60405161053b9190614162565b60405180910390f35b61055e60048036038101906105599190613fd0565b6111c9565b60405161056b919061402b565b60405180910390f35b61058e60048036038101906105899190613e69565b611200565b005b610598611253565b6040516105a59190614162565b60405180910390f35b6105c860048036038101906105c39190614046565b611258565b6040516105d5919061402b565b60405180910390f35b6105e6611278565b6040516105f3919061402b565b60405180910390f35b610604611292565b6040516106119190614162565b60405180910390f35b610622611298565b60405161062f9190614162565b60405180910390f35b61064061129d565b60405161064d919061402b565b60405180910390f35b61065e6112b7565b60405161066b9190613f82565b60405180910390f35b61068e60048036038101906106899190614046565b6112f0565b60405161069b9190614162565b60405180910390f35b6106ac611411565b005b6106b6611423565b6040516106c3919061402b565b60405180910390f35b6106d461143d565b6040516106e19190613ed7565b60405180910390f35b6106f2611467565b6040516106ff9190613ed7565b60405180910390f35b61071061148b565b60405161071d919061402b565b60405180910390f35b61072e6114a5565b60405161073b9190614131565b60405180910390f35b61074c611533565b6040516107599190613f82565b60405180910390f35b61076a6115c5565b6040516107779190614162565b60405180910390f35b6107886115cb565b6040516107959190614162565b60405180910390f35b6107b860048036038101906107b39190613fd0565b6115ef565b6040516107c5919061402b565b60405180910390f35b6107e860048036038101906107e3919061433c565b611666565b005b61080460048036038101906107ff9190613fd0565b6116f6565b604051610811919061402b565b60405180910390f35b61082261184a565b60405161082f9190613f82565b60405180910390f35b6108406118d8565b60405161084d9190614162565b60405180910390f35b610870600480360381019061086b9190614046565b6118e7565b005b61087a6118fb565b6040516108879190613ed7565b60405180910390f35b610898611921565b6040516108a5919061439e565b60405180910390f35b6108b6611948565b6040516108c39190614162565b60405180910390f35b6108e660048036038101906108e19190613e69565b61194e565b005b61090260048036038101906108fd91906143b9565b611a32565b60405161090f9190614162565b60405180910390f35b610932600480360381019061092d9190613fd0565b611ab9565b005b61094e60048036038101906109499190614046565b611bff565b005b610958611c13565b604051610965919061402b565b60405180910390f35b61098860048036038101906109839190614046565b611c2d565b005b6109a4600480360381019061099f9190613e69565b611df9565b005b6109ae611e78565b6040516109bb9190613f82565b60405180910390f35b601181815481106109d457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0b6120a3565b610a1361129d565b610a49576040517f6273340f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f548111610a84576040517fa43d2d7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f819055507f2905481c6fd1a037492016c4760435a52203d82a6f34dc3de40f464c1bf42d5981604051610aba9190614162565b60405180910390a150565b600e8054610ad290614428565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90614428565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b606060038054610b6290614428565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8e90614428565b8015610bdb5780601f10610bb057610100808354040283529160200191610bdb565b820191906000526020600020905b815481529060010190602001808311610bbe57829003601f168201915b5050505050905090565b600080610bf0612121565b9050610bfd818585612129565b600191505092915050565b610c106120a3565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c93576040517fed68fdd600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b601180549050811015610eba578173ffffffffffffffffffffffffffffffffffffffff1660118281548110610cce57610ccd614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ea75760116001601180549050610d2891906144b7565b81548110610d3957610d38614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660118281548110610d7857610d77614459565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011805480610e2a57610e296144eb565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f98bab529cae32acf2e47348750c372f438f475b15be0136f55544297ef96bd2c60405160405180910390a2610eba565b8080610eb29061451a565b915050610c96565b5050565b610ec66120a3565b610ecf816122f2565b50565b6060600b805480602002602001604051908101604052809291908181526020018280548015610f5657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610f0c575b5050505050905090565b6000600254905090565b600080610f7785846125e1565b90506000610f8586856126c2565b90506000818386610f9691906144b7565b610fa091906144b7565b9050610faa61129d565b80156110005750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561106057600f5481611012886112f0565b61101c9190614562565b111561105f57856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016110569190613ed7565b60405180910390fd5b5b600083146110965761109587601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612749565b5b600082146110a9576110a8878361281d565b5b6110b4878783612883565b93505050509392505050565b600b81815481106110d057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060075482111561113d576040517fc91fa8bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111476128b2565b9050808361115591906145c5565b915050919050565b6000601260000160059054906101000a900460ff16905090565b60145481565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b7f00000000000000000000000000000000000000000000000000000000041cdb4081565b6000806111d4612121565b90506111f58185856111e68589611a32565b6111f09190614562565b612129565b600191505092915050565b6112086120a3565b611210611423565b611246576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611250338261281d565b50565b606481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601260000160039054906101000a900460ff16905090565b60155481565b606481565b6000601260000160029054906101000a900460ff16905090565b6040518060400160405280601481526020017f44656669546f6b656e4669786564537570706c7900000000000000000000000081525081565b60007f00000000000000000000000000000000000000000000000000000000000000001561140057600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113b157600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061140c565b6113f9600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ff565b905061140c565b611409826128d6565b90505b919050565b6114196120a3565b61142161291e565b565b6000601260000160009054906101000a900460ff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000009013ea41be658026b23937a52912d01640fd736681565b6000601260000160049054906101000a900460ff16905090565b6060601180548060200260200160405190810160405280929190818152602001828054801561152957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116114df575b5050505050905090565b60606004805461154290614428565b80601f016020809104026020016040519081016040528092919081815260200182805461156e90614428565b80156115bb5780601f10611590576101008083540402835291602001916115bb565b820191906000526020600020905b81548152906001019060200180831161159e57829003601f168201915b5050505050905090565b60095481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806115fa612121565b905060006116088286611a32565b90508381101561164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614668565b60405180910390fd5b61165a8286868403612129565b60019250505092915050565b61166e6120a3565b611676611c13565b6116ac576040517f70a43fce00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e90816116bb9190614834565b507f4456a0b562609d67398ddb488f136db285cd3c92343e0a7ba684925669237ade816040516116eb9190613f82565b60405180910390a150565b60008061170333846125e1565b9050600061171133856126c2565b9050600081838661172291906144b7565b61172c91906144b7565b905061173661129d565b801561178c5750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117ec57600f548161179e886112f0565b6117a89190614562565b11156117eb57856040517ff6202a8f0000000000000000000000000000000000000000000000000000000081526004016117e29190613ed7565b60405180910390fd5b5b600083146118225761182133601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612749565b5b6000821461183557611834338361281d565b5b61183f8682612932565b935050505092915050565b600d805461185790614428565b80601f016020809104026020016040519081016040528092919081815260200182805461188390614428565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b505050505081565b60006118e2610f60565b905090565b6118ef6120a3565b6118f881612955565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7fd309adf9916831da4fa176663947be0e9c745ad6645bb47e804e4c488a7f1b4e60001b81565b600f5481565b6119566120a3565b61195e61148b565b611994576040517fcd9e529800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000816009546015546119a79190614562565b6119b19190614562565b90506107d08111156119fa57806040517f3e474e0d0000000000000000000000000000000000000000000000000000000081526004016119f19190614162565b60405180910390fd5b81601581905550817fc1ff65ee907dc079b64ed9913d53f4bd593bd6ebd9b2a2708db2916d49e17ec360405160405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ac16120a3565b611ac9611278565b611aff576040517fc8a478a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081600954601554611b129190614562565b611b1c9190614562565b90506107d0811115611b6557806040517f3e474e0d000000000000000000000000000000000000000000000000000000008152600401611b5c9190614162565b60405180910390fd5b611b6e83612007565b82601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601481905550818373ffffffffffffffffffffffffffffffffffffffff167facc44e32fd5ca4240f6dbe6e8cf4eb49349c17c5ce5f80f1919a9c97b50d398a60405160405180910390a3505050565b611c076120a3565b611c1081612020565b50565b6000601260000160019054906101000a900460ff16905090565b611c356120a3565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cb9576040517ff20d03d600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606460118054905010611cf8576040517fc92787fc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506011819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f94f5dc0e322a0a7c5af09958609aeb2384692e22922827ff9595db226c01dfa560405160405180910390a250565b611e016120a3565b611e0961115d565b611e3f576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4881612c9f565b807f76e1296412dac7b50002658bf9aab02d0cfe366f373222d5c14d0168ee8199e360405160405180910390a250565b6040518060400160405280601581526020017f646566695f765f315f66697865645f737570706c79000000000000000000000081525081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790614952565b60405180910390fd5b611f2c60008383612d00565b8060026000828254611f3e9190614562565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fef9190614162565b60405180910390a361200360008383612d05565b5050565b8060601b61201d5763d92e233d6000526004601cfd5b50565b6120286120a3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e906149e4565b60405180910390fd5b6120a081612d0a565b50565b6120ab612121565b73ffffffffffffffffffffffffffffffffffffffff166120c961143d565b73ffffffffffffffffffffffffffffffffffffffff161461211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690614a50565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90614ae2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90614b74565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122e59190614162565b60405180910390a3505050565b7f0000000000000000000000000000000000000000000000000000000000000000612349576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123cd576040517fe2f18de900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600b805490501061240c576040517ff266e36200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156124e05761249c600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ff565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f743dcd4a012534912a3350f3ed8937d3b4f0771c62892ed15e4373dc2c5f584a60405160405180910390a250565b600080601454141580156126435750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156126995750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126bc57612710601454836126af9190614b94565b6126b991906145c5565b90505b92915050565b600080601554141580156127205750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561274357612710601554836127369190614b94565b61274091906145c5565b90505b92915050565b7f00000000000000000000000000000000000000000000000000000000000000001561280c57600081146128075760006127816128b2565b9050600081836127919190614b94565b905061279f85858384612dd0565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127fc9190614162565b60405180910390a350505b612818565b612817838383612f80565b5b505050565b7f000000000000000000000000000000000000000000000000000000000000000015612875576040517f6cb5913900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287f82826131f6565b5050565b60008061288e612121565b905061289b8582856133c3565b6128a685858561344f565b60019150509392505050565b60008060006128bf6137c6565b9150915080826128cf91906145c5565b9250505090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6129266120a3565b6129306000612d0a565b565b60008061293d612121565b905061294a81858561344f565b600191505092915050565b7f00000000000000000000000000000000000000000000000000000000000000006129ac576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a2f576040517f1214f5e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b80549050811015612c9b578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612a6a57612a69614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612c8857600b6001600b80549050612ac491906144b7565b81548110612ad557612ad4614459565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b8281548110612b1457612b13614459565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b805480612c0b57612c0a6144eb565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590558173ffffffffffffffffffffffffffffffffffffffff167f9ccbe1146da67d2d78acc466156a4860eecd4209be8b75a9370e8bf3e949ed1f60405160405180910390a2612c9b565b8080612c939061451a565b915050612a32565b5050565b7f0000000000000000000000000000000000000000000000000000000000000000612cf6576040517f800e34b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060098190555050565b505050565b505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612e5d578381846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612e5493929190614bd6565b60405180910390fd5b82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ea891906144b7565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f369190614562565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe690614c7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590614d11565b60405180910390fd5b613069838383612d00565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156130ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e690614da3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131dd9190614162565b60405180910390a36131f0848484612d05565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325c90614e35565b60405180910390fd5b61327182600083612d00565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ee90614ec7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133aa9190614162565b60405180910390a36133be83600084612d05565b505050565b60006133cf8484611a32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114613449578181101561343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614f33565b60405180910390fd5b6134488484848403612129565b5b50505050565b7f0000000000000000000000000000000000000000000000000000000000000000156137b55761347e83612007565b61348782612007565b600081036134c1576040517f76c4f5b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135645750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613579576135748383836137dc565b6137b0565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561361c5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136315761362c83838361392c565b6137af565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136d55750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136ea576136e5838383613a7c565b6137ae565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561378c5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137a15761379c838383613b3e565b6137ad565b6137ac838383613a7c565b5b5b5b5b6137c1565b6137c0838383612f80565b5b505050565b6000806007546137d46118d8565b915091509091565b60006137e88285613d1c565b9050600081836137f891906144b7565b9050600080600061380a868686613d9d565b925092509250600086146139225761382488888584612dd0565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461386f91906144b7565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138bc8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef886040516139199190614162565b60405180910390a35b5050505050505050565b60006139388285613d1c565b90506000818361394891906144b7565b9050600080600061395a868686613d9d565b92509250925060008614613a725761397488888584612dd0565b83600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139bf9190614562565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a0c8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613a699190614162565b60405180910390a35b5050505050505050565b6000613a888285613d1c565b905060008183613a9891906144b7565b90506000806000613aaa868686613d9d565b92509250925060008614613b3457613ac488888584612dd0565b613ace8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613b2b9190614162565b60405180910390a35b5050505050505050565b6000613b4a8285613d1c565b905060008183613b5a91906144b7565b90506000806000613b6c868686613d9d565b92509250925060008614613d1257613b8688888584612dd0565b85600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bd191906144b7565b600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c5f9190614562565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613cac8286613df3565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051613d099190614162565b60405180910390a35b5050505050505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613d795760009050613d97565b61271060095484613d8a9190614b94565b613d9491906145c5565b90505b92915050565b600080600080613dab6128b2565b905060008188613dbb9190614b94565b905060008288613dcb9190614b94565b905060008388613ddb9190614b94565b90508282829650965096505050505093509350939050565b81600754613e0191906144b7565b60078190555080600854613e159190614562565b6008819055505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613e4681613e33565b8114613e5157600080fd5b50565b600081359050613e6381613e3d565b92915050565b600060208284031215613e7f57613e7e613e29565b5b6000613e8d84828501613e54565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ec182613e96565b9050919050565b613ed181613eb6565b82525050565b6000602082019050613eec6000830184613ec8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f2c578082015181840152602081019050613f11565b60008484015250505050565b6000601f19601f8301169050919050565b6000613f5482613ef2565b613f5e8185613efd565b9350613f6e818560208601613f0e565b613f7781613f38565b840191505092915050565b60006020820190508181036000830152613f9c8184613f49565b905092915050565b613fad81613eb6565b8114613fb857600080fd5b50565b600081359050613fca81613fa4565b92915050565b60008060408385031215613fe757613fe6613e29565b5b6000613ff585828601613fbb565b925050602061400685828601613e54565b9150509250929050565b60008115159050919050565b61402581614010565b82525050565b6000602082019050614040600083018461401c565b92915050565b60006020828403121561405c5761405b613e29565b5b600061406a84828501613fbb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140a881613eb6565b82525050565b60006140ba838361409f565b60208301905092915050565b6000602082019050919050565b60006140de82614073565b6140e8818561407e565b93506140f38361408f565b8060005b8381101561412457815161410b88826140ae565b9750614116836140c6565b9250506001810190506140f7565b5085935050505092915050565b6000602082019050818103600083015261414b81846140d3565b905092915050565b61415c81613e33565b82525050565b60006020820190506141776000830184614153565b92915050565b60008060006060848603121561419657614195613e29565b5b60006141a486828701613fbb565b93505060206141b586828701613fbb565b92505060406141c686828701613e54565b9150509250925092565b600060ff82169050919050565b6141e6816141d0565b82525050565b600060208201905061420160008301846141dd565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61424982613f38565b810181811067ffffffffffffffff8211171561426857614267614211565b5b80604052505050565b600061427b613e1f565b90506142878282614240565b919050565b600067ffffffffffffffff8211156142a7576142a6614211565b5b6142b082613f38565b9050602081019050919050565b82818337600083830152505050565b60006142df6142da8461428c565b614271565b9050828152602081018484840111156142fb576142fa61420c565b5b6143068482856142bd565b509392505050565b600082601f83011261432357614322614207565b5b81356143338482602086016142cc565b91505092915050565b60006020828403121561435257614351613e29565b5b600082013567ffffffffffffffff8111156143705761436f613e2e565b5b61437c8482850161430e565b91505092915050565b6000819050919050565b61439881614385565b82525050565b60006020820190506143b3600083018461438f565b92915050565b600080604083850312156143d0576143cf613e29565b5b60006143de85828601613fbb565b92505060206143ef85828601613fbb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061444057607f821691505b602082108103614453576144526143f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c282613e33565b91506144cd83613e33565b92508282039050818111156144e5576144e4614488565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061452582613e33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361455757614556614488565b5b600182019050919050565b600061456d82613e33565b915061457883613e33565b92508282019050808211156145905761458f614488565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145d082613e33565b91506145db83613e33565b9250826145eb576145ea614596565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614652602583613efd565b915061465d826145f6565b604082019050919050565b6000602082019050818103600083015261468181614645565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146ad565b6146f486836146ad565b95508019841693508086168417925050509392505050565b6000819050919050565b600061473161472c61472784613e33565b61470c565b613e33565b9050919050565b6000819050919050565b61474b83614716565b61475f61475782614738565b8484546146ba565b825550505050565b600090565b614774614767565b61477f818484614742565b505050565b5b818110156147a35761479860008261476c565b600181019050614785565b5050565b601f8211156147e8576147b981614688565b6147c28461469d565b810160208510156147d1578190505b6147e56147dd8561469d565b830182614784565b50505b505050565b600082821c905092915050565b600061480b600019846008026147ed565b1980831691505092915050565b600061482483836147fa565b9150826002028217905092915050565b61483d82613ef2565b67ffffffffffffffff81111561485657614855614211565b5b6148608254614428565b61486b8282856147a7565b600060209050601f83116001811461489e576000841561488c578287015190505b6148968582614818565b8655506148fe565b601f1984166148ac86614688565b60005b828110156148d4578489015182556001820191506020850194506020810190506148af565b868310156148f157848901516148ed601f8916826147fa565b8355505b6001600288020188555050505b505050505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061493c601f83613efd565b915061494782614906565b602082019050919050565b6000602082019050818103600083015261496b8161492f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149ce602683613efd565b91506149d982614972565b604082019050919050565b600060208201905081810360008301526149fd816149c1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a3a602083613efd565b9150614a4582614a04565b602082019050919050565b60006020820190508181036000830152614a6981614a2d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614acc602483613efd565b9150614ad782614a70565b604082019050919050565b60006020820190508181036000830152614afb81614abf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b5e602283613efd565b9150614b6982614b02565b604082019050919050565b60006020820190508181036000830152614b8d81614b51565b9050919050565b6000614b9f82613e33565b9150614baa83613e33565b9250828202614bb881613e33565b91508282048414831517614bcf57614bce614488565b5b5092915050565b6000606082019050614beb6000830186613ec8565b614bf86020830185614153565b614c056040830184614153565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c69602583613efd565b9150614c7482614c0d565b604082019050919050565b60006020820190508181036000830152614c9881614c5c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614cfb602383613efd565b9150614d0682614c9f565b604082019050919050565b60006020820190508181036000830152614d2a81614cee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602683613efd565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e1f602183613efd565b9150614e2a82614dc3565b604082019050919050565b60006020820190508181036000830152614e4e81614e12565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb1602283613efd565b9150614ebc82614e55565b604082019050919050565b60006020820190508181036000830152614ee081614ea4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f1d601d83613efd565b9150614f2882614ee7565b602082019050919050565b60006020820190508181036000830152614f4c81614f10565b905091905056fea2646970667358221220969e7bff446b265540cabedb631f23b7910df11073b226666c5e34c88dcb304e64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000041cdb4000000000000000000000000000000000000000000000000000000000000000120000000000000000000000009013ea41be658026b23937a52912d01640fd736600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000009013ea41be658026b23937a52912d01640fd7366000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a6f64790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a4f4459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Jody
Arg [1] : symbol_ (string): JODY
Arg [2] : initialSupplyToSet (uint256): 69000000
Arg [3] : decimalsToSet (uint8): 18
Arg [4] : tokenOwner (address): 0x9013Ea41Be658026B23937a52912d01640Fd7366
Arg [5] : customConfigProps (tuple):
Arg [1] : _isBurnable (bool): False
Arg [2] : _isDocumentAllowed (bool): False
Arg [3] : _isMaxAmountOfTokensSet (bool): False
Arg [4] : _isTaxable (bool): False
Arg [5] : _isDeflationary (bool): False
Arg [6] : _isReflective (bool): False

Arg [6] : newDocumentUri (string):
Arg [7] : _taxAddress (address): 0x9013Ea41Be658026B23937a52912d01640Fd7366
Arg [8] : bpsParams (uint256[3]): 0,0,0
Arg [9] : amountParams (uint256[1]): 0

-----Encoded View---------------
22 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [2] : 00000000000000000000000000000000000000000000000000000000041cdb40
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000009013ea41be658026b23937a52912d01640fd7366
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [12] : 0000000000000000000000009013ea41be658026b23937a52912d01640fd7366
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [18] : 4a6f647900000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [20] : 4a4f445900000000000000000000000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

426:15694:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1189:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8205:392;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;955:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14237:544:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13953:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6196:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11573:738:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;863:32:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5940:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7549:94:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1632:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;984:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12495:150:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;465:57:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1130:55:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7101:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1657:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;609:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6455:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;722:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2679:279:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12811:91:5;;;:::i;:::-;;6102:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1520:42:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7310:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5885:121;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;741:22:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1026:56:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7787:232:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10461:729;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;919:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1483:88:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14962:107:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1603:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;787:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1086:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9786:374;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3987:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9176:443:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13075:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6687:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13354:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8749:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;662:56;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1189:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8205:392::-;1094:13:0;:11;:13::i;:::-;8307:24:5::1;:22;:24::i;:::-;8302:79;;8348:26;;;;;;;;;;;;;;8302:79;8411:24;;8390:17;:45;8386:106;;8452:33;;;;;;;;;;;;;;8386:106;8525:17;8498:24;:44;;;;8553:39;8574:17;8553:39;;;;;;:::i;:::-;;;;;;;;8205:392:::0;:::o;955:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2158:98:1:-;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;14237:544:5:-;1094:13:0;:11;:13::i;:::-;14318:23:5::1;:32;14342:7;14318:32;;;;;;;;;;;;;;;;;;;;;;;;;14313:93;;14367:32;;;;;;;;;;;;;;14313:93;14417:9;14412:365;14436:21;:28;;;;14432:1;:32;14412:365;;;14511:7;14483:35;;:21;14505:1;14483:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:35;;::::0;14479:292:::1;;14557:21;14610:1;14579:21;:28;;;;:32;;;;:::i;:::-;14557:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14530:21;14552:1;14530:24;;;;;;;;:::i;:::-;;;;;;;;;;:82;;;;;;;;;;;;;;;;;;14657:5;14622:23;:32;14646:7;14622:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;14672:21;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;14738:7;14714:32;;;;;;;;;;;;14757:5;;14479:292;14466:3;;;;;:::i;:::-;;;;14412:365;;;;14237:544:::0;:::o;13953:109::-;1094:13:0;:11;:13::i;:::-;14023:34:5::1;14049:7;14023:25;:34::i;:::-;13953:109:::0;:::o;6196:107::-;6252:16;6283:15;6276:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6196:107;:::o;3255:106:1:-;3316:7;3342:12;;3335:19;;3255:106;:::o;11573:738:5:-;11686:4;11698:17;11718:24;11729:4;11735:6;11718:10;:24::i;:::-;11698:44;;11748:23;11774:30;11791:4;11797:6;11774:16;:30::i;:::-;11748:56;;11810:24;11858:15;11846:9;11837:6;:18;;;;:::i;:::-;:36;;;;:::i;:::-;11810:63;;11884:24;:22;:24::i;:::-;:56;;;;;11913:23;:27;11937:2;11913:27;;;;;;;;;;;;;;;;;;;;;;;;;11912:28;11884:56;11880:199;;;11989:24;;11970:16;11954:13;11964:2;11954:9;:13::i;:::-;:32;;;;:::i;:::-;:59;11950:123;;;12061:2;12032:32;;;;;;;;;;;:::i;:::-;;;;;;;;11950:123;11880:199;12102:1;12089:9;:14;12085:88;;12113:53;12138:4;12144:10;;;;;;;;;;;12156:9;12113:24;:53::i;:::-;12085:88;12201:1;12182:15;:20;12178:69;;12212:28;12218:4;12224:15;12212:5;:28::i;:::-;12178:69;12260:46;12279:4;12285:2;12289:16;12260:18;:46::i;:::-;12253:53;;;;;11573:738;;;;;:::o;863:32:6:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5940:229::-;6007:7;6036;;6026;:17;6022:70;;;6060:25;;;;;;;;;;;;;;6022:70;6098:19;6120:10;:8;:10::i;:::-;6098:32;;6153:11;6143:7;:21;;;;:::i;:::-;6136:28;;;5940:229;;;:::o;7549:94:5:-;7594:4;7613:11;:25;;;;;;;;;;;;7606:32;;7549:94;:::o;1632:21::-;;;;:::o;6899:92::-;6957:5;6977:9;6970:16;;6899:92;:::o;984:38::-;;;:::o;5854:234:1:-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;12495:150:5:-;1094:13:0;:11;:13::i;:::-;12555:12:5::1;:10;:12::i;:::-;12550:60;;12584:19;;;;;;;;;;;;;;12550:60;12615:25;12621:10;12633:6;12615:5;:25::i;:::-;12495:150:::0;:::o;465:57:6:-;519:3;465:57;:::o;1130:55:5:-;;;;;;;;;;;;;;;;;;;;;;:::o;7101:88::-;7143:4;7162:11;:22;;;;;;;;;;;;7155:29;;7101:88;:::o;1657:27::-;;;;:::o;609:49::-;655:3;609:49;:::o;6455:114::-;6510:4;6529:11;:35;;;;;;;;;;;;6522:42;;6455:114;:::o;722:61::-;;;;;;;;;;;;;;;;;;;:::o;2679:279:6:-;2745:7;2764:12;2760:194;;;2790:18;:27;2809:7;2790:27;;;;;;;;;;;;;;;;;;;;;;;;;2786:56;;;2826:7;:16;2834:7;2826:16;;;;;;;;;;;;;;;;2819:23;;;;2786:56;2858:37;2878:7;:16;2886:7;2878:16;;;;;;;;;;;;;;;;2858:19;:37::i;:::-;2851:44;;;;2760:194;2923:24;2939:7;2923:15;:24::i;:::-;2916:31;;2679:279;;;;:::o;12811:91:5:-;1094:13:0;:11;:13::i;:::-;12872:25:5::1;:23;:25::i;:::-;12811:91::o:0;6102:90::-;6145:4;6164:11;:23;;;;;;;;;;;;6157:30;;6102:90;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;1520:42:5:-;;;:::o;7310:98::-;7357:4;7376:11;:27;;;;;;;;;;;;7369:34;;7310:98;:::o;5885:121::-;5949:16;5980:21;5973:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:121;:::o;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;741:22:6:-;;;;:::o;1026:56:5:-;;;:::o;6575:427:1:-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;7787:232:5:-;1094:13:0;:11;:13::i;:::-;7871:22:5::1;:20;:22::i;:::-;7866:74;;7910:23;;;;;;;;;;;;;;7866:74;7959:14;7945:11;:28;;;;;;:::i;:::-;;7984:30;7999:14;7984:30;;;;;;:::i;:::-;;;;;;;;7787:232:::0;:::o;10461:729::-;10552:4;10564:17;10584:30;10595:10;10607:6;10584:10;:30::i;:::-;10564:50;;10620:23;10646:36;10663:10;10675:6;10646:16;:36::i;:::-;10620:62;;10688:24;10736:15;10724:9;10715:6;:18;;;;:::i;:::-;:36;;;;:::i;:::-;10688:63;;10762:24;:22;:24::i;:::-;:56;;;;;10791:23;:27;10815:2;10791:27;;;;;;;;;;;;;;;;;;;;;;;;;10790:28;10762:56;10758:199;;;10867:24;;10848:16;10832:13;10842:2;10832:9;:13::i;:::-;:32;;;;:::i;:::-;:59;10828:123;;;10939:2;10910:32;;;;;;;;;;;:::i;:::-;;;;;;;;10828:123;10758:199;10980:1;10967:9;:14;10963:94;;10991:59;11016:10;11028;;;;;;;;;;;11040:9;10991:24;:59::i;:::-;10963:94;11085:1;11066:15;:20;11062:75;;11096:34;11102:10;11114:15;11096:5;:34::i;:::-;11062:75;11149:36;11164:2;11168:16;11149:14;:36::i;:::-;11142:43;;;;;10461:729;;;;:::o;919:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1483:88:6:-;1531:7;1553:13;:11;:13::i;:::-;1546:20;;1483:88;:::o;14962:107:5:-;1094:13:0;:11;:13::i;:::-;15032:32:5::1;15056:7;15032:23;:32::i;:::-;14962:107:::0;:::o;1603:25::-;;;;;;;;;;;;;:::o;787:106::-;827:66;787:106;;;:::o;1086:39::-;;;;:::o;9786:374::-;1094:13:0;:11;:13::i;:::-;9867:16:5::1;:14;:16::i;:::-;9862:69;;9900:24;;;;;;;;;;;;;;9862:69;9936:16;9980:13;9970:7;;9955:12;;:22;;;;:::i;:::-;:38;;;;:::i;:::-;9936:57;;600:5;10003:8;:26;9999:79;;;10062:8;10046:25;;;;;;;;;;;:::i;:::-;;;;;;;;9999:79;10098:13;10083:12;:28;;;;10141:13;10122:33;;;;;;;;;;9856:304;9786:374:::0;:::o;3987:149:1:-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;9176:443:5:-;1094:13:0;:11;:13::i;:::-;9278:11:5::1;:9;:11::i;:::-;9273:59;;9306:19;;;;;;;;;;;;;;9273:59;9338:16;9382:7;9372;;9357:12;;:22;;;;:::i;:::-;:32;;;;:::i;:::-;9338:51;;600:5;9399:8;:26;9395:79;;;9458:8;9442:25;;;;;;;;;;;:::i;:::-;;;;;;;;9395:79;9479:38;9505:11;9479:25;:38::i;:::-;9536:11;9523:10;;:24;;;;;;;;;;;;;;;;;;9562:7;9553:6;:16;;;;9606:7;9593:11;9580:34;;;;;;;;;;;;9267:352;9176:443:::0;;:::o;13075:115::-;1094:13:0;:11;:13::i;:::-;13152:33:5::1;13176:8;13152:23;:33::i;:::-;13075:115:::0;:::o;6687:107::-;6740:4;6759:11;:30;;;;;;;;;;;;6752:37;;6687:107;:::o;13354:424::-;1094:13:0;:11;:13::i;:::-;13442:23:5::1;:32;13466:7;13442:32;;;;;;;;;;;;;;;;;;;;;;;;;13438:94;;;13491:34;;;;;;;;;;;;;;13438:94;655:3;13541:21;:28;;;;:51;13537:105;;13609:26;;;;;;;;;;;;;;13537:105;13683:4;13648:23;:32;13672:7;13648:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;13693:21;13720:7;13693:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13765:7;13740:33;;;;;;;;;;;;13354:424:::0;:::o;8749:218::-;1094:13:0;:11;:13::i;:::-;8825:14:5::1;:12;:14::i;:::-;8820:65;;8856:22;;;;;;;;;;;;;;8820:65;8890:32;8914:7;8890:23;:32::i;:::-;8954:7;8934:28;;;;;;;;;;8749:218:::0;:::o;662:56::-;;;;;;;;;;;;;;;;;;;:::o;8520:535:1:-;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;:49::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;:48::i;:::-;8520:535;;:::o;1674:396:7:-;1820:4;1816:2;1812:13;1802:258;;1975:10;1969:4;1962:24;2047:4;2041;2034:18;1802:258;1674:396;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1359:130::-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;655:96:4:-;708:7;734:10;727:17;;655:96;:::o;10457:340:1:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;6287:562:6:-;6361:12;6356:63;;6390:22;;;;;;;;;;;;;;6356:63;6428:18;:27;6447:7;6428:27;;;;;;;;;;;;;;;;;;;;;;;;;6424:83;;;6472:28;;;;;;;;;;;;;;6424:83;519:3;6516:15;:22;;;;:53;6512:113;;6586:32;;;;;;;;;;;;;;6512:113;6653:1;6634:7;:16;6642:7;6634:16;;;;;;;;;;;;;;;;:20;6631:98;;;6685:37;6705:7;:16;6713:7;6705:16;;;;;;;;;;;;;;;;6685:19;:37::i;:::-;6666:7;:16;6674:7;6666:16;;;;;;;;;;;;;;;:56;;;;6631:98;6765:4;6735:18;:27;6754:7;6735:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;6775:15;6796:7;6775:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6836:7;6816:28;;;;;;;;;;;;6287:562;:::o;15318:273:5:-;15405:17;15463:1;15453:6;;:11;;:35;;;;;15478:10;;;;;;;;;;;15468:20;;:6;:20;;;;15453:35;:71;;;;;15493:23;:31;15517:6;15493:31;;;;;;;;;;;;;;;;;;;;;;;;;15492:32;15453:71;15449:138;;;547:6;15556;;15547;:15;;;;:::i;:::-;15546:34;;;;:::i;:::-;15534:46;;15449:138;15318:273;;;;:::o;15833:285::-;15926:23;16002:1;15986:12;;:17;;:53;;;;;16008:23;:31;16032:6;16008:31;;;;;;;;;;;;;;;;;;;;;;;;;16007:32;15986:53;15982:132;;;547:6;16077:12;;16068:6;:21;;;;:::i;:::-;16067:40;;;;:::i;:::-;16049:58;;15982:132;15833:285;;;;:::o;11697:406:6:-;11809:12;11805:294;;;11846:1;11835:7;:12;11831:207;;11859:19;11881:10;:8;:10::i;:::-;11859:32;;11901:15;11929:11;11919:7;:21;;;;:::i;:::-;11901:39;;11951:36;11960:4;11966:2;11970:7;11979;11951:8;:36::i;:::-;12017:2;12002:27;;12011:4;12002:27;;;12021:7;12002:27;;;;;;:::i;:::-;;;;;;;;11849:189;;11831:207;11805:294;;;12058:34;12074:4;12080:2;12084:7;12058:15;:34::i;:::-;11805:294;11697:406;;;:::o;5258:182::-;5333:12;5329:107;;;5362:19;;;;;;;;;;;;;;5329:107;5402:27;5414:7;5423:5;5402:11;:27::i;:::-;5258:182;;:::o;3220:257::-;3332:4;3344:15;3362:18;:16;:18::i;:::-;3344:36;;3386:37;3402:4;3408:7;3417:5;3386:15;:37::i;:::-;3429:26;3439:4;3445:2;3449:5;3429:9;:26::i;:::-;3468:4;3461:11;;;3220:257;;;;;:::o;12840:148::-;12882:7;12898:15;12915;12934:19;:17;:19::i;:::-;12897:56;;;;12976:7;12966;:17;;;;:::i;:::-;12959:24;;;;12840:148;:::o;3419:125:1:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;3680:191:6:-;3770:4;3782:13;3798:18;:16;:18::i;:::-;3782:34;;3822:27;3832:5;3839:2;3843:5;3822:9;:27::i;:::-;3862:4;3855:11;;;3680:191;;;;:::o;6962:567::-;7026:12;7021:63;;7055:22;;;;;;;;;;;;;;7021:63;7094:18;:27;7113:7;7094:27;;;;;;;;;;;;;;;;;;;;;;;;;7089:82;;7138:26;;;;;;;;;;;;;;7089:82;7182:9;7177:348;7201:15;:22;;;;7197:1;:26;7177:348;;;7264:7;7242:29;;:15;7258:1;7242:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:29;;;7238:281;;7304:15;7345:1;7320:15;:22;;;;:26;;;;:::i;:::-;7304:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7283:15;7299:1;7283:18;;;;;;;;:::i;:::-;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;7387:5;7357:18;:27;7376:7;7357:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;7421:1;7402:7;:16;7410:7;7402:16;;;;;;;;;;;;;;;:20;;;;7432:15;:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;7486:7;7468:26;;;;;;;;;;;;7505:5;;7238:281;7225:3;;;;;:::i;:::-;;;;7177:348;;;;6962:567;:::o;5596:152::-;5661:12;5656:63;;5690:22;;;;;;;;;;;;;;5656:63;5735:8;5725:7;:18;;;;5596:152;:::o;12073:91:1:-;;;;:::o;12752:90::-;;;;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;13528:406:6:-;13660:19;13682:7;:15;13690:6;13682:15;;;;;;;;;;;;;;;;13660:37;;13721:10;13707:11;:24;13703:112;;;13773:9;13784:11;13797:10;13748:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;13703:112;13856:10;13838:7;:15;13846:6;13838:15;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;13820:7;:15;13828:6;13820:15;;;;;;;;;;;;;;;:46;;;;13914:15;13893:7;:18;13901:9;13893:18;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;13872:7;:18;13880:9;13872:18;;;;;;;;;;;;;;;:57;;;;13654:280;13528:406;;;;:::o;7456:788:1:-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;9375:659::-;9477:1;9458:21;;:7;:21;;;9450:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9528:49;9549:7;9566:1;9570:6;9528:20;:49::i;:::-;9588:22;9613:9;:18;9623:7;9613:18;;;;;;;;;;;;;;;;9588:43;;9667:6;9649:14;:24;;9641:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9784:6;9767:14;:23;9746:9;:18;9756:7;9746:18;;;;;;;;;;;;;;;:44;;;;9899:6;9883:12;;:22;;;;;;;;;;;9957:1;9931:37;;9940:7;9931:37;;;9961:6;9931:37;;;;;;:::i;:::-;;;;;;;;9979:48;9999:7;10016:1;10020:6;9979:19;:48::i;:::-;9440:594;9375:659;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;4183:879:6:-;4288:12;4284:774;;;4310:31;4336:4;4310:25;:31::i;:::-;4349:29;4375:2;4349:25;:29::i;:::-;4400:1;4390:6;:11;4386:62;;4420:19;;;;;;;;;;;;;;4386:62;4460:18;:24;4479:4;4460:24;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;4489:18;:22;4508:2;4489:22;;;;;;;;;;;;;;;;;;;;;;;;;4488:23;4460:51;4456:542;;;4525:39;4547:4;4553:2;4557:6;4525:21;:39::i;:::-;4456:542;;;4584:18;:24;4603:4;4584:24;;;;;;;;;;;;;;;;;;;;;;;;;4583:25;:51;;;;;4612:18;:22;4631:2;4612:22;;;;;;;;;;;;;;;;;;;;;;;;;4583:51;4579:419;;;4648:37;4668:4;4674:2;4678:6;4648:19;:37::i;:::-;4579:419;;;4705:18;:24;4724:4;4705:24;;;;;;;;;;;;;;;;;;;;;;;;;4704:25;:52;;;;;4734:18;:22;4753:2;4734:22;;;;;;;;;;;;;;;;;;;;;;;;;4733:23;4704:52;4700:298;;;4770:35;4788:4;4794:2;4798:6;4770:17;:35::i;:::-;4700:298;;;4824:18;:24;4843:4;4824:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;4852:18;:22;4871:2;4852:22;;;;;;;;;;;;;;;;;;;;;;;;;4824:50;4820:178;;;4888:39;4910:4;4916:2;4920:6;4888:21;:39::i;:::-;4820:178;;;4954:35;4972:4;4978:2;4982:6;4954:17;:35::i;:::-;4820:178;4700:298;4579:419;4456:542;4284:774;;;5018:33;5034:4;5040:2;5044:6;5018:15;:33::i;:::-;4284:774;4183:879;;;:::o;13114:107::-;13165:7;13174;13197;;13206:9;:7;:9::i;:::-;13189:27;;;;13114:107;;:::o;8512:566::-;8625:12;8640:29;8653:7;8662:6;8640:12;:29::i;:::-;8625:44;;8675:23;8711:4;8701:7;:14;;;;:::i;:::-;8675:40;;8722:15;8739:12;8753:23;8780:67;8799:7;8814:4;8826:15;8780:11;:67::i;:::-;8721:126;;;;;;8869:1;8858:7;:12;8854:220;;8880:53;8889:6;8897:9;8908:7;8917:15;8880:8;:53::i;:::-;8978:7;8959;:15;8967:6;8959:15;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;8941:7;:15;8949:6;8941:15;;;;;;;;;;;;;;;:45;;;;8995:23;9007:4;9013;8995:11;:23::i;:::-;9048:9;9031:36;;9040:6;9031:36;;;9059:7;9031:36;;;;;;:::i;:::-;;;;;;;;8854:220;8619:459;;;;;8512:566;;;:::o;9307:578::-;9418:12;9433:29;9446:7;9455:6;9433:12;:29::i;:::-;9418:44;;9468:23;9504:4;9494:7;:14;;;;:::i;:::-;9468:40;;9515:15;9532:12;9546:23;9573:67;9592:7;9607:4;9619:15;9573:11;:67::i;:::-;9514:126;;;;;;9662:1;9651:7;:12;9647:234;;9673:53;9682:6;9690:9;9701:7;9710:15;9673:8;:53::i;:::-;9777:15;9755:7;:18;9763:9;9755:18;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;9734:7;:18;9742:9;9734:18;;;;;;;;;;;;;;;:59;;;;9802:23;9814:4;9820;9802:11;:23::i;:::-;9855:9;9838:36;;9847:6;9838:36;;;9866:7;9838:36;;;;;;:::i;:::-;;;;;;;;9647:234;9412:473;;;;;9307:578;;;:::o;7772:509::-;7881:12;7896:29;7909:7;7918:6;7896:12;:29::i;:::-;7881:44;;7931:23;7967:4;7957:7;:14;;;;:::i;:::-;7931:40;;7978:15;7995:12;8009:23;8036:67;8055:7;8070:4;8082:15;8036:11;:67::i;:::-;7977:126;;;;;;8125:1;8114:7;:12;8110:167;;8136:53;8145:6;8153:9;8164:7;8173:15;8136:8;:53::i;:::-;8198:23;8210:4;8216;8198:11;:23::i;:::-;8251:9;8234:36;;8243:6;8234:36;;;8262:7;8234:36;;;;;;:::i;:::-;;;;;;;;8110:167;7875:406;;;;;7772:509;;;:::o;10121:617::-;10218:12;10233:29;10246:7;10255:6;10233:12;:29::i;:::-;10218:44;;10268:23;10304:4;10294:7;:14;;;;:::i;:::-;10268:40;;10315:15;10332:12;10346:23;10373:67;10392:7;10407:4;10419:15;10373:11;:67::i;:::-;10314:126;;;;;;10462:1;10451:7;:12;10447:287;;10473:53;10482:6;10490:9;10501:7;10510:15;10473:8;:53::i;:::-;10571:7;10552;:15;10560:6;10552:15;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;10534:7;:15;10542:6;10534:15;;;;;;;;;;;;;;;:45;;;;10630:15;10608:7;:18;10616:9;10608:18;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;10587:7;:18;10595:9;10587:18;;;;;;;;;;;;;;;:59;;;;10655:23;10667:4;10673;10655:11;:23::i;:::-;10708:9;10691:36;;10700:6;10691:36;;;10719:7;10691:36;;;;;;:::i;:::-;;;;;;;;10447:287;10212:526;;;;;10121:617;;;:::o;11259:210::-;11335:7;11354:18;:26;11373:6;11354:26;;;;;;;;;;;;;;;;;;;;;;;;;11350:115;;;11397:1;11390:8;;;;11350:115;455:6;11436:7;;11427:6;:16;;;;:::i;:::-;11426:32;;;;:::i;:::-;11419:39;;11259:210;;;;;:::o;12366:376::-;12481:7;12490;12499;12514:19;12536:10;:8;:10::i;:::-;12514:32;;12552:15;12580:11;12570:7;:21;;;;:::i;:::-;12552:39;;12597:12;12619:11;12612:4;:18;;;;:::i;:::-;12597:33;;12636:23;12680:11;12662:15;:29;;;;:::i;:::-;12636:55;;12706:7;12715:4;12721:15;12698:39;;;;;;;;;;12366:376;;;;;;;:::o;10914:128::-;10997:4;10987:7;;:14;;;;:::i;:::-;10977:7;:24;;;;11033:4;11020:10;;:17;;;;:::i;:::-;11007:10;:30;;;;10914:128;;:::o;7:75:8:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:126::-;1062:7;1102:42;1095:5;1091:54;1080:65;;1025:126;;;:::o;1157:96::-;1194:7;1223:24;1241:5;1223:24;:::i;:::-;1212:35;;1157:96;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:99::-;1663:6;1697:5;1691:12;1681:22;;1611:99;;;:::o;1716:169::-;1800:11;1834:6;1829:3;1822:19;1874:4;1869:3;1865:14;1850:29;;1716:169;;;;:::o;1891:246::-;1972:1;1982:113;1996:6;1993:1;1990:13;1982:113;;;2081:1;2076:3;2072:11;2066:18;2062:1;2057:3;2053:11;2046:39;2018:2;2015:1;2011:10;2006:15;;1982:113;;;2129:1;2120:6;2115:3;2111:16;2104:27;1953:184;1891:246;;;:::o;2143:102::-;2184:6;2235:2;2231:7;2226:2;2219:5;2215:14;2211:28;2201:38;;2143:102;;;:::o;2251:377::-;2339:3;2367:39;2400:5;2367:39;:::i;:::-;2422:71;2486:6;2481:3;2422:71;:::i;:::-;2415:78;;2502:65;2560:6;2555:3;2548:4;2541:5;2537:16;2502:65;:::i;:::-;2592:29;2614:6;2592:29;:::i;:::-;2587:3;2583:39;2576:46;;2343:285;2251:377;;;;:::o;2634:313::-;2747:4;2785:2;2774:9;2770:18;2762:26;;2834:9;2828:4;2824:20;2820:1;2809:9;2805:17;2798:47;2862:78;2935:4;2926:6;2862:78;:::i;:::-;2854:86;;2634:313;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:329::-;4192:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:119;;;4247:79;;:::i;:::-;4209:119;4367:1;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4338:117;4133:329;;;;:::o;4468:114::-;4535:6;4569:5;4563:12;4553:22;;4468:114;;;:::o;4588:184::-;4687:11;4721:6;4716:3;4709:19;4761:4;4756:3;4752:14;4737:29;;4588:184;;;;:::o;4778:132::-;4845:4;4868:3;4860:11;;4898:4;4893:3;4889:14;4881:22;;4778:132;;;:::o;4916:108::-;4993:24;5011:5;4993:24;:::i;:::-;4988:3;4981:37;4916:108;;:::o;5030:179::-;5099:10;5120:46;5162:3;5154:6;5120:46;:::i;:::-;5198:4;5193:3;5189:14;5175:28;;5030:179;;;;:::o;5215:113::-;5285:4;5317;5312:3;5308:14;5300:22;;5215:113;;;:::o;5364:732::-;5483:3;5512:54;5560:5;5512:54;:::i;:::-;5582:86;5661:6;5656:3;5582:86;:::i;:::-;5575:93;;5692:56;5742:5;5692:56;:::i;:::-;5771:7;5802:1;5787:284;5812:6;5809:1;5806:13;5787:284;;;5888:6;5882:13;5915:63;5974:3;5959:13;5915:63;:::i;:::-;5908:70;;6001:60;6054:6;6001:60;:::i;:::-;5991:70;;5847:224;5834:1;5831;5827:9;5822:14;;5787:284;;;5791:14;6087:3;6080:10;;5488:608;;;5364:732;;;;:::o;6102:373::-;6245:4;6283:2;6272:9;6268:18;6260:26;;6332:9;6326:4;6322:20;6318:1;6307:9;6303:17;6296:47;6360:108;6463:4;6454:6;6360:108;:::i;:::-;6352:116;;6102:373;;;;:::o;6481:118::-;6568:24;6586:5;6568:24;:::i;:::-;6563:3;6556:37;6481:118;;:::o;6605:222::-;6698:4;6736:2;6725:9;6721:18;6713:26;;6749:71;6817:1;6806:9;6802:17;6793:6;6749:71;:::i;:::-;6605:222;;;;:::o;6833:619::-;6910:6;6918;6926;6975:2;6963:9;6954:7;6950:23;6946:32;6943:119;;;6981:79;;:::i;:::-;6943:119;7101:1;7126:53;7171:7;7162:6;7151:9;7147:22;7126:53;:::i;:::-;7116:63;;7072:117;7228:2;7254:53;7299:7;7290:6;7279:9;7275:22;7254:53;:::i;:::-;7244:63;;7199:118;7356:2;7382:53;7427:7;7418:6;7407:9;7403:22;7382:53;:::i;:::-;7372:63;;7327:118;6833:619;;;;;:::o;7458:86::-;7493:7;7533:4;7526:5;7522:16;7511:27;;7458:86;;;:::o;7550:112::-;7633:22;7649:5;7633:22;:::i;:::-;7628:3;7621:35;7550:112;;:::o;7668:214::-;7757:4;7795:2;7784:9;7780:18;7772:26;;7808:67;7872:1;7861:9;7857:17;7848:6;7808:67;:::i;:::-;7668:214;;;;:::o;7888:117::-;7997:1;7994;7987:12;8011:117;8120:1;8117;8110:12;8134:180;8182:77;8179:1;8172:88;8279:4;8276:1;8269:15;8303:4;8300:1;8293:15;8320:281;8403:27;8425:4;8403:27;:::i;:::-;8395:6;8391:40;8533:6;8521:10;8518:22;8497:18;8485:10;8482:34;8479:62;8476:88;;;8544:18;;:::i;:::-;8476:88;8584:10;8580:2;8573:22;8363:238;8320:281;;:::o;8607:129::-;8641:6;8668:20;;:::i;:::-;8658:30;;8697:33;8725:4;8717:6;8697:33;:::i;:::-;8607:129;;;:::o;8742:308::-;8804:4;8894:18;8886:6;8883:30;8880:56;;;8916:18;;:::i;:::-;8880:56;8954:29;8976:6;8954:29;:::i;:::-;8946:37;;9038:4;9032;9028:15;9020:23;;8742:308;;;:::o;9056:146::-;9153:6;9148:3;9143;9130:30;9194:1;9185:6;9180:3;9176:16;9169:27;9056:146;;;:::o;9208:425::-;9286:5;9311:66;9327:49;9369:6;9327:49;:::i;:::-;9311:66;:::i;:::-;9302:75;;9400:6;9393:5;9386:21;9438:4;9431:5;9427:16;9476:3;9467:6;9462:3;9458:16;9455:25;9452:112;;;9483:79;;:::i;:::-;9452:112;9573:54;9620:6;9615:3;9610;9573:54;:::i;:::-;9292:341;9208:425;;;;;:::o;9653:340::-;9709:5;9758:3;9751:4;9743:6;9739:17;9735:27;9725:122;;9766:79;;:::i;:::-;9725:122;9883:6;9870:20;9908:79;9983:3;9975:6;9968:4;9960:6;9956:17;9908:79;:::i;:::-;9899:88;;9715:278;9653:340;;;;:::o;9999:509::-;10068:6;10117:2;10105:9;10096:7;10092:23;10088:32;10085:119;;;10123:79;;:::i;:::-;10085:119;10271:1;10260:9;10256:17;10243:31;10301:18;10293:6;10290:30;10287:117;;;10323:79;;:::i;:::-;10287:117;10428:63;10483:7;10474:6;10463:9;10459:22;10428:63;:::i;:::-;10418:73;;10214:287;9999:509;;;;:::o;10514:77::-;10551:7;10580:5;10569:16;;10514:77;;;:::o;10597:118::-;10684:24;10702:5;10684:24;:::i;:::-;10679:3;10672:37;10597:118;;:::o;10721:222::-;10814:4;10852:2;10841:9;10837:18;10829:26;;10865:71;10933:1;10922:9;10918:17;10909:6;10865:71;:::i;:::-;10721:222;;;;:::o;10949:474::-;11017:6;11025;11074:2;11062:9;11053:7;11049:23;11045:32;11042:119;;;11080:79;;:::i;:::-;11042:119;11200:1;11225:53;11270:7;11261:6;11250:9;11246:22;11225:53;:::i;:::-;11215:63;;11171:117;11327:2;11353:53;11398:7;11389:6;11378:9;11374:22;11353:53;:::i;:::-;11343:63;;11298:118;10949:474;;;;;:::o;11429:180::-;11477:77;11474:1;11467:88;11574:4;11571:1;11564:15;11598:4;11595:1;11588:15;11615:320;11659:6;11696:1;11690:4;11686:12;11676:22;;11743:1;11737:4;11733:12;11764:18;11754:81;;11820:4;11812:6;11808:17;11798:27;;11754:81;11882:2;11874:6;11871:14;11851:18;11848:38;11845:84;;11901:18;;:::i;:::-;11845:84;11666:269;11615:320;;;:::o;11941:180::-;11989:77;11986:1;11979:88;12086:4;12083:1;12076:15;12110:4;12107:1;12100:15;12127:180;12175:77;12172:1;12165:88;12272:4;12269:1;12262:15;12296:4;12293:1;12286:15;12313:194;12353:4;12373:20;12391:1;12373:20;:::i;:::-;12368:25;;12407:20;12425:1;12407:20;:::i;:::-;12402:25;;12451:1;12448;12444:9;12436:17;;12475:1;12469:4;12466:11;12463:37;;;12480:18;;:::i;:::-;12463:37;12313:194;;;;:::o;12513:180::-;12561:77;12558:1;12551:88;12658:4;12655:1;12648:15;12682:4;12679:1;12672:15;12699:233;12738:3;12761:24;12779:5;12761:24;:::i;:::-;12752:33;;12807:66;12800:5;12797:77;12794:103;;12877:18;;:::i;:::-;12794:103;12924:1;12917:5;12913:13;12906:20;;12699:233;;;:::o;12938:191::-;12978:3;12997:20;13015:1;12997:20;:::i;:::-;12992:25;;13031:20;13049:1;13031:20;:::i;:::-;13026:25;;13074:1;13071;13067:9;13060:16;;13095:3;13092:1;13089:10;13086:36;;;13102:18;;:::i;:::-;13086:36;12938:191;;;;:::o;13135:180::-;13183:77;13180:1;13173:88;13280:4;13277:1;13270:15;13304:4;13301:1;13294:15;13321:185;13361:1;13378:20;13396:1;13378:20;:::i;:::-;13373:25;;13412:20;13430:1;13412:20;:::i;:::-;13407:25;;13451:1;13441:35;;13456:18;;:::i;:::-;13441:35;13498:1;13495;13491:9;13486:14;;13321:185;;;;:::o;13512:224::-;13652:34;13648:1;13640:6;13636:14;13629:58;13721:7;13716:2;13708:6;13704:15;13697:32;13512:224;:::o;13742:366::-;13884:3;13905:67;13969:2;13964:3;13905:67;:::i;:::-;13898:74;;13981:93;14070:3;13981:93;:::i;:::-;14099:2;14094:3;14090:12;14083:19;;13742:366;;;:::o;14114:419::-;14280:4;14318:2;14307:9;14303:18;14295:26;;14367:9;14361:4;14357:20;14353:1;14342:9;14338:17;14331:47;14395:131;14521:4;14395:131;:::i;:::-;14387:139;;14114:419;;;:::o;14539:141::-;14588:4;14611:3;14603:11;;14634:3;14631:1;14624:14;14668:4;14665:1;14655:18;14647:26;;14539:141;;;:::o;14686:93::-;14723:6;14770:2;14765;14758:5;14754:14;14750:23;14740:33;;14686:93;;;:::o;14785:107::-;14829:8;14879:5;14873:4;14869:16;14848:37;;14785:107;;;;:::o;14898:393::-;14967:6;15017:1;15005:10;15001:18;15040:97;15070:66;15059:9;15040:97;:::i;:::-;15158:39;15188:8;15177:9;15158:39;:::i;:::-;15146:51;;15230:4;15226:9;15219:5;15215:21;15206:30;;15279:4;15269:8;15265:19;15258:5;15255:30;15245:40;;14974:317;;14898:393;;;;;:::o;15297:60::-;15325:3;15346:5;15339:12;;15297:60;;;:::o;15363:142::-;15413:9;15446:53;15464:34;15473:24;15491:5;15473:24;:::i;:::-;15464:34;:::i;:::-;15446:53;:::i;:::-;15433:66;;15363:142;;;:::o;15511:75::-;15554:3;15575:5;15568:12;;15511:75;;;:::o;15592:269::-;15702:39;15733:7;15702:39;:::i;:::-;15763:91;15812:41;15836:16;15812:41;:::i;:::-;15804:6;15797:4;15791:11;15763:91;:::i;:::-;15757:4;15750:105;15668:193;15592:269;;;:::o;15867:73::-;15912:3;15867:73;:::o;15946:189::-;16023:32;;:::i;:::-;16064:65;16122:6;16114;16108:4;16064:65;:::i;:::-;15999:136;15946:189;;:::o;16141:186::-;16201:120;16218:3;16211:5;16208:14;16201:120;;;16272:39;16309:1;16302:5;16272:39;:::i;:::-;16245:1;16238:5;16234:13;16225:22;;16201:120;;;16141:186;;:::o;16333:543::-;16434:2;16429:3;16426:11;16423:446;;;16468:38;16500:5;16468:38;:::i;:::-;16552:29;16570:10;16552:29;:::i;:::-;16542:8;16538:44;16735:2;16723:10;16720:18;16717:49;;;16756:8;16741:23;;16717:49;16779:80;16835:22;16853:3;16835:22;:::i;:::-;16825:8;16821:37;16808:11;16779:80;:::i;:::-;16438:431;;16423:446;16333:543;;;:::o;16882:117::-;16936:8;16986:5;16980:4;16976:16;16955:37;;16882:117;;;;:::o;17005:169::-;17049:6;17082:51;17130:1;17126:6;17118:5;17115:1;17111:13;17082:51;:::i;:::-;17078:56;17163:4;17157;17153:15;17143:25;;17056:118;17005:169;;;;:::o;17179:295::-;17255:4;17401:29;17426:3;17420:4;17401:29;:::i;:::-;17393:37;;17463:3;17460:1;17456:11;17450:4;17447:21;17439:29;;17179:295;;;;:::o;17479:1395::-;17596:37;17629:3;17596:37;:::i;:::-;17698:18;17690:6;17687:30;17684:56;;;17720:18;;:::i;:::-;17684:56;17764:38;17796:4;17790:11;17764:38;:::i;:::-;17849:67;17909:6;17901;17895:4;17849:67;:::i;:::-;17943:1;17967:4;17954:17;;17999:2;17991:6;17988:14;18016:1;18011:618;;;;18673:1;18690:6;18687:77;;;18739:9;18734:3;18730:19;18724:26;18715:35;;18687:77;18790:67;18850:6;18843:5;18790:67;:::i;:::-;18784:4;18777:81;18646:222;17981:887;;18011:618;18063:4;18059:9;18051:6;18047:22;18097:37;18129:4;18097:37;:::i;:::-;18156:1;18170:208;18184:7;18181:1;18178:14;18170:208;;;18263:9;18258:3;18254:19;18248:26;18240:6;18233:42;18314:1;18306:6;18302:14;18292:24;;18361:2;18350:9;18346:18;18333:31;;18207:4;18204:1;18200:12;18195:17;;18170:208;;;18406:6;18397:7;18394:19;18391:179;;;18464:9;18459:3;18455:19;18449:26;18507:48;18549:4;18541:6;18537:17;18526:9;18507:48;:::i;:::-;18499:6;18492:64;18414:156;18391:179;18616:1;18612;18604:6;18600:14;18596:22;18590:4;18583:36;18018:611;;;17981:887;;17571:1303;;;17479:1395;;:::o;18880:181::-;19020:33;19016:1;19008:6;19004:14;18997:57;18880:181;:::o;19067:366::-;19209:3;19230:67;19294:2;19289:3;19230:67;:::i;:::-;19223:74;;19306:93;19395:3;19306:93;:::i;:::-;19424:2;19419:3;19415:12;19408:19;;19067:366;;;:::o;19439:419::-;19605:4;19643:2;19632:9;19628:18;19620:26;;19692:9;19686:4;19682:20;19678:1;19667:9;19663:17;19656:47;19720:131;19846:4;19720:131;:::i;:::-;19712:139;;19439:419;;;:::o;19864:225::-;20004:34;20000:1;19992:6;19988:14;19981:58;20073:8;20068:2;20060:6;20056:15;20049:33;19864:225;:::o;20095:366::-;20237:3;20258:67;20322:2;20317:3;20258:67;:::i;:::-;20251:74;;20334:93;20423:3;20334:93;:::i;:::-;20452:2;20447:3;20443:12;20436:19;;20095:366;;;:::o;20467:419::-;20633:4;20671:2;20660:9;20656:18;20648:26;;20720:9;20714:4;20710:20;20706:1;20695:9;20691:17;20684:47;20748:131;20874:4;20748:131;:::i;:::-;20740:139;;20467:419;;;:::o;20892:182::-;21032:34;21028:1;21020:6;21016:14;21009:58;20892:182;:::o;21080:366::-;21222:3;21243:67;21307:2;21302:3;21243:67;:::i;:::-;21236:74;;21319:93;21408:3;21319:93;:::i;:::-;21437:2;21432:3;21428:12;21421:19;;21080:366;;;:::o;21452:419::-;21618:4;21656:2;21645:9;21641:18;21633:26;;21705:9;21699:4;21695:20;21691:1;21680:9;21676:17;21669:47;21733:131;21859:4;21733:131;:::i;:::-;21725:139;;21452:419;;;:::o;21877:223::-;22017:34;22013:1;22005:6;22001:14;21994:58;22086:6;22081:2;22073:6;22069:15;22062:31;21877:223;:::o;22106:366::-;22248:3;22269:67;22333:2;22328:3;22269:67;:::i;:::-;22262:74;;22345:93;22434:3;22345:93;:::i;:::-;22463:2;22458:3;22454:12;22447:19;;22106:366;;;:::o;22478:419::-;22644:4;22682:2;22671:9;22667:18;22659:26;;22731:9;22725:4;22721:20;22717:1;22706:9;22702:17;22695:47;22759:131;22885:4;22759:131;:::i;:::-;22751:139;;22478:419;;;:::o;22903:221::-;23043:34;23039:1;23031:6;23027:14;23020:58;23112:4;23107:2;23099:6;23095:15;23088:29;22903:221;:::o;23130:366::-;23272:3;23293:67;23357:2;23352:3;23293:67;:::i;:::-;23286:74;;23369:93;23458:3;23369:93;:::i;:::-;23487:2;23482:3;23478:12;23471:19;;23130:366;;;:::o;23502:419::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23755:9;23749:4;23745:20;23741:1;23730:9;23726:17;23719:47;23783:131;23909:4;23783:131;:::i;:::-;23775:139;;23502:419;;;:::o;23927:410::-;23967:7;23990:20;24008:1;23990:20;:::i;:::-;23985:25;;24024:20;24042:1;24024:20;:::i;:::-;24019:25;;24079:1;24076;24072:9;24101:30;24119:11;24101:30;:::i;:::-;24090:41;;24280:1;24271:7;24267:15;24264:1;24261:22;24241:1;24234:9;24214:83;24191:139;;24310:18;;:::i;:::-;24191:139;23975:362;23927:410;;;;:::o;24343:442::-;24492:4;24530:2;24519:9;24515:18;24507:26;;24543:71;24611:1;24600:9;24596:17;24587:6;24543:71;:::i;:::-;24624:72;24692:2;24681:9;24677:18;24668:6;24624:72;:::i;:::-;24706;24774:2;24763:9;24759:18;24750:6;24706:72;:::i;:::-;24343:442;;;;;;:::o;24791:224::-;24931:34;24927:1;24919:6;24915:14;24908:58;25000:7;24995:2;24987:6;24983:15;24976:32;24791:224;:::o;25021:366::-;25163:3;25184:67;25248:2;25243:3;25184:67;:::i;:::-;25177:74;;25260:93;25349:3;25260:93;:::i;:::-;25378:2;25373:3;25369:12;25362:19;;25021:366;;;:::o;25393:419::-;25559:4;25597:2;25586:9;25582:18;25574:26;;25646:9;25640:4;25636:20;25632:1;25621:9;25617:17;25610:47;25674:131;25800:4;25674:131;:::i;:::-;25666:139;;25393:419;;;:::o;25818:222::-;25958:34;25954:1;25946:6;25942:14;25935:58;26027:5;26022:2;26014:6;26010:15;26003:30;25818:222;:::o;26046:366::-;26188:3;26209:67;26273:2;26268:3;26209:67;:::i;:::-;26202:74;;26285:93;26374:3;26285:93;:::i;:::-;26403:2;26398:3;26394:12;26387:19;;26046:366;;;:::o;26418:419::-;26584:4;26622:2;26611:9;26607:18;26599:26;;26671:9;26665:4;26661:20;26657:1;26646:9;26642:17;26635:47;26699:131;26825:4;26699:131;:::i;:::-;26691:139;;26418:419;;;:::o;26843:225::-;26983:34;26979:1;26971:6;26967:14;26960:58;27052:8;27047:2;27039:6;27035:15;27028:33;26843:225;:::o;27074:366::-;27216:3;27237:67;27301:2;27296:3;27237:67;:::i;:::-;27230:74;;27313:93;27402:3;27313:93;:::i;:::-;27431:2;27426:3;27422:12;27415:19;;27074:366;;;:::o;27446:419::-;27612:4;27650:2;27639:9;27635:18;27627:26;;27699:9;27693:4;27689:20;27685:1;27674:9;27670:17;27663:47;27727:131;27853:4;27727:131;:::i;:::-;27719:139;;27446:419;;;:::o;27871:220::-;28011:34;28007:1;27999:6;27995:14;27988:58;28080:3;28075:2;28067:6;28063:15;28056:28;27871:220;:::o;28097:366::-;28239:3;28260:67;28324:2;28319:3;28260:67;:::i;:::-;28253:74;;28336:93;28425:3;28336:93;:::i;:::-;28454:2;28449:3;28445:12;28438:19;;28097:366;;;:::o;28469:419::-;28635:4;28673:2;28662:9;28658:18;28650:26;;28722:9;28716:4;28712:20;28708:1;28697:9;28693:17;28686:47;28750:131;28876:4;28750:131;:::i;:::-;28742:139;;28469:419;;;:::o;28894:221::-;29034:34;29030:1;29022:6;29018:14;29011:58;29103:4;29098:2;29090:6;29086:15;29079:29;28894:221;:::o;29121:366::-;29263:3;29284:67;29348:2;29343:3;29284:67;:::i;:::-;29277:74;;29360:93;29449:3;29360:93;:::i;:::-;29478:2;29473:3;29469:12;29462:19;;29121:366;;;:::o;29493:419::-;29659:4;29697:2;29686:9;29682:18;29674:26;;29746:9;29740:4;29736:20;29732:1;29721:9;29717:17;29710:47;29774:131;29900:4;29774:131;:::i;:::-;29766:139;;29493:419;;;:::o;29918:179::-;30058:31;30054:1;30046:6;30042:14;30035:55;29918:179;:::o;30103:366::-;30245:3;30266:67;30330:2;30325:3;30266:67;:::i;:::-;30259:74;;30342:93;30431:3;30342:93;:::i;:::-;30460:2;30455:3;30451:12;30444:19;;30103:366;;;:::o;30475:419::-;30641:4;30679:2;30668:9;30664:18;30656:26;;30728:9;30722:4;30718:20;30714:1;30703:9;30699:17;30692:47;30756:131;30882:4;30756:131;:::i;:::-;30748:139;;30475:419;;;:::o

Swarm Source

ipfs://969e7bff446b265540cabedb631f23b7910df11073b226666c5e34c88dcb304e
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.