ETH Price: $2,549.95 (+2.60%)

Token

DonkeyKongDriftKing (DK)
 

Overview

Max Total Supply

1,000,000 DK

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.520618279122515468 DK

Value
$0.00
0x8c8e2f9831a7a054266a72903b7e06f89856ae61
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
V3ArenaToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-14
*/

// ARENA DEATHMATCH - Warning: When the countdown ends on arenadm.io, the contest is over and liquidity will be pulled. Exit before the timer ends and trade at your own risk.
// --------
// Token Deployed using Saintbot.
// Contract Renounced automatically.
// Liquidity Locked on UNCX, 0 Owner Tokens, Anti-Rug by default.
// Deploy and manage fair launch anti-rug tokens seamlessly and lightning-fast with low gas on our free-to-use Telegram bot.
// --------
// Website: https://arenadm.io/
// Twitter: https://twitter.com/arenadeathmatch
// Telegram Chat: https://t.me/arenaportal
// Gitbook: https://docs.arenadm.io

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;

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

/**
 * @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 Returns the address of the current owner.
   */
  function owner() public view virtual returns (address) {
    return _owner;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(owner() == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public virtual onlyOwner {
    _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);
  }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

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

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

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

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

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

  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
   *
   * The default value of {decimals} is 18. To select a different value for
   * {decimals} you should overload it.
   *
   * 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 value {ERC20} uses, unless this function is
   * 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:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(
    address recipient,
    uint256 amount
  ) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, 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}.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(
    address spender,
    uint256 amount
  ) public virtual override returns (bool) {
    _approve(_msgSender(), 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}.
   *
   * Requirements:
   *
   * - `sender` and `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   * - the caller must have allowance for ``sender``'s tokens of at least
   * `amount`.
   */
  function transferFrom(
    address sender,
    address recipient,
    uint256 amount
  ) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);

    uint256 currentAllowance = _allowances[sender][_msgSender()];
    require(
      currentAllowance >= amount,
      "ERC20: transfer amount exceeds allowance"
    );
    unchecked {
      _approve(sender, _msgSender(), currentAllowance - 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) {
    _approve(
      _msgSender(),
      spender,
      _allowances[_msgSender()][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) {
    uint256 currentAllowance = _allowances[_msgSender()][spender];
    require(
      currentAllowance >= subtractedValue,
      "ERC20: decreased allowance below zero"
    );
    unchecked {
      _approve(_msgSender(), spender, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Moves `amount` of tokens from `sender` to `recipient`.
   *
   * 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:
   *
   * - `sender` cannot be the zero address.
   * - `recipient` cannot be the zero address.
   * - `sender` must have a balance of at least `amount`.
   */
  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal virtual {
    require(sender != address(0), "ERC20: transfer from the zero address");
    require(recipient != address(0), "ERC20: transfer to the zero address");

    _beforeTokenTransfer(sender, recipient, amount);

    uint256 senderBalance = _balances[sender];
    require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
      _balances[sender] = senderBalance - amount;
    }
    _balances[recipient] += amount;

    emit Transfer(sender, recipient, amount);

    _afterTokenTransfer(sender, recipient, 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;
    _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;
    }
    _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 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 {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   *
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    return a + b;
  }

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

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   *
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    return a * b;
  }

  /**
   * @dev Returns the integer division of two unsigned integers, reverting on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator.
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return a / b;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * CAUTION: This function is deprecated because it requires allocating memory for the error
   * message unnecessarily. For custom revert reasons use {trySub}.
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    unchecked {
      require(b <= a, errorMessage);
      return a - b;
    }
  }

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

interface IUniswapV2Factory {
  function createPair(
    address tokenA,
    address tokenB
  ) external returns (address pair);
}

interface IUniswapV2Pair {
  event Approval(address indexed owner, address indexed spender, uint256 value);
  event Transfer(address indexed from, address indexed to, uint256 value);

  function name() external pure returns (string memory);

  function symbol() external pure returns (string memory);

  function decimals() external pure returns (uint8);

  function totalSupply() external view returns (uint256);

  function balanceOf(address owner) external view returns (uint256);

  function allowance(
    address owner,
    address spender
  ) external view returns (uint256);

  function approve(address spender, uint256 value) external returns (bool);

  function transfer(address to, uint256 value) external returns (bool);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool);

  function factory() external view returns (address);

  function token0() external view returns (address);

  function token1() external view returns (address);

  function mint(address to) external returns (uint256 liquidity);

  function burn(address to) external returns (uint256 amount0, uint256 amount1);

  function swap(
    uint256 amount0Out,
    uint256 amount1Out,
    address to,
    bytes calldata data
  ) external;
}

interface IUniswapV2Router02 {
  function factory() external pure returns (address);

  function WETH() external pure returns (address);

  function addLiquidity(
    address tokenA,
    address tokenB,
    uint256 amountADesired,
    uint256 amountBDesired,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

  function addLiquidityETH(
    address token,
    uint256 amountTokenDesired,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  )
    external
    payable
    returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

  function swapExactTokensForTokensSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;

  function swapExactETHForTokensSupportingFeeOnTransferTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable;

  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;
}

interface IERCBurn {
  function burn(uint256 _amount) external;

  function approve(address spender, uint256 amount) external returns (bool);

  function allowance(address owner, address spender) external returns (uint256);

  function balanceOf(address account) external view returns (uint256);
}

interface IUNCX {
  function lockLPToken(
    address _lpToken,
    uint256 _amount,
    uint256 _unlock_date,
    address payable _referral,
    bool _fee_in_eth,
    address payable _withdrawer
  ) external payable;

  struct FeeStruct {
    uint256 ethFee; // Small eth fee to prevent spam on the platform
    IERCBurn secondaryFeeToken; // UNCX or UNCL
    uint256 secondaryTokenFee; // optional, UNCX or UNCL
    uint256 secondaryTokenDiscount; // discount on liquidity fee for burning secondaryToken
    uint256 liquidityFee; // fee on univ2 liquidity tokens
    uint256 referralPercent; // fee for referrals
    IERCBurn referralToken; // token the refferer must hold to qualify as a referrer
    uint256 referralHold; // balance the referrer must hold to qualify as a referrer
    uint256 referralDiscount; // discount on flatrate fees for using a valid referral address
  }

  function gFees() external returns (FeeStruct memory);
}

interface IRefSys {
  function getRefReceiver(
    bytes memory _refCode
  ) external view returns (address receiverWallet);
}

contract V3ArenaToken is ERC20, Ownable {
  using SafeMath for uint256;

  IUNCX public constant LOCKER =
    IUNCX(0x663A5C229c09b049E36dCc11a9B0d4a8Eb9db214);

  IUniswapV2Router02 public immutable uniswapV2Router;
  address public immutable uniswapV2Pair;
  address public constant deadAddress = address(0xdead);

  bool private swapping;

  address public teamWallet;
  address public constant deployer = 0xB15d6eaa3FfF5d322E817E509bDaa47600065C04;

  uint256 public maxTransactionAmount;
  uint256 public swapTokensAtAmount;
  uint256 public maxWallet;

  bool public tradingActive = false;
  bool public swapEnabled = false;

  uint256 public buyTotalFees;
  uint256 public sellTotalFees;

  // When token was deployed
  uint256 public start;
  // start + time chosen by user
  uint256 public endPhase1;
  // start + endPhase1 + second time chosen by user
  uint256 public endPhase2;
  // If should apply custom fees
  bool public hasCustomPhases;
  // Phase 1 tax
  uint256 public phase1Tax;
  // Phase 2 tax
  uint256 public phase2Tax;
  // Minutes phase 1 is lasting
  uint256 public lengthPhase1;
  // Minutes phase 2 is lasting
  uint256 public lengthPhase2;

  // exclude from fees and max transaction amount
  mapping(address => bool) private _isExcludedFromFees;
  mapping(address => bool) public _isExcludedMaxTransactionAmount;

  // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
  // could be subject to a maximum transfer amount
  mapping(address => bool) public automatedMarketMakerPairs;

  event ExcludeFromFees(address indexed account, bool isExcluded);

  event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

  event teamWalletUpdated(address indexed newWallet, address indexed oldWallet);

  address public immutable REF;

  IRefSys public constant REF_SYS =
    IRefSys(0x8A99c005C7B425ce999441afeE22D4987F7a9869);
  address public constant MAINNET_BOT_TRADING_RECEIVER =
    0xD5E2E43e30b706de8A0e01e72a6aBa2b8930af44;

  function _validateCustomPhases(
    uint256 _lengthPhase1,
    uint256 _lengthPhase2,
    uint256 _phase1Tax,
    uint256 _phase2Tax
  ) private {
    uint256 rightNow = block.timestamp;
    require(
      _lengthPhase1 <= 20 minutes && _lengthPhase2 <= 20 minutes,
      "phases too long"
    );

    start = rightNow;

    // If UNIX time of endPhase 1 is bigger than current time it means that user has set the phased taxes
    if ((_lengthPhase1 + rightNow) > rightNow) {
      // Checks if its within threshold
      require(_phase1Tax > 0 && _phase1Tax <= 20, "threshold1");
      require(_phase2Tax > 0 && _phase2Tax <= 20, "threshold2");

      endPhase1 = rightNow + _lengthPhase1;
      endPhase2 = rightNow + _lengthPhase1 + _lengthPhase2;

      phase1Tax = _phase1Tax;
      phase2Tax = _phase2Tax;

      hasCustomPhases = true;

      lengthPhase1 = _lengthPhase1;
      lengthPhase2 = _lengthPhase2;
    } else {
      hasCustomPhases = false;
    }
  }

  constructor(
    string memory _name,
    string memory _symbol,
    uint256 _totalSupply,
    uint256 _buyTaxes,
    uint256 _sellTaxes,
    address _lockOwnerAndTaxReceiver,
    bytes memory _ref,
    uint256 _phase1Length,
    uint256 _phase2Length,
    uint256 _phase1Tax,
    uint256 _phase2Tax
  ) payable ERC20(_name, _symbol) {
    require(
      msg.value >= 0.3 ether,
      "weth liquidity need to be bigger than 0.3"
    );
    require(
      _totalSupply >= 10 && _totalSupply <= 1_000_000_000_000_000,
      "InvalidSupply()"
    );
    require(_buyTaxes >= 1 && _buyTaxes <= 7, "InvalidTaxes()");
    require(_sellTaxes >= 1 && _sellTaxes <= 7, "InvalidTaxes()");

    _validateCustomPhases(_phase1Length, _phase2Length, _phase1Tax, _phase2Tax);

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
      0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
    );

    excludeFromMaxTransaction(address(_uniswapV2Router), true);

    uniswapV2Router = _uniswapV2Router;

    uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
      address(this),
      _uniswapV2Router.WETH()
    );

    excludeFromMaxTransaction(address(uniswapV2Pair), true);
    _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

    uint256 totalSupply_ = _totalSupply * 1e18;

    maxTransactionAmount = (totalSupply_ * 3) / 100;
    maxWallet = (totalSupply_ * 6) / 100;
    swapTokensAtAmount = (totalSupply_ * 5) / 10000; // 0.05%

    buyTotalFees = _buyTaxes;
    sellTotalFees = _sellTaxes;

    teamWallet = _lockOwnerAndTaxReceiver; // set as team wallet

    // exclude from paying fees or having max transaction amount
    excludeFromFees(address(this), true);
    excludeFromFees(address(0xdead), true);

    excludeFromMaxTransaction(address(this), true);
    excludeFromMaxTransaction(address(0xdead), true);
    excludeFromMaxTransaction(address(uniswapV2Router), true);
    excludeFromMaxTransaction(msg.sender, true);

    REF = REF_SYS.getRefReceiver(_ref);

    /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
    _mint(address(this), totalSupply_);
  }

  function addLiquidity() external {
    require(msg.sender == owner(), "auth");

    _approve(address(this), address(uniswapV2Router), totalSupply());
    tradingActive = true;
    swapEnabled = true;

    // uint256 uncxExpenses = LOCKER.gFees().ethFee;
    address _pair = address(uniswapV2Pair);

    uniswapV2Router.addLiquidityETH{value: address(this).balance}(
      address(this),
      balanceOf(address(this)),
      0,
      0,
      msg.sender,
      block.timestamp
    );

    // IERCBurn(_pair).approve(address(LOCKER), IERC20(_pair).balanceOf(address(this)));

    // LOCKER.lockLPToken{value: uncxExpenses}(
    //     address(_pair),
    //     IERC20(_pair).balanceOf(address(this)),
    //     block.timestamp + 2 days,
    //     payable(address(0)),
    //     true,
    //     payable(deployer)
    // );

    renounceOwnership();
  }

  receive() external payable {}

  function excludeFromMaxTransaction(address updAds, bool isEx) internal {
    _isExcludedMaxTransactionAmount[updAds] = isEx;
  }

  function excludeFromFees(address account, bool excluded) internal {
    _isExcludedFromFees[account] = excluded;
    emit ExcludeFromFees(account, excluded);
  }

  function setAutomatedMarketMakerPair(address pair, bool value) internal {
    require(
      pair != uniswapV2Pair,
      "The pair cannot be removed from automatedMarketMakerPairs"
    );

    _setAutomatedMarketMakerPair(pair, value);
  }

  function _setAutomatedMarketMakerPair(address pair, bool value) private {
    automatedMarketMakerPairs[pair] = value;

    emit SetAutomatedMarketMakerPair(pair, value);
  }

  function updateTeamWallet(address newWallet) external {
    require(msg.sender == teamWallet, "auth");

    emit teamWalletUpdated(newWallet, teamWallet);

    teamWallet = newWallet;
  }

  function isExcludedFromFees(address account) public view returns (bool) {
    return _isExcludedFromFees[account];
  }

  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal override {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");

    if (amount == 0) {
      super._transfer(from, to, 0);
      return;
    }

    if (to != address(0) && to != address(0xdead) && !swapping) {
      if (!tradingActive) {
        require(
          _isExcludedFromFees[from] || _isExcludedFromFees[to],
          "Trading is not active."
        );
      }

      //when buy
      if (
        automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]
      ) {
        require(
          amount <= maxTransactionAmount,
          "Buy transfer amount exceeds the maxTransactionAmount."
        );
        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
      }
      //when sell
      else if (
        automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]
      ) {
        require(
          amount <= maxTransactionAmount,
          "Sell transfer amount exceeds the maxTransactionAmount."
        );
      } else if (!_isExcludedMaxTransactionAmount[to]) {
        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
      }
    }

    uint256 contractTokenBalance = balanceOf(address(this));

    bool canSwap = contractTokenBalance >= swapTokensAtAmount;
    uint256 sellFee_;
    uint256 buyFee_;

    bool customDistr = true;

    if (hasCustomPhases && block.timestamp < (endPhase2 - lengthPhase2)) {
      sellFee_ = phase1Tax;
      buyFee_ = sellFee_;
    } else if (hasCustomPhases && block.timestamp < endPhase2) {
      sellFee_ = phase2Tax;
      buyFee_ = phase2Tax;
    } else {
      sellFee_ = sellTotalFees;
      buyFee_ = buyTotalFees;
      customDistr = false;
    }

    if (
      canSwap &&
      swapEnabled &&
      !swapping &&
      !automatedMarketMakerPairs[from] &&
      !_isExcludedFromFees[from] &&
      !_isExcludedFromFees[to]
    ) {
      swapping = true;

      swapBack(customDistr);

      swapping = false;
    }

    bool takeFee = !swapping;

    // if any account belongs to _isExcludedFromFee account then remove the fee
    if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
      takeFee = false;
    }

    uint256 fees = 0;

    // only take fees on buys/sells, do not take on wallet transfers
    if (takeFee) {
      // on sell
      if (automatedMarketMakerPairs[to] && sellFee_ > 0) {
        fees = amount.mul(sellFee_).div(100);
      }
      // on buy
      else if (automatedMarketMakerPairs[from] && buyFee_ > 0) {
        fees = amount.mul(buyFee_).div(100);
      }

      if (fees > 0) {
        super._transfer(from, address(this), fees);
      }

      amount -= fees;
    }

    super._transfer(from, to, amount);
  }

  function swapTokensForEth(uint256 tokenAmount) private {
    // generate the uniswap pair path of token -> weth
    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = uniswapV2Router.WETH();

    _approve(address(this), address(uniswapV2Router), tokenAmount);

    // make the swap
    uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
      tokenAmount,
      0, // accept any amount of ETH
      path,
      address(this),
      block.timestamp
    );
  }

  function swapBack(bool _customDistr) private {
    uint256 contractBalance = balanceOf(address(this));

    swapTokensForEth(contractBalance);

    uint256 ethBalance = address(this).balance;

    if (_customDistr) {
      if (REF == address(0)) {
        // If user has not entered a ref code, he will receive 3.5% fees
        uint256 taxWalletAmount = (ethBalance * 70) / 100;

        // Send 70% of the fees
        (bool success, ) = teamWallet.call{value: taxWalletAmount}("");

        require(success, "failed sending eth");

        address payable SAINTBOT_TAXES = payable(MAINNET_BOT_TRADING_RECEIVER);

        // Send 100% - 70% of the fees to us
        (success, ) = SAINTBOT_TAXES.call{value: ethBalance - taxWalletAmount}(
          ""
        );

        require(success, "failed sending eth");
      } else {
        // If user used a ref, he will receive 72% of the fees, that would be 3.6% fees
        uint256 taxWalletAmount = (ethBalance * 72) / 100;

        // Send 72% of the fees
        (bool success, ) = teamWallet.call{value: taxWalletAmount}("");

        require(success, "failed sending eth");

        payable(REF).transfer((taxWalletAmount * 3) / 100);

        address payable SAINTBOT_TAXES = payable(MAINNET_BOT_TRADING_RECEIVER);
        (success, ) = SAINTBOT_TAXES.call{value: (ethBalance * 25) / 100}("");

        require(success, "failed sending eth");
      }
    } else {
      if (REF == address(0)) {
        // If user has not entered a ref code, he will receive 4% fees
        uint256 taxWalletAmount = (ethBalance * 80) / 100;

        // Send 80% of the fees
        (bool success, ) = teamWallet.call{value: taxWalletAmount}("");

        require(success, "failed sending eth");

        address payable SAINTBOT_TAXES = payable(MAINNET_BOT_TRADING_RECEIVER);

        // Send 100% - 80% of the fees to us
        (success, ) = SAINTBOT_TAXES.call{value: ethBalance - taxWalletAmount}(
          ""
        );

        require(success, "failed sending eth");
      } else {
        // If he did enter a ref code, he will receive 4.1% fees
        uint256 taxWalletAmount = (ethBalance * 82) / 100;

        // Send 82% of the fees
        (bool success, ) = teamWallet.call{value: taxWalletAmount}("");

        require(success, "failed sending eth");

        // 0.15% to ref address, meaning that its 3% out of the 5%
        payable(REF).transfer((taxWalletAmount * 3) / 100);

        address payable SAINTBOT_TAXES = payable(MAINNET_BOT_TRADING_RECEIVER);

        (success, ) = SAINTBOT_TAXES.call{value: (ethBalance * 15) / 100}("");

        require(success, "failed sending eth");
      }
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_buyTaxes","type":"uint256"},{"internalType":"uint256","name":"_sellTaxes","type":"uint256"},{"internalType":"address","name":"_lockOwnerAndTaxReceiver","type":"address"},{"internalType":"bytes","name":"_ref","type":"bytes"},{"internalType":"uint256","name":"_phase1Length","type":"uint256"},{"internalType":"uint256","name":"_phase2Length","type":"uint256"},{"internalType":"uint256","name":"_phase1Tax","type":"uint256"},{"internalType":"uint256","name":"_phase2Tax","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"LOCKER","outputs":[{"internalType":"contract IUNCX","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAINNET_BOT_TRADING_RECEIVER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REF","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REF_SYS","outputs":[{"internalType":"contract IRefSys","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasCustomPhases","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lengthPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lengthPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"phase1Tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040525f600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff021916908315150217905550604051620058163803806200581683398181016040528101906200005c919062000eb8565b8a8a81600390816200006f919062001249565b50806004908162000081919062001249565b505050620000a4620000986200065760201b60201c565b6200065e60201b60201c565b670429d069189e0000341015620000f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000e990620013b1565b60405180910390fd5b600a89101580156200010b575066038d7ea4c680008911155b6200014d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000144906200141f565b60405180910390fd5b6001881015801562000160575060078811155b620001a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000199906200148d565b60405180910390fd5b60018710158015620001b5575060078711155b620001f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ee906200148d565b60405180910390fd5b6200020b848484846200072160201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000236816001620008d160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002da9190620014ad565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000340573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003669190620014ad565b6040518363ffffffff1660e01b815260040162000385929190620014ee565b6020604051808303815f875af1158015620003a2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003c89190620014ad565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200041060a0516001620008d160201b60201c565b6200042560a05160016200092960201b60201c565b5f670de0b6b3a76400008b6200043c919062001546565b905060646003826200044f919062001546565b6200045b9190620015bd565b600781905550606460068262000472919062001546565b6200047e9190620015bd565b60098190555061271060058262000496919062001546565b620004a29190620015bd565b60088190555089600b8190555088600c819055508760065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000509306001620009c760201b60201c565b6200051e61dead6001620009c760201b60201c565b62000531306001620008d160201b60201c565b6200054661dead6001620008d160201b60201c565b6200055b6080516001620008d160201b60201c565b6200056e336001620008d160201b60201c565b738a99c005c7b425ce999441afee22d4987f7a986973ffffffffffffffffffffffffffffffffffffffff1663eec40869886040518263ffffffff1660e01b8152600401620005bd91906200164e565b602060405180830381865afa158015620005d9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620005ff9190620014ad565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505062000644308262000a6f60201b60201c565b50505050505050505050505050620018c5565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f4290506104b085111580156200073a57506104b08411155b6200077c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077390620016be565b60405180910390fd5b80600d81905550808186620007929190620016de565b1115620008b0575f83118015620007aa575060148311155b620007ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e39062001766565b60405180910390fd5b5f82118015620007fd575060148211155b6200083f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083690620017d4565b60405180910390fd5b84816200084d9190620016de565b600e81905550838582620008629190620016de565b6200086e9190620016de565b600f819055508260118190555081601281905550600160105f6101000a81548160ff0219169083151502179055508460138190555083601481905550620008ca565b5f60105f6101000a81548160ff0219169083151502179055505b5050505050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a63919062001810565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ae0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad79062001879565b60405180910390fd5b62000af35f838362000bdf60201b60201c565b8060025f82825462000b069190620016de565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000b5a9190620016de565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bc09190620018aa565b60405180910390a362000bdb5f838362000be460201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000c4a8262000c02565b810181811067ffffffffffffffff8211171562000c6c5762000c6b62000c12565b5b80604052505050565b5f62000c8062000be9565b905062000c8e828262000c3f565b919050565b5f67ffffffffffffffff82111562000cb05762000caf62000c12565b5b62000cbb8262000c02565b9050602081019050919050565b5f5b8381101562000ce757808201518184015260208101905062000cca565b5f8484015250505050565b5f62000d0862000d028462000c93565b62000c75565b90508281526020810184848401111562000d275762000d2662000bfe565b5b62000d3484828562000cc8565b509392505050565b5f82601f83011262000d535762000d5262000bfa565b5b815162000d6584826020860162000cf2565b91505092915050565b5f819050919050565b62000d828162000d6e565b811462000d8d575f80fd5b50565b5f8151905062000da08162000d77565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000dd18262000da6565b9050919050565b62000de38162000dc5565b811462000dee575f80fd5b50565b5f8151905062000e018162000dd8565b92915050565b5f67ffffffffffffffff82111562000e245762000e2362000c12565b5b62000e2f8262000c02565b9050602081019050919050565b5f62000e5262000e4c8462000e07565b62000c75565b90508281526020810184848401111562000e715762000e7062000bfe565b5b62000e7e84828562000cc8565b509392505050565b5f82601f83011262000e9d5762000e9c62000bfa565b5b815162000eaf84826020860162000e3c565b91505092915050565b5f805f805f805f805f805f6101608c8e03121562000edb5762000eda62000bf2565b5b5f8c015167ffffffffffffffff81111562000efb5762000efa62000bf6565b5b62000f098e828f0162000d3c565b9b505060208c015167ffffffffffffffff81111562000f2d5762000f2c62000bf6565b5b62000f3b8e828f0162000d3c565b9a5050604062000f4e8e828f0162000d90565b995050606062000f618e828f0162000d90565b985050608062000f748e828f0162000d90565b97505060a062000f878e828f0162000df1565b96505060c08c015167ffffffffffffffff81111562000fab5762000faa62000bf6565b5b62000fb98e828f0162000e86565b95505060e062000fcc8e828f0162000d90565b94505061010062000fe08e828f0162000d90565b93505061012062000ff48e828f0162000d90565b925050610140620010088e828f0162000d90565b9150509295989b509295989b9093969950565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200106a57607f821691505b60208210810362001080576200107f62001025565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620010e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620010a7565b620010f08683620010a7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620011316200112b620011258462000d6e565b62001108565b62000d6e565b9050919050565b5f819050919050565b6200114c8362001111565b620011646200115b8262001138565b848454620010b3565b825550505050565b5f90565b6200117a6200116c565b6200118781848462001141565b505050565b5b81811015620011ae57620011a25f8262001170565b6001810190506200118d565b5050565b601f821115620011fd57620011c78162001086565b620011d28462001098565b81016020851015620011e2578190505b620011fa620011f18562001098565b8301826200118c565b50505b505050565b5f82821c905092915050565b5f6200121f5f198460080262001202565b1980831691505092915050565b5f6200123983836200120e565b9150826002028217905092915050565b62001254826200101b565b67ffffffffffffffff81111562001270576200126f62000c12565b5b6200127c825462001052565b62001289828285620011b2565b5f60209050601f831160018114620012bf575f8415620012aa578287015190505b620012b685826200122c565b86555062001325565b601f198416620012cf8662001086565b5f5b82811015620012f857848901518255600182019150602085019450602081019050620012d1565b8683101562001318578489015162001314601f8916826200120e565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f77657468206c6971756964697479206e65656420746f206265206269676765725f8201527f207468616e20302e330000000000000000000000000000000000000000000000602082015250565b5f620013996029836200132d565b9150620013a6826200133d565b604082019050919050565b5f6020820190508181035f830152620013ca816200138b565b9050919050565b7f496e76616c6964537570706c79282900000000000000000000000000000000005f82015250565b5f62001407600f836200132d565b91506200141482620013d1565b602082019050919050565b5f6020820190508181035f8301526200143881620013f9565b9050919050565b7f496e76616c6964546178657328290000000000000000000000000000000000005f82015250565b5f62001475600e836200132d565b915062001482826200143f565b602082019050919050565b5f6020820190508181035f830152620014a68162001467565b9050919050565b5f60208284031215620014c557620014c462000bf2565b5b5f620014d48482850162000df1565b91505092915050565b620014e88162000dc5565b82525050565b5f604082019050620015035f830185620014dd565b620015126020830184620014dd565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620015528262000d6e565b91506200155f8362000d6e565b92508282026200156f8162000d6e565b9150828204841483151762001589576200158862001519565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620015c98262000d6e565b9150620015d68362000d6e565b925082620015e957620015e862001590565b5b828204905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6200161a82620015f4565b620016268185620015fe565b93506200163881856020860162000cc8565b620016438162000c02565b840191505092915050565b5f6020820190508181035f8301526200166881846200160e565b905092915050565b7f70686173657320746f6f206c6f6e6700000000000000000000000000000000005f82015250565b5f620016a6600f836200132d565b9150620016b38262001670565b602082019050919050565b5f6020820190508181035f830152620016d78162001698565b9050919050565b5f620016ea8262000d6e565b9150620016f78362000d6e565b925082820190508082111562001712576200171162001519565b5b92915050565b7f7468726573686f6c6431000000000000000000000000000000000000000000005f82015250565b5f6200174e600a836200132d565b91506200175b8262001718565b602082019050919050565b5f6020820190508181035f8301526200177f8162001740565b9050919050565b7f7468726573686f6c6432000000000000000000000000000000000000000000005f82015250565b5f620017bc600a836200132d565b9150620017c98262001786565b602082019050919050565b5f6020820190508181035f830152620017ed81620017ae565b9050919050565b5f8115159050919050565b6200180a81620017f4565b82525050565b5f602082019050620018255f830184620017ff565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001861601f836200132d565b91506200186e826200182b565b602082019050919050565b5f6020820190508181035f830152620018928162001853565b9050919050565b620018a48162000d6e565b82525050565b5f602082019050620018bf5f83018462001899565b92915050565b60805160a05160c051613ee0620019365f395f8181610a02015281816123e7015281816126c1015281816128360152612b1001525f8181610ce2015261138201525f8181610b080152818161131e015281816113a501528181612d3e01528181612e1d0152612e440152613ee05ff3fe60806040526004361061025f575f3560e01c80637b2829b811610143578063be9a6555116100b5578063dd62ed3e11610079578063dd62ed3e14610908578063e2f4560514610944578063e8078d941461096e578063f2fde38b14610984578063f493c187146109ac578063f8b45b05146109d657610266565b8063be9a655514610836578063c8c8ebe414610860578063d0bb6c0b1461088a578063d5f39488146108b4578063d85ba063146108de57610266565b8063a457c2d711610107578063a457c2d714610704578063a9059cbb14610740578063b24695411461077c578063b62496f5146107a6578063bbc0c742146107e2578063bbe7efa31461080c57610266565b80637b2829b8146106345780637cb332bb1461065e5780638da5cb5b1461068657806395d89b41146106b0578063a2e062ec146106da57610266565b806339509351116101dc578063671241a1116101a0578063671241a11461053a5780636a486a8e146105645780636ddd17131461058e57806370a08231146105b8578063715018a6146105f4578063757dd3151461060a57610266565b806339509351146104445780633ccef2261461048057806349bd5a5e146104aa5780634fbee193146104d4578063599270441461051057610266565b80631694505e116102235780631694505e1461036057806318160ddd1461038a57806323b872dd146103b457806327c8f835146103f0578063313ce5671461041a57610266565b8063066034fc1461026a57806306fdde031461029457806308ecd9a6146102be578063095ea7b3146102e857806310d5de531461032457610266565b3661026657005b5f80fd5b348015610275575f80fd5b5061027e610a00565b60405161028b9190612f13565b60405180910390f35b34801561029f575f80fd5b506102a8610a24565b6040516102b59190612fb6565b60405180910390f35b3480156102c9575f80fd5b506102d2610ab4565b6040516102df9190613031565b60405180910390f35b3480156102f3575f80fd5b5061030e600480360381019061030991906130ab565b610acc565b60405161031b9190613103565b60405180910390f35b34801561032f575f80fd5b5061034a6004803603810190610345919061311c565b610ae9565b6040516103579190613103565b60405180910390f35b34801561036b575f80fd5b50610374610b06565b6040516103819190613167565b60405180910390f35b348015610395575f80fd5b5061039e610b2a565b6040516103ab919061318f565b60405180910390f35b3480156103bf575f80fd5b506103da60048036038101906103d591906131a8565b610b33565b6040516103e79190613103565b60405180910390f35b3480156103fb575f80fd5b50610404610c25565b6040516104119190612f13565b60405180910390f35b348015610425575f80fd5b5061042e610c2b565b60405161043b9190613213565b60405180910390f35b34801561044f575f80fd5b5061046a600480360381019061046591906130ab565b610c33565b6040516104779190613103565b60405180910390f35b34801561048b575f80fd5b50610494610cda565b6040516104a1919061318f565b60405180910390f35b3480156104b5575f80fd5b506104be610ce0565b6040516104cb9190612f13565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f5919061311c565b610d04565b6040516105079190613103565b60405180910390f35b34801561051b575f80fd5b50610524610d56565b6040516105319190612f13565b60405180910390f35b348015610545575f80fd5b5061054e610d7b565b60405161055b919061324c565b60405180910390f35b34801561056f575f80fd5b50610578610d93565b604051610585919061318f565b60405180910390f35b348015610599575f80fd5b506105a2610d99565b6040516105af9190613103565b60405180910390f35b3480156105c3575f80fd5b506105de60048036038101906105d9919061311c565b610dac565b6040516105eb919061318f565b60405180910390f35b3480156105ff575f80fd5b50610608610df1565b005b348015610615575f80fd5b5061061e610e78565b60405161062b919061318f565b60405180910390f35b34801561063f575f80fd5b50610648610e7e565b604051610655919061318f565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f919061311c565b610e84565b005b348015610691575f80fd5b5061069a610fd1565b6040516106a79190612f13565b60405180910390f35b3480156106bb575f80fd5b506106c4610ff9565b6040516106d19190612fb6565b60405180910390f35b3480156106e5575f80fd5b506106ee611089565b6040516106fb9190613103565b60405180910390f35b34801561070f575f80fd5b5061072a600480360381019061072591906130ab565b61109b565b6040516107379190613103565b60405180910390f35b34801561074b575f80fd5b50610766600480360381019061076191906130ab565b611181565b6040516107739190613103565b60405180910390f35b348015610787575f80fd5b5061079061119e565b60405161079d919061318f565b60405180910390f35b3480156107b1575f80fd5b506107cc60048036038101906107c7919061311c565b6111a4565b6040516107d99190613103565b60405180910390f35b3480156107ed575f80fd5b506107f66111c1565b6040516108039190613103565b60405180910390f35b348015610817575f80fd5b506108206111d3565b60405161082d919061318f565b60405180910390f35b348015610841575f80fd5b5061084a6111d9565b604051610857919061318f565b60405180910390f35b34801561086b575f80fd5b506108746111df565b604051610881919061318f565b60405180910390f35b348015610895575f80fd5b5061089e6111e5565b6040516108ab9190612f13565b60405180910390f35b3480156108bf575f80fd5b506108c86111fd565b6040516108d59190612f13565b60405180910390f35b3480156108e9575f80fd5b506108f2611215565b6040516108ff919061318f565b60405180910390f35b348015610913575f80fd5b5061092e60048036038101906109299190613265565b61121b565b60405161093b919061318f565b60405180910390f35b34801561094f575f80fd5b5061095861129d565b604051610965919061318f565b60405180910390f35b348015610979575f80fd5b506109826112a3565b005b34801561098f575f80fd5b506109aa60048036038101906109a5919061311c565b61145e565b005b3480156109b7575f80fd5b506109c0611554565b6040516109cd919061318f565b60405180910390f35b3480156109e1575f80fd5b506109ea61155a565b6040516109f7919061318f565b60405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000081565b606060038054610a33906132d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906132d0565b8015610aaa5780601f10610a8157610100808354040283529160200191610aaa565b820191905f5260205f20905b815481529060010190602001808311610a8d57829003601f168201915b5050505050905090565b73663a5c229c09b049e36dcc11a9b0d4a8eb9db21481565b5f610adf610ad8611560565b8484611567565b6001905092915050565b6016602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f610b3f84848461172a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b86611560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90613370565b60405180910390fd5b610c1985610c11611560565b858403611567565b60019150509392505050565b61dead81565b5f6012905090565b5f610cd0610c3f611560565b848460015f610c4c611560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610ccb91906133bb565b611567565b6001905092915050565b60145481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b738a99c005c7b425ce999441afee22d4987f7a986981565b600c5481565b600a60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610df9611560565b73ffffffffffffffffffffffffffffffffffffffff16610e17610fd1565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613438565b60405180910390fd5b610e765f612077565b565b60125481565b60135481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906134a0565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611008906132d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611034906132d0565b801561107f5780601f106110565761010080835404028352916020019161107f565b820191905f5260205f20905b81548152906001019060200180831161106257829003601f168201915b5050505050905090565b60105f9054906101000a900460ff1681565b5f8060015f6110a8611560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111599061352e565b60405180910390fd5b61117661116d611560565b85858403611567565b600191505092915050565b5f61119461118d611560565b848461172a565b6001905092915050565b600f5481565b6017602052805f5260405f205f915054906101000a900460ff1681565b600a5f9054906101000a900460ff1681565b600e5481565b600d5481565b60075481565b73d5e2e43e30b706de8a0e01e72a6aba2b8930af4481565b73b15d6eaa3fff5d322e817e509bdaa47600065c0481565b600b5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6112ab610fd1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f906134a0565b60405180910390fd5b61134a307f0000000000000000000000000000000000000000000000000000000000000000611345610b2a565b611567565b6001600a5f6101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055505f7f000000000000000000000000000000000000000000000000000000000000000090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306113ea30610dac565b5f8033426040518863ffffffff1660e01b815260040161140f96959493929190613585565b60606040518083038185885af115801561142b573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061145091906135f8565b50505061145b610df1565b50565b611466611560565b73ffffffffffffffffffffffffffffffffffffffff16611484610fd1565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613438565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f906136b8565b60405180910390fd5b61155181612077565b50565b60115481565b60095481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613746565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a906137d4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161171d919061318f565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613862565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906138f0565b60405180910390fd5b5f810361181d5761181883835f61213a565b612072565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611887575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118a05750600560149054906101000a900460ff16155b15611c6d57600a5f9054906101000a900460ff166119935760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611953575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613958565b60405180910390fd5b5b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611a30575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ad757600754811115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906139e6565b60405180910390fd5b600954611a8683610dac565b82611a9191906133bb565b1115611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613a4e565b60405180910390fd5b611c6c565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611b74575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611bc357600754811115611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613adc565b60405180910390fd5b611c6b565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611c6a57600954611c1d83610dac565b82611c2891906133bb565b1115611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613a4e565b60405180910390fd5b5b5b5b5b5f611c7730610dac565b90505f60085482101590505f805f6001905060105f9054906101000a900460ff168015611cb25750601454600f54611caf9190613afa565b42105b15611cc4576011549250829150611d03565b60105f9054906101000a900460ff168015611ce05750600f5442105b15611cf45760125492506012549150611d02565b600c549250600b5491505f90505b5b838015611d1c5750600a60019054906101000a900460ff165b8015611d355750600560149054906101000a900460ff16155b8015611d88575060175f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ddb575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e2e575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e72576001600560146101000a81548160ff021916908315150217905550611e57816123af565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060155f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f21575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611f2a575f90505b5f811561205f5760175f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f8657505f85115b15611fb857611fb16064611fa3878b612c6d90919063ffffffff16565b612c8290919063ffffffff16565b905061203c565b60175f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561200d57505f84115b1561203b57612038606461202a868b612c6d90919063ffffffff16565b612c8290919063ffffffff16565b90505b5b5f8111156120505761204f8a308361213a565b5b808861205c9190613afa565b97505b61206a8a8a8a61213a565b505050505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90613862565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d906138f0565b60405180910390fd5b612221838383612c97565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b90613b9d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461233291906133bb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612396919061318f565b60405180910390a36123a9848484612c9c565b50505050565b5f6123b930610dac565b90506123c481612ca1565b5f479050821561281d575f73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16036125da575f60646046836124319190613bbb565b61243b9190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161248390613c86565b5f6040518083038185875af1925050503d805f81146124bd576040519150601f19603f3d011682016040523d82523d5f602084013e6124c2565b606091505b5050905080612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90613ce4565b60405180910390fd5b5f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff1683856125419190613afa565b60405161254d90613c86565b5f6040518083038185875af1925050503d805f8114612587576040519150601f19603f3d011682016040523d82523d5f602084013e61258c565b606091505b505080925050816125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990613ce4565b60405180910390fd5b505050612818565b5f60646048836125ea9190613bbb565b6125f49190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161263c90613c86565b5f6040518083038185875af1925050503d805f8114612676576040519150601f19603f3d011682016040523d82523d5f602084013e61267b565b606091505b50509050806126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b690613ce4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc60646003856127089190613bbb565b6127129190613c29565b90811502906040515f60405180830381858888f1935050505015801561273a573d5f803e3d5ffd5b505f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff1660646019866127799190613bbb565b6127839190613c29565b60405161278f90613c86565b5f6040518083038185875af1925050503d805f81146127c9576040519150601f19603f3d011682016040523d82523d5f602084013e6127ce565b606091505b50508092505081612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90613ce4565b60405180910390fd5b5050505b612c68565b5f73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612a29575f60646050836128809190613bbb565b61288a9190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516128d290613c86565b5f6040518083038185875af1925050503d805f811461290c576040519150601f19603f3d011682016040523d82523d5f602084013e612911565b606091505b5050905080612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c90613ce4565b60405180910390fd5b5f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff1683856129909190613afa565b60405161299c90613c86565b5f6040518083038185875af1925050503d805f81146129d6576040519150601f19603f3d011682016040523d82523d5f602084013e6129db565b606091505b50508092505081612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890613ce4565b60405180910390fd5b505050612c67565b5f6064605283612a399190613bbb565b612a439190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612a8b90613c86565b5f6040518083038185875af1925050503d805f8114612ac5576040519150601f19603f3d011682016040523d82523d5f602084013e612aca565b606091505b5050905080612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0590613ce4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc6064600385612b579190613bbb565b612b619190613c29565b90811502906040515f60405180830381858888f19350505050158015612b89573d5f803e3d5ffd5b505f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff166064600f86612bc89190613bbb565b612bd29190613c29565b604051612bde90613c86565b5f6040518083038185875af1925050503d805f8114612c18576040519150601f19603f3d011682016040523d82523d5f602084013e612c1d565b606091505b50508092505081612c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5a90613ce4565b60405180910390fd5b5050505b5b505050565b5f8183612c7a9190613bbb565b905092915050565b5f8183612c8f9190613c29565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115612cbd57612cbc613d02565b5b604051908082528060200260200182016040528015612ceb5781602001602082028036833780820191505090505b50905030815f81518110612d0257612d01613d2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612da5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dc99190613d70565b81600181518110612ddd57612ddc613d2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e42307f000000000000000000000000000000000000000000000000000000000000000084611567565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ea3959493929190613e52565b5f604051808303815f87803b158015612eba575f80fd5b505af1158015612ecc573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612efd82612ed4565b9050919050565b612f0d81612ef3565b82525050565b5f602082019050612f265f830184612f04565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612f63578082015181840152602081019050612f48565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612f8882612f2c565b612f928185612f36565b9350612fa2818560208601612f46565b612fab81612f6e565b840191505092915050565b5f6020820190508181035f830152612fce8184612f7e565b905092915050565b5f819050919050565b5f612ff9612ff4612fef84612ed4565b612fd6565b612ed4565b9050919050565b5f61300a82612fdf565b9050919050565b5f61301b82613000565b9050919050565b61302b81613011565b82525050565b5f6020820190506130445f830184613022565b92915050565b5f80fd5b61305781612ef3565b8114613061575f80fd5b50565b5f813590506130728161304e565b92915050565b5f819050919050565b61308a81613078565b8114613094575f80fd5b50565b5f813590506130a581613081565b92915050565b5f80604083850312156130c1576130c061304a565b5b5f6130ce85828601613064565b92505060206130df85828601613097565b9150509250929050565b5f8115159050919050565b6130fd816130e9565b82525050565b5f6020820190506131165f8301846130f4565b92915050565b5f602082840312156131315761313061304a565b5b5f61313e84828501613064565b91505092915050565b5f61315182613000565b9050919050565b61316181613147565b82525050565b5f60208201905061317a5f830184613158565b92915050565b61318981613078565b82525050565b5f6020820190506131a25f830184613180565b92915050565b5f805f606084860312156131bf576131be61304a565b5b5f6131cc86828701613064565b93505060206131dd86828701613064565b92505060406131ee86828701613097565b9150509250925092565b5f60ff82169050919050565b61320d816131f8565b82525050565b5f6020820190506132265f830184613204565b92915050565b5f61323682613000565b9050919050565b6132468161322c565b82525050565b5f60208201905061325f5f83018461323d565b92915050565b5f806040838503121561327b5761327a61304a565b5b5f61328885828601613064565b925050602061329985828601613064565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132e757607f821691505b6020821081036132fa576132f96132a3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61335a602883612f36565b915061336582613300565b604082019050919050565b5f6020820190508181035f8301526133878161334e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133c582613078565b91506133d083613078565b92508282019050808211156133e8576133e761338e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613422602083612f36565b915061342d826133ee565b602082019050919050565b5f6020820190508181035f83015261344f81613416565b9050919050565b7f61757468000000000000000000000000000000000000000000000000000000005f82015250565b5f61348a600483612f36565b915061349582613456565b602082019050919050565b5f6020820190508181035f8301526134b78161347e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613518602583612f36565b9150613523826134be565b604082019050919050565b5f6020820190508181035f8301526135458161350c565b9050919050565b5f819050919050565b5f61356f61356a6135658461354c565b612fd6565b613078565b9050919050565b61357f81613555565b82525050565b5f60c0820190506135985f830189612f04565b6135a56020830188613180565b6135b26040830187613576565b6135bf6060830186613576565b6135cc6080830185612f04565b6135d960a0830184613180565b979650505050505050565b5f815190506135f281613081565b92915050565b5f805f6060848603121561360f5761360e61304a565b5b5f61361c868287016135e4565b935050602061362d868287016135e4565b925050604061363e868287016135e4565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6136a2602683612f36565b91506136ad82613648565b604082019050919050565b5f6020820190508181035f8301526136cf81613696565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613730602483612f36565b915061373b826136d6565b604082019050919050565b5f6020820190508181035f83015261375d81613724565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6137be602283612f36565b91506137c982613764565b604082019050919050565b5f6020820190508181035f8301526137eb816137b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61384c602583612f36565b9150613857826137f2565b604082019050919050565b5f6020820190508181035f83015261387981613840565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6138da602383612f36565b91506138e582613880565b604082019050919050565b5f6020820190508181035f830152613907816138ce565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613942601683612f36565b915061394d8261390e565b602082019050919050565b5f6020820190508181035f83015261396f81613936565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6139d0603583612f36565b91506139db82613976565b604082019050919050565b5f6020820190508181035f8301526139fd816139c4565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613a38601383612f36565b9150613a4382613a04565b602082019050919050565b5f6020820190508181035f830152613a6581613a2c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613ac6603683612f36565b9150613ad182613a6c565b604082019050919050565b5f6020820190508181035f830152613af381613aba565b9050919050565b5f613b0482613078565b9150613b0f83613078565b9250828203905081811115613b2757613b2661338e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613b87602683612f36565b9150613b9282613b2d565b604082019050919050565b5f6020820190508181035f830152613bb481613b7b565b9050919050565b5f613bc582613078565b9150613bd083613078565b9250828202613bde81613078565b91508282048414831517613bf557613bf461338e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c3382613078565b9150613c3e83613078565b925082613c4e57613c4d613bfc565b5b828204905092915050565b5f81905092915050565b50565b5f613c715f83613c59565b9150613c7c82613c63565b5f82019050919050565b5f613c9082613c66565b9150819050919050565b7f6661696c65642073656e64696e672065746800000000000000000000000000005f82015250565b5f613cce601283612f36565b9150613cd982613c9a565b602082019050919050565b5f6020820190508181035f830152613cfb81613cc2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613d6a8161304e565b92915050565b5f60208284031215613d8557613d8461304a565b5b5f613d9284828501613d5c565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613dcd81612ef3565b82525050565b5f613dde8383613dc4565b60208301905092915050565b5f602082019050919050565b5f613e0082613d9b565b613e0a8185613da5565b9350613e1583613db5565b805f5b83811015613e45578151613e2c8882613dd3565b9750613e3783613dea565b925050600181019050613e18565b5085935050505092915050565b5f60a082019050613e655f830188613180565b613e726020830187613576565b8181036040830152613e848186613df6565b9050613e936060830185612f04565b613ea06080830184613180565b969550505050505056fea26469706673582212204123afc1727e1123052b8f58b78252e4db4ce62ef1f777a61d1b95d3492260f664736f6c63430008150033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000fc1f30bafc084d94fbd0a53850f1daaf19dc335000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000013446f6e6b65794b6f6e6744726966744b696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002444b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025f575f3560e01c80637b2829b811610143578063be9a6555116100b5578063dd62ed3e11610079578063dd62ed3e14610908578063e2f4560514610944578063e8078d941461096e578063f2fde38b14610984578063f493c187146109ac578063f8b45b05146109d657610266565b8063be9a655514610836578063c8c8ebe414610860578063d0bb6c0b1461088a578063d5f39488146108b4578063d85ba063146108de57610266565b8063a457c2d711610107578063a457c2d714610704578063a9059cbb14610740578063b24695411461077c578063b62496f5146107a6578063bbc0c742146107e2578063bbe7efa31461080c57610266565b80637b2829b8146106345780637cb332bb1461065e5780638da5cb5b1461068657806395d89b41146106b0578063a2e062ec146106da57610266565b806339509351116101dc578063671241a1116101a0578063671241a11461053a5780636a486a8e146105645780636ddd17131461058e57806370a08231146105b8578063715018a6146105f4578063757dd3151461060a57610266565b806339509351146104445780633ccef2261461048057806349bd5a5e146104aa5780634fbee193146104d4578063599270441461051057610266565b80631694505e116102235780631694505e1461036057806318160ddd1461038a57806323b872dd146103b457806327c8f835146103f0578063313ce5671461041a57610266565b8063066034fc1461026a57806306fdde031461029457806308ecd9a6146102be578063095ea7b3146102e857806310d5de531461032457610266565b3661026657005b5f80fd5b348015610275575f80fd5b5061027e610a00565b60405161028b9190612f13565b60405180910390f35b34801561029f575f80fd5b506102a8610a24565b6040516102b59190612fb6565b60405180910390f35b3480156102c9575f80fd5b506102d2610ab4565b6040516102df9190613031565b60405180910390f35b3480156102f3575f80fd5b5061030e600480360381019061030991906130ab565b610acc565b60405161031b9190613103565b60405180910390f35b34801561032f575f80fd5b5061034a6004803603810190610345919061311c565b610ae9565b6040516103579190613103565b60405180910390f35b34801561036b575f80fd5b50610374610b06565b6040516103819190613167565b60405180910390f35b348015610395575f80fd5b5061039e610b2a565b6040516103ab919061318f565b60405180910390f35b3480156103bf575f80fd5b506103da60048036038101906103d591906131a8565b610b33565b6040516103e79190613103565b60405180910390f35b3480156103fb575f80fd5b50610404610c25565b6040516104119190612f13565b60405180910390f35b348015610425575f80fd5b5061042e610c2b565b60405161043b9190613213565b60405180910390f35b34801561044f575f80fd5b5061046a600480360381019061046591906130ab565b610c33565b6040516104779190613103565b60405180910390f35b34801561048b575f80fd5b50610494610cda565b6040516104a1919061318f565b60405180910390f35b3480156104b5575f80fd5b506104be610ce0565b6040516104cb9190612f13565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f5919061311c565b610d04565b6040516105079190613103565b60405180910390f35b34801561051b575f80fd5b50610524610d56565b6040516105319190612f13565b60405180910390f35b348015610545575f80fd5b5061054e610d7b565b60405161055b919061324c565b60405180910390f35b34801561056f575f80fd5b50610578610d93565b604051610585919061318f565b60405180910390f35b348015610599575f80fd5b506105a2610d99565b6040516105af9190613103565b60405180910390f35b3480156105c3575f80fd5b506105de60048036038101906105d9919061311c565b610dac565b6040516105eb919061318f565b60405180910390f35b3480156105ff575f80fd5b50610608610df1565b005b348015610615575f80fd5b5061061e610e78565b60405161062b919061318f565b60405180910390f35b34801561063f575f80fd5b50610648610e7e565b604051610655919061318f565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f919061311c565b610e84565b005b348015610691575f80fd5b5061069a610fd1565b6040516106a79190612f13565b60405180910390f35b3480156106bb575f80fd5b506106c4610ff9565b6040516106d19190612fb6565b60405180910390f35b3480156106e5575f80fd5b506106ee611089565b6040516106fb9190613103565b60405180910390f35b34801561070f575f80fd5b5061072a600480360381019061072591906130ab565b61109b565b6040516107379190613103565b60405180910390f35b34801561074b575f80fd5b50610766600480360381019061076191906130ab565b611181565b6040516107739190613103565b60405180910390f35b348015610787575f80fd5b5061079061119e565b60405161079d919061318f565b60405180910390f35b3480156107b1575f80fd5b506107cc60048036038101906107c7919061311c565b6111a4565b6040516107d99190613103565b60405180910390f35b3480156107ed575f80fd5b506107f66111c1565b6040516108039190613103565b60405180910390f35b348015610817575f80fd5b506108206111d3565b60405161082d919061318f565b60405180910390f35b348015610841575f80fd5b5061084a6111d9565b604051610857919061318f565b60405180910390f35b34801561086b575f80fd5b506108746111df565b604051610881919061318f565b60405180910390f35b348015610895575f80fd5b5061089e6111e5565b6040516108ab9190612f13565b60405180910390f35b3480156108bf575f80fd5b506108c86111fd565b6040516108d59190612f13565b60405180910390f35b3480156108e9575f80fd5b506108f2611215565b6040516108ff919061318f565b60405180910390f35b348015610913575f80fd5b5061092e60048036038101906109299190613265565b61121b565b60405161093b919061318f565b60405180910390f35b34801561094f575f80fd5b5061095861129d565b604051610965919061318f565b60405180910390f35b348015610979575f80fd5b506109826112a3565b005b34801561098f575f80fd5b506109aa60048036038101906109a5919061311c565b61145e565b005b3480156109b7575f80fd5b506109c0611554565b6040516109cd919061318f565b60405180910390f35b3480156109e1575f80fd5b506109ea61155a565b6040516109f7919061318f565b60405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000081565b606060038054610a33906132d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906132d0565b8015610aaa5780601f10610a8157610100808354040283529160200191610aaa565b820191905f5260205f20905b815481529060010190602001808311610a8d57829003601f168201915b5050505050905090565b73663a5c229c09b049e36dcc11a9b0d4a8eb9db21481565b5f610adf610ad8611560565b8484611567565b6001905092915050565b6016602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f610b3f84848461172a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b86611560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90613370565b60405180910390fd5b610c1985610c11611560565b858403611567565b60019150509392505050565b61dead81565b5f6012905090565b5f610cd0610c3f611560565b848460015f610c4c611560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610ccb91906133bb565b611567565b6001905092915050565b60145481565b7f0000000000000000000000002cac5d3410b5530c62076448a80786abab6a982d81565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b738a99c005c7b425ce999441afee22d4987f7a986981565b600c5481565b600a60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610df9611560565b73ffffffffffffffffffffffffffffffffffffffff16610e17610fd1565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613438565b60405180910390fd5b610e765f612077565b565b60125481565b60135481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906134a0565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611008906132d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611034906132d0565b801561107f5780601f106110565761010080835404028352916020019161107f565b820191905f5260205f20905b81548152906001019060200180831161106257829003601f168201915b5050505050905090565b60105f9054906101000a900460ff1681565b5f8060015f6110a8611560565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111599061352e565b60405180910390fd5b61117661116d611560565b85858403611567565b600191505092915050565b5f61119461118d611560565b848461172a565b6001905092915050565b600f5481565b6017602052805f5260405f205f915054906101000a900460ff1681565b600a5f9054906101000a900460ff1681565b600e5481565b600d5481565b60075481565b73d5e2e43e30b706de8a0e01e72a6aba2b8930af4481565b73b15d6eaa3fff5d322e817e509bdaa47600065c0481565b600b5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6112ab610fd1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f906134a0565b60405180910390fd5b61134a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d611345610b2a565b611567565b6001600a5f6101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055505f7f0000000000000000000000002cac5d3410b5530c62076448a80786abab6a982d90507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306113ea30610dac565b5f8033426040518863ffffffff1660e01b815260040161140f96959493929190613585565b60606040518083038185885af115801561142b573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061145091906135f8565b50505061145b610df1565b50565b611466611560565b73ffffffffffffffffffffffffffffffffffffffff16611484610fd1565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613438565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f906136b8565b60405180910390fd5b61155181612077565b50565b60115481565b60095481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613746565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a906137d4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161171d919061318f565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613862565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906138f0565b60405180910390fd5b5f810361181d5761181883835f61213a565b612072565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611887575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118a05750600560149054906101000a900460ff16155b15611c6d57600a5f9054906101000a900460ff166119935760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611953575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613958565b60405180910390fd5b5b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611a30575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ad757600754811115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a71906139e6565b60405180910390fd5b600954611a8683610dac565b82611a9191906133bb565b1115611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613a4e565b60405180910390fd5b611c6c565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611b74575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611bc357600754811115611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613adc565b60405180910390fd5b611c6b565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611c6a57600954611c1d83610dac565b82611c2891906133bb565b1115611c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6090613a4e565b60405180910390fd5b5b5b5b5b5f611c7730610dac565b90505f60085482101590505f805f6001905060105f9054906101000a900460ff168015611cb25750601454600f54611caf9190613afa565b42105b15611cc4576011549250829150611d03565b60105f9054906101000a900460ff168015611ce05750600f5442105b15611cf45760125492506012549150611d02565b600c549250600b5491505f90505b5b838015611d1c5750600a60019054906101000a900460ff165b8015611d355750600560149054906101000a900460ff16155b8015611d88575060175f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ddb575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e2e575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e72576001600560146101000a81548160ff021916908315150217905550611e57816123af565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060155f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f21575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611f2a575f90505b5f811561205f5760175f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f8657505f85115b15611fb857611fb16064611fa3878b612c6d90919063ffffffff16565b612c8290919063ffffffff16565b905061203c565b60175f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561200d57505f84115b1561203b57612038606461202a868b612c6d90919063ffffffff16565b612c8290919063ffffffff16565b90505b5b5f8111156120505761204f8a308361213a565b5b808861205c9190613afa565b97505b61206a8a8a8a61213a565b505050505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90613862565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d906138f0565b60405180910390fd5b612221838383612c97565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b90613b9d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461233291906133bb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612396919061318f565b60405180910390a36123a9848484612c9c565b50505050565b5f6123b930610dac565b90506123c481612ca1565b5f479050821561281d575f73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16036125da575f60646046836124319190613bbb565b61243b9190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161248390613c86565b5f6040518083038185875af1925050503d805f81146124bd576040519150601f19603f3d011682016040523d82523d5f602084013e6124c2565b606091505b5050905080612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90613ce4565b60405180910390fd5b5f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff1683856125419190613afa565b60405161254d90613c86565b5f6040518083038185875af1925050503d805f8114612587576040519150601f19603f3d011682016040523d82523d5f602084013e61258c565b606091505b505080925050816125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990613ce4565b60405180910390fd5b505050612818565b5f60646048836125ea9190613bbb565b6125f49190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161263c90613c86565b5f6040518083038185875af1925050503d805f8114612676576040519150601f19603f3d011682016040523d82523d5f602084013e61267b565b606091505b50509050806126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b690613ce4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc60646003856127089190613bbb565b6127129190613c29565b90811502906040515f60405180830381858888f1935050505015801561273a573d5f803e3d5ffd5b505f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff1660646019866127799190613bbb565b6127839190613c29565b60405161278f90613c86565b5f6040518083038185875af1925050503d805f81146127c9576040519150601f19603f3d011682016040523d82523d5f602084013e6127ce565b606091505b50508092505081612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90613ce4565b60405180910390fd5b5050505b612c68565b5f73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612a29575f60646050836128809190613bbb565b61288a9190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516128d290613c86565b5f6040518083038185875af1925050503d805f811461290c576040519150601f19603f3d011682016040523d82523d5f602084013e612911565b606091505b5050905080612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c90613ce4565b60405180910390fd5b5f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff1683856129909190613afa565b60405161299c90613c86565b5f6040518083038185875af1925050503d805f81146129d6576040519150601f19603f3d011682016040523d82523d5f602084013e6129db565b606091505b50508092505081612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890613ce4565b60405180910390fd5b505050612c67565b5f6064605283612a399190613bbb565b612a439190613c29565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612a8b90613c86565b5f6040518083038185875af1925050503d805f8114612ac5576040519150601f19603f3d011682016040523d82523d5f602084013e612aca565b606091505b5050905080612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0590613ce4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc6064600385612b579190613bbb565b612b619190613c29565b90811502906040515f60405180830381858888f19350505050158015612b89573d5f803e3d5ffd5b505f73d5e2e43e30b706de8a0e01e72a6aba2b8930af4490508073ffffffffffffffffffffffffffffffffffffffff166064600f86612bc89190613bbb565b612bd29190613c29565b604051612bde90613c86565b5f6040518083038185875af1925050503d805f8114612c18576040519150601f19603f3d011682016040523d82523d5f602084013e612c1d565b606091505b50508092505081612c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5a90613ce4565b60405180910390fd5b5050505b5b505050565b5f8183612c7a9190613bbb565b905092915050565b5f8183612c8f9190613c29565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115612cbd57612cbc613d02565b5b604051908082528060200260200182016040528015612ceb5781602001602082028036833780820191505090505b50905030815f81518110612d0257612d01613d2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612da5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dc99190613d70565b81600181518110612ddd57612ddc613d2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e42307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611567565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ea3959493929190613e52565b5f604051808303815f87803b158015612eba575f80fd5b505af1158015612ecc573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612efd82612ed4565b9050919050565b612f0d81612ef3565b82525050565b5f602082019050612f265f830184612f04565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612f63578082015181840152602081019050612f48565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612f8882612f2c565b612f928185612f36565b9350612fa2818560208601612f46565b612fab81612f6e565b840191505092915050565b5f6020820190508181035f830152612fce8184612f7e565b905092915050565b5f819050919050565b5f612ff9612ff4612fef84612ed4565b612fd6565b612ed4565b9050919050565b5f61300a82612fdf565b9050919050565b5f61301b82613000565b9050919050565b61302b81613011565b82525050565b5f6020820190506130445f830184613022565b92915050565b5f80fd5b61305781612ef3565b8114613061575f80fd5b50565b5f813590506130728161304e565b92915050565b5f819050919050565b61308a81613078565b8114613094575f80fd5b50565b5f813590506130a581613081565b92915050565b5f80604083850312156130c1576130c061304a565b5b5f6130ce85828601613064565b92505060206130df85828601613097565b9150509250929050565b5f8115159050919050565b6130fd816130e9565b82525050565b5f6020820190506131165f8301846130f4565b92915050565b5f602082840312156131315761313061304a565b5b5f61313e84828501613064565b91505092915050565b5f61315182613000565b9050919050565b61316181613147565b82525050565b5f60208201905061317a5f830184613158565b92915050565b61318981613078565b82525050565b5f6020820190506131a25f830184613180565b92915050565b5f805f606084860312156131bf576131be61304a565b5b5f6131cc86828701613064565b93505060206131dd86828701613064565b92505060406131ee86828701613097565b9150509250925092565b5f60ff82169050919050565b61320d816131f8565b82525050565b5f6020820190506132265f830184613204565b92915050565b5f61323682613000565b9050919050565b6132468161322c565b82525050565b5f60208201905061325f5f83018461323d565b92915050565b5f806040838503121561327b5761327a61304a565b5b5f61328885828601613064565b925050602061329985828601613064565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132e757607f821691505b6020821081036132fa576132f96132a3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61335a602883612f36565b915061336582613300565b604082019050919050565b5f6020820190508181035f8301526133878161334e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133c582613078565b91506133d083613078565b92508282019050808211156133e8576133e761338e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613422602083612f36565b915061342d826133ee565b602082019050919050565b5f6020820190508181035f83015261344f81613416565b9050919050565b7f61757468000000000000000000000000000000000000000000000000000000005f82015250565b5f61348a600483612f36565b915061349582613456565b602082019050919050565b5f6020820190508181035f8301526134b78161347e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613518602583612f36565b9150613523826134be565b604082019050919050565b5f6020820190508181035f8301526135458161350c565b9050919050565b5f819050919050565b5f61356f61356a6135658461354c565b612fd6565b613078565b9050919050565b61357f81613555565b82525050565b5f60c0820190506135985f830189612f04565b6135a56020830188613180565b6135b26040830187613576565b6135bf6060830186613576565b6135cc6080830185612f04565b6135d960a0830184613180565b979650505050505050565b5f815190506135f281613081565b92915050565b5f805f6060848603121561360f5761360e61304a565b5b5f61361c868287016135e4565b935050602061362d868287016135e4565b925050604061363e868287016135e4565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6136a2602683612f36565b91506136ad82613648565b604082019050919050565b5f6020820190508181035f8301526136cf81613696565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613730602483612f36565b915061373b826136d6565b604082019050919050565b5f6020820190508181035f83015261375d81613724565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6137be602283612f36565b91506137c982613764565b604082019050919050565b5f6020820190508181035f8301526137eb816137b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61384c602583612f36565b9150613857826137f2565b604082019050919050565b5f6020820190508181035f83015261387981613840565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6138da602383612f36565b91506138e582613880565b604082019050919050565b5f6020820190508181035f830152613907816138ce565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613942601683612f36565b915061394d8261390e565b602082019050919050565b5f6020820190508181035f83015261396f81613936565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6139d0603583612f36565b91506139db82613976565b604082019050919050565b5f6020820190508181035f8301526139fd816139c4565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613a38601383612f36565b9150613a4382613a04565b602082019050919050565b5f6020820190508181035f830152613a6581613a2c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613ac6603683612f36565b9150613ad182613a6c565b604082019050919050565b5f6020820190508181035f830152613af381613aba565b9050919050565b5f613b0482613078565b9150613b0f83613078565b9250828203905081811115613b2757613b2661338e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613b87602683612f36565b9150613b9282613b2d565b604082019050919050565b5f6020820190508181035f830152613bb481613b7b565b9050919050565b5f613bc582613078565b9150613bd083613078565b9250828202613bde81613078565b91508282048414831517613bf557613bf461338e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c3382613078565b9150613c3e83613078565b925082613c4e57613c4d613bfc565b5b828204905092915050565b5f81905092915050565b50565b5f613c715f83613c59565b9150613c7c82613c63565b5f82019050919050565b5f613c9082613c66565b9150819050919050565b7f6661696c65642073656e64696e672065746800000000000000000000000000005f82015250565b5f613cce601283612f36565b9150613cd982613c9a565b602082019050919050565b5f6020820190508181035f830152613cfb81613cc2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613d6a8161304e565b92915050565b5f60208284031215613d8557613d8461304a565b5b5f613d9284828501613d5c565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613dcd81612ef3565b82525050565b5f613dde8383613dc4565b60208301905092915050565b5f602082019050919050565b5f613e0082613d9b565b613e0a8185613da5565b9350613e1583613db5565b805f5b83811015613e45578151613e2c8882613dd3565b9750613e3783613dea565b925050600181019050613e18565b5085935050505092915050565b5f60a082019050613e655f830188613180565b613e726020830187613576565b8181036040830152613e848186613df6565b9050613e936060830185612f04565b613ea06080830184613180565b969550505050505056fea26469706673582212204123afc1727e1123052b8f58b78252e4db4ce62ef1f777a61d1b95d3492260f664736f6c63430008150033

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

000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000fc1f30bafc084d94fbd0a53850f1daaf19dc335000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000013446f6e6b65794b6f6e6744726966744b696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002444b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DonkeyKongDriftKing
Arg [1] : _symbol (string): DK
Arg [2] : _totalSupply (uint256): 1000000
Arg [3] : _buyTaxes (uint256): 4
Arg [4] : _sellTaxes (uint256): 4
Arg [5] : _lockOwnerAndTaxReceiver (address): 0xfC1f30baFC084D94FBD0a53850F1Daaf19dC3350
Arg [6] : _ref (bytes): 0x
Arg [7] : _phase1Length (uint256): 0
Arg [8] : _phase2Length (uint256): 0
Arg [9] : _phase1Tax (uint256): 1
Arg [10] : _phase2Tax (uint256): 1

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 000000000000000000000000fc1f30bafc084d94fbd0a53850f1daaf19dc3350
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [12] : 446f6e6b65794b6f6e6744726966744b696e6700000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [14] : 444b000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000


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.