Overview
Max Total Supply
2,049 LAMBO
Holders
191 (0.00%)
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$155,488.13
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
LamboToken
Compiler Version
v0.6.6+commit.6c089d02
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**
*Submitted for verification at Etherscan.io on 2020-09-12
*/
pragma solidity =0.6.6;
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
//
/**
* @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.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @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 {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
//
/**
* @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);
}
//
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
//
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
//
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
//
/**
* @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 guidelines: functions revert instead
* of 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 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) internal _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 internal _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view 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 {_setupDecimals} is
* called.
*
* 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 returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view 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);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
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].add(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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(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
*
* - `to` 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 = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(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);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is 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 Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @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 to 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 { }
}
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
library FixedPoint {
// range: [0, 2**112 - 1]
// resolution: 1 / 2**112
struct uq112x112 {
uint224 _x;
}
// range: [0, 2**144 - 1]
// resolution: 1 / 2**112
struct uq144x112 {
uint _x;
}
uint8 private constant RESOLUTION = 112;
// encode a uint112 as a UQ112x112
function encode(uint112 x) internal pure returns (uq112x112 memory) {
return uq112x112(uint224(x) << RESOLUTION);
}
// encodes a uint144 as a UQ144x112
function encode144(uint144 x) internal pure returns (uq144x112 memory) {
return uq144x112(uint256(x) << RESOLUTION);
}
// divide a UQ112x112 by a uint112, returning a UQ112x112
function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) {
require(x != 0, 'FixedPoint: DIV_BY_ZERO');
return uq112x112(self._x / uint224(x));
}
// multiply a UQ112x112 by a uint, returning a UQ144x112
// reverts on overflow
function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) {
uint z;
require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW");
return uq144x112(z);
}
// returns a UQ112x112 which represents the ratio of the numerator to the denominator
// equivalent to encode(numerator).div(denominator)
function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) {
require(denominator > 0, "FixedPoint: DIV_BY_ZERO");
return uq112x112((uint224(numerator) << RESOLUTION) / denominator);
}
// decode a UQ112x112 into a uint112 by truncating after the radix point
function decode(uq112x112 memory self) internal pure returns (uint112) {
return uint112(self._x >> RESOLUTION);
}
// decode a UQ144x112 into a uint144 by truncating after the radix point
function decode144(uq144x112 memory self) internal pure returns (uint144) {
return uint144(self._x >> RESOLUTION);
}
}
// library with helper methods for oracles that are concerned with computing average prices
library UniswapV2OracleLibrary {
using FixedPoint for *;
// helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1]
function currentBlockTimestamp() internal view returns (uint32) {
return uint32(block.timestamp % 2 ** 32);
}
// produces the cumulative price using counterfactuals to save gas and avoid a call to sync.
function currentCumulativePrices(
address pair
) internal view returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) {
blockTimestamp = currentBlockTimestamp();
price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast();
price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast();
// if time has elapsed since the last update on the pair, mock the accumulated price values
(uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves();
if (blockTimestampLast != blockTimestamp) {
// subtraction overflow is desired
uint32 timeElapsed = blockTimestamp - blockTimestampLast;
// addition overflow is desired
// counterfactual
price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed;
// counterfactual
price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed;
}
}
}
//import "@uniswap/v2-periphery/contracts/libraries/UniswapV2Library.sol";
library UniswapV2Library {
using SafeMath for uint;
// returns sorted token addresses, used to handle return values from pairs sorted in this order
function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
(token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
}
// calculates the CREATE2 address for a pair without making any external calls
function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
(address token0, address token1) = sortTokens(tokenA, tokenB);
pair = address(uint(keccak256(abi.encodePacked(
hex'ff',
factory,
keccak256(abi.encodePacked(token0, token1)),
hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
))));
}
}
contract NitroProtocol {
/// Struct for timelocked bonus tokens
struct TimelockedBonus {
uint256 bonusAmount;
uint releaseBlock;
}
/// @notice Mapping of owed bonus tokens from buy orders. Includes bonus amounts and releaseTimestamps
mapping (address => TimelockedBonus) private _timelockedBonuses;
/// @notice max sell percentage allowed. If pre-calculated nitro is greater than this, it becomes equal
uint256 private _maxSellRemoval; //units are %
/// @notice max percentage bonus tokens per buy order. If pre-calculated nitro is greater than this, it becomes equal
uint256 private _maxBuyBonus; //units are %
//////////////////----------------Public View Variables----------------///////////////
//Return the maxSellRemoval
function maxSellRemoval() public view returns (uint256) {
return _maxSellRemoval;
}
function maxBuyBonus() public view returns (uint256) {
return _maxBuyBonus;
}
/**
* Return the block unlock time for a given mapping.
*/
function getBonusUnlockTime(address bonusAddress) public view returns (uint) {
return _timelockedBonuses[bonusAddress].releaseBlock; //Using memory, temporary
}
/**
* Get the available bonus for this address (once it is unlocked)
*/
function getBonusAmount(address bonusAddress) public view returns (uint256) {
return _timelockedBonuses[bonusAddress].bonusAmount;
}
//////////////////----------------Modify Variables, Internal----------------///////////////
/**
* @dev Set the maximum percent order volume of tokens taken in a sell order
*/
function _changeMaxSellRemoval(uint256 new_maxSellRemoval) internal {
_maxSellRemoval = new_maxSellRemoval;
}
/**
* @dev Set the maximum percent order volume of bonus tokens for buyers
*/
function _setMaxBuyBonusPercentage(uint256 new_maxBuyBonus) internal {
_maxBuyBonus = new_maxBuyBonus;
}
//////////////////----------------Timelocked Bonuses Interface----------------///////////////
/**
* Add/create a TimelockedBonus struct to the _timelockedBonuses mapping
*/
function _addToTimelockedBonus(address bonusAddress, uint256 tokens_to_add, uint releaseBlockNumber) internal {
_timelockedBonuses[bonusAddress] = TimelockedBonus((_timelockedBonuses[bonusAddress].bonusAmount + tokens_to_add), releaseBlockNumber);
}
/**
* Sets the timelocked Bonus for a given address to be exactly 0
*/
function _removeTimelockedBonus(address bonusAddress) internal {
uint256 amount = 0;
_timelockedBonuses[bonusAddress] = TimelockedBonus(amount, block.number);
}
}
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@(//(,.............////#@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@///....,,......*,,,,,,,**,,...(/(@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@(/*.,...,,........*,.*..**..*,,,,,,,,.(/@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@//.,...,.*........ ,,,*******(..*...,*.,,,,(/@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@%/,.....**(/*******.*. ,,,,,,,,,,**(....,....,,,//@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@/,,....**/********,,,,,,.... ,,,,,,... ****/,,..,,,(/@@@@@@@@@@@@@
// @@@@@@@@@@@@(/,......*(******,,,,,,,.,...,..........**,****(,...*,*(@@@@@@@@@@@@
// @@@@@@@@@@@(/,.....**/******,,,,,,,,.,,,,,...*...... *,,****/,,...*,(@@@@@@@@@@@
// @@@@@@@@@@((,......**(****,,,,,,,,,,,,,,,,..........,,.,,*****,,,..*,/@@@@@@@@@@
// @@@@@@@@@@/,,,......*,/*,,,,,,,,,,.*,,,,,,.........,,,,,....,,,,*...,*/@@@@@@@@@
// @@@@@@@@@/,,./*........*/,,,,,,..,,,..,,,..........,,,,,,,..,,,,,,...,/@@@@@@@@@
// @@@@@@@@@(,,.***....,...,,,*,,*,,,,,,,,,...........,,.,,,,,,,,,,,....,((@@@@@@@@
// @@@@@@@@@/,,.****..,...,,,,,,,,,,,,,,,........,,,,,.,,,,,,,**,,,./...,//@@@@@@@@
// @@@@@@@@@/,,.*******.,.....,,,,,,,....,,/@@@@******#.,,,,,,,,,,,,/...,/%@@@@@@@@
// @@@@@@@@@(/,.,******.........*,,,&&/*#&/**************//#,,,,,.,,,,.,,/@@@@@@@@@
// @@@@@@@@@@/,,...*....,*.......@%(,@@@@@@@@,*****/*////##%*/(,,,*....,/(@@@@@@@@@
// @@@@@@@@@@@/,,......,..,.......#(//(,@@%(@@@@,***********/##(****#&,,,,/@@@@@@@@
// @@@@@@@@@@@@/,,,.*,*,,..........&&(/#(*,@@@%,,,,****@&****&,,,,,,,,,%&@@@@@@@@@@
// @@@@@@@@@@@@@(,,,,,,,,*...........,,(/&***,#,.,,,,,***@,,,,,,,****#/****%@@@@@@@
// @@@@@@@@@@@@@@#(,*,,,,,,,,.......*...,/(*****,,,@@@*,,,,,**********,*/%*@@@@@@@@
// @@@@@@@@@@@@@@@@((,**,, *,*........,,,,,(((((**,*@@#(&********,....*%@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@//,**,,, ........,...,.@#&((*********,/....@@#@&(,*&@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@(/,,**...............&###((****((&//*(,,,/#@@@@%//&@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@///,,,**,........ &#&&((%,/,.*%@@@@%**,/#@@@@&#(&@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(///////////////&@@@@@@&//&@@@@&(**/#@@@@@&#@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#/&@@@@@%/*/#@@@@@@%@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&(@@@@@@@#//#@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@@&#(%@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@@@@
//
/* _.-="_- _
_.-=" _- | ||"""""""---._______ __..
___.===""""-.______-,,,,,,,,,,,,`-''----" """"" """"" __'
__.--"" __ ,' o \ __ [__|
__-""=======.--"" ""--.=================================.--"" ""--.=======:
] [w] : / \ : |========================| : / \ : [w] :
V___________:| |: |========================| :| |: _-"
V__________: \ / :_|=======================/_____: \ / :__-"
-----------' "-____-" `-------------------------------' "-____-" */
// $LAMBO (LamboToken)
// @dev DegenerateGameTheorist
contract LamboToken is ERC20, NitroProtocol, Ownable, Pausable {
using SafeMath for uint256;
/// @notice Scale factor for NITRO calculations
uint256 public constant scaleFactor = 1e18;
/// @notice Total supply
uint256 public constant total_supply = 2049 ether;
/// @notice uniswap listing rate
uint256 public constant INITIAL_TOKENS_PER_ETH = 2.27272727 * 1 ether;
/// @notice WETH token address
address public constant WETH = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
/// @notice self-explanatory
address public constant uniswapV2Factory = address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);
address public immutable initialDistributionAddress;
address public stakingContractAddress;
address public presaleContractAddress;
uint256 public presaleInitFunds;
/// @notice liquidity sources (e.g. UniswapV2Router)
mapping(address => bool) public whitelistedSenders;
/// @notice exchange addresses (tokens sent here will count as sell orders in NITRO Protocol)
mapping(address => bool) public exchangeAddresses;
/// @notice uniswap pair for LAMBO/ETH
address public uniswapPair;
/// @notice Whether or not this token is first in uniswap LAMBO<>ETH pair
bool public isThisToken0;
/// @notice last TWAP update time (Short calculation)
uint32 public blockTimestampLast;
/// @notice last TWAP cumulative price (Short calculation)
uint256 public priceCumulativeLast;
/// @notice last TWAP average price (Short calculation)
uint256 public priceAverageLast;
/// @notice last TWAP update time
uint32 public blockTimestampLastLong;
/// @notice last TWAP cumulative price
uint256 public priceCumulativeLastLong;
/// @notice last TWAP average price
uint256 public priceAverageLastLong;
/// @notice TWAP min delta (48-hour)
uint256 public minDeltaTwapLong;
/// @notice TWAP min delta (Short)
uint256 public minDeltaTwapShort;
/// @notice The minimum amount of blocks that must be mined before releasing bonus tokens
uint public bonusReleaseTime;
/// @notice percent of the removed funds from sell orders that goes to mechanics
uint256 public MECHANIC_PCT;
//Lets us check to see if the user account is moving lambo at this address' request
address public uniswapv2RouterAddress;
//Emittable Events
event TwapUpdated(uint256 priceCumulativeLast, uint256 blockTimestampLast, uint256 priceAverageLast);
event LongTwapUpdated(uint256 priceCumulativeLastLong, uint256 blockTimestampLastLong, uint256 priceAverageLastLong);
event MechanicPercentUpdated(uint256 new_mechanic_PCT);
event StakingContractAddressUpdated(address newStakingAddress);
event MaxSellRemovalUpdated(uint256 new_MSR);
event MaxBuyBonusUpdated(uint256 new_MBB);
event ExchangeListUpdated(address exchangeAddress, bool isExchange);
event BonusBalanceUpdated(address userAddress, uint256 newAmount);
event BonusReleaseTimeUpdated(uint blockDelta);
event BuyerBonusPaid(address receiver, uint256 bonusAmount);
// ------------------ Contract Start Functions --------------------- //
constructor(
uint256 _minDeltaTwapLong,
uint256 _minDeltaTwapShort,
uint256 _MECHANIC_PCT
)
public
Ownable()
ERC20("LamboToken", "LAMBO")
{
bonusReleaseTime = 13041;
setMinDeltaTwap(_minDeltaTwapLong, _minDeltaTwapShort);
_setMaxBuyBonusPercentage(25);
_changeMaxSellRemoval(25);
initialDistributionAddress = owner(); //The contract owner handles all initial distribution, except for presale
setMechanicPercent(_MECHANIC_PCT);
_distributeTokens(owner());
_initializePair();
_pause();
setUniswapRouterAddress(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
}
modifier whenNotPausedOrInitialDistribution(address tokensender) { //Only used on transfer function
require(!paused() || msg.sender == initialDistributionAddress || _isWhitelistedSender(msg.sender) || (msg.sender == uniswapv2RouterAddress && tokensender == owner()), "!paused && !initialDistributionAddress !InitialLiquidityProvider");
_;
}
modifier onlyInitialDistributionAddress() { //Only used to initialize twap
require(msg.sender == initialDistributionAddress, "!initialDistributionAddress");
_;
}
function _distributeTokens(
address _initialDistributionAddress
)
internal
{
//Define the initial distribution of funds:
//Giveaway funds (50) + Uniswap liquidity (320) + Moderator payments (10) = 370
uint256 initDistributionFunds = 380 ether;
// 535.6 LAMBO to the presale contract (455.6 whitelist + 80 dev)
// We don't know the presale address yet, so just give these tokens to this contract and transfer them later
//1133.4 to the Nitro Protocol + the 535.6 to the presale contract =
presaleInitFunds = 535.6 ether;
uint256 initContractFunds = total_supply.sub(initDistributionFunds);
require((initContractFunds+initDistributionFunds)==total_supply, "Fund distribution doesn't match total supply.");
_mint(address(_initialDistributionAddress), initDistributionFunds);
setWhitelistedSender(_initialDistributionAddress, true);
_mint(address(this), initContractFunds);
setWhitelistedSender(address(this), true);
}
/*
* Initialize the uniswap pair address to predict it and define it as an exchange address.
*/
function _initializePair() internal {
(address token0, address token1) = UniswapV2Library.sortTokens(address(this), address(WETH));
isThisToken0 = (token0 == address(this));
uniswapPair = UniswapV2Library.pairFor(uniswapV2Factory, token0, token1);
setExchangeAddress(uniswapPair, true);
}
function setUniswapRouterAddress(address newUniRouterAddy) public onlyOwner {
uniswapv2RouterAddress = newUniRouterAddy;
}
//////////////////---------------- Administrative Functions ----------------///////////////
/**
* @dev Unpauses all transfers from the distribution address (initial liquidity pool).
*/
function unpause() external virtual onlyOwner {
super._unpause();
}
//////////////////----------------Modify Nitro Protocol Variables----------------///////////////
//Modify the maxSellRemoval
function changeMaxSellRemoval(uint256 maxSellRemoval) public onlyOwner {
require(maxSellRemoval < 100, "Max Sell Removal is too high!");
require(maxSellRemoval > 0, "Max Sell Removal is too small!");
//Send it to the NitroProtocol
_changeMaxSellRemoval(maxSellRemoval);
//Emit this transaction
emit MaxSellRemovalUpdated(maxSellRemoval);
}
/*
* Sets the address of the staking contract ; required for project to work properly.
* Setting stakingContract to be the zero address will pause emissions to the staking contract.
*/
function setStakingContractAddress(address stakingContract) public onlyOwner {
stakingContractAddress = stakingContract;
emit StakingContractAddressUpdated(stakingContract);
}
/*
* Sets the address of the presale contract ; required for project to work properly.
* The presale contract address can only be set one time, to prevent re-sending of the 508 lambo.
*/
function setPresaleContractAddress(address presaleContract) public onlyOwner {
//We only want this to fire off once so the dev can't do any shady shit
if(presaleContractAddress==address(0)){
//Store address for posterity
presaleContractAddress = presaleContract;
//Whitelist the presale contract so that it can transfer tokens while contract is paused
setWhitelistedSender(presaleContractAddress, true);
//Send the tokens to the presale contract. presale Tokens should equal
super._transfer(address(this), presaleContractAddress, presaleInitFunds);
}
}
/**
* @dev Set the maximum percent order volume of bonus tokens for buyers
*/
function setMaxBuyBonusPercentage(uint256 _maxBuyBonus) public onlyOwner {
require(_maxBuyBonus < 100, "Max Buy Bonus is too high!");
require(_maxBuyBonus > 0, "Max Buy Bonus is too small!");
_setMaxBuyBonusPercentage(_maxBuyBonus);
//Emit Buy Bonus was updated
emit MaxBuyBonusUpdated(_maxBuyBonus);
}
/**
* @dev Set the percentage that goes to the mechanics. Implicitly, (1-MECHANIC_PCT) = how much goes to Nitro.
*/
function setMechanicPercent(uint256 _MECHANIC_PCT) public onlyOwner {
require(_MECHANIC_PCT < 100, "Percent going to mechanics is too high!");
require(_MECHANIC_PCT > 0, "Percent going to mechanics is too small!");
MECHANIC_PCT = _MECHANIC_PCT;
//Emit Mechanic Percent was updated
emit MechanicPercentUpdated(MECHANIC_PCT);
}
/**
* Set the minimum number of blocks that have to pass for a bonus to be claimable
*/
function setBonusReleaseTime(uint releasetime) public onlyOwner {
bonusReleaseTime = releasetime;
//Emit that the bonus release time was updated
emit BonusReleaseTimeUpdated(bonusReleaseTime);
}
/*
* Sets the bonus tokens amount for a given address.
*/
function addBonusTokensBalance(address bonusAddress, uint256 bonus_tokens_amount) internal {
//Get the current block, and add the delta block number for reward release
uint releaseBlock = block.number + bonusReleaseTime;
//Tell Nitro protocol to update token balance for this address
_addToTimelockedBonus(bonusAddress, bonus_tokens_amount, releaseBlock);
}
//////////////////----------------Modify Contract Variables----------------///////////////
/**
* @dev Min time elapsed before twap is updated.
*/
function setMinDeltaTwap(uint256 _minDeltaTwapLong, uint256 _minDeltaTwapShort) public onlyOwner {
require(_minDeltaTwapLong > 1 seconds, "Minimum delTWAP (Long) is too small!");
require(_minDeltaTwapShort > 1 seconds, "Minimum delTWAP (Short) is too small!");
require(_minDeltaTwapLong > _minDeltaTwapShort, "Long delta is smaller than short delta!");
minDeltaTwapLong = _minDeltaTwapLong;
minDeltaTwapShort = _minDeltaTwapShort;
}
/**
* @dev Sets a whitelisted sender/receiver (nitro protocol does not apply).
*/
function setWhitelistedSender(address _address, bool _whitelisted) public onlyOwner {
whitelistedSenders[_address] = _whitelisted;
}
/**
* @dev Sets a known exchange address (tokens sent from these addresses will count as buy orders, tokens sent to these addresses count as sell orders)
*/
function setExchangeAddress(address _address, bool _isexchange) public onlyOwner {
exchangeAddresses[_address] = _isexchange;
emit ExchangeListUpdated(_address, _isexchange);
}
function _isWhitelistedSender(address _sender) internal view returns (bool) {
return whitelistedSenders[_sender];
}
//Public to allow us to easily update exchange addresses in the future
function isExchangeAddress(address _sender) public view returns (bool) {
return exchangeAddresses[_sender];
}
// ------------------ Nitro Implementation --------------------- //
function _transfer(address sender, address recipient, uint256 amount)
internal
virtual
override
whenNotPausedOrInitialDistribution(sender)
{
//If this isn't a whitelisted sender(such as, this contract itself, the distribution address, or the router)
if(!_isWhitelistedSender(sender)){
//if msg sender is an exchange, then this was a buy
if(isExchangeAddress(sender)){
_updateShortTwap();
_updateLongTwap();
//Calculate how many bonus tokens they've received
uint256 currentNitro = calculateCurrentNitroRate(true);
uint256 bonus_tokens_amount = currentNitro.mul(amount).div(scaleFactor);
//These bonus tokens have to be saved in the timelockedBonuses
//call nitro function for adding bonus tokens to this address
addBonusTokensBalance(recipient, bonus_tokens_amount);
//Emit a bonus tokens balance update
emit BonusBalanceUpdated(recipient, getBonusAmount(recipient));
//if recipient is an exchange, then this was a sell
}else if(isExchangeAddress(recipient)) {
_updateShortTwap();
_updateLongTwap();
//Calculate how many tokens need to be removed from the order
uint256 currentNitro = calculateCurrentNitroRate(false);
uint256 removed_tokens_amount = currentNitro.mul(amount).div(scaleFactor);
//Remove the tokens from the amount to be sent
amount = amount.sub(removed_tokens_amount);
//Split the removed tokens amount between mechanics and nitro protocol
uint256 mechanics_tokens = MECHANIC_PCT.mul(removed_tokens_amount).div(100);
uint256 nitro_tokens = removed_tokens_amount.sub(mechanics_tokens);
//Send the nitro tokens to this contract
super._transfer(sender, address(this), nitro_tokens);
//Send the mechanics tokens to the staking contract, if there is one
if(stakingContractAddress!=address(0)){
super._transfer(sender, address(stakingContractAddress), mechanics_tokens); //TEST address wrapper on stakingcontractaddress crashing transfer function
}
}
}
super._transfer(sender, recipient, amount);
}
// ------------------ TWAP Functions --------------------- //
/*
* This function updates the long TWAP, if minDeltaTwapLong has passed
*/
function _updateLongTwap() internal virtual returns (uint256) {
(uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) =
UniswapV2OracleLibrary.currentCumulativePrices(uniswapPair);
uint32 timeElapsed = blockTimestamp - blockTimestampLastLong; // overflow is desired
if (timeElapsed > minDeltaTwapLong) {
uint256 priceCumulative = isThisToken0 ? price1Cumulative : price0Cumulative;
// cumulative price is in (uq112x112 price * seconds) units so we simply wrap it after division by time elapsed
FixedPoint.uq112x112 memory priceAverage = FixedPoint.uq112x112(
uint224((priceCumulative - priceCumulativeLastLong) / timeElapsed)
);
priceCumulativeLastLong = priceCumulative;
blockTimestampLastLong = blockTimestamp;
priceAverageLastLong = FixedPoint.decode144(FixedPoint.mul(priceAverage, 1 ether));
emit LongTwapUpdated(priceCumulativeLastLong, blockTimestampLastLong, priceAverageLastLong);
}
return priceAverageLastLong;
}
/*
* This function updates the most realtime price you can possibly get, given a short mindeltatwapshort (5-10 minutes)
*/
function getCurrentShortTwap() public view returns (uint256) {
(uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) =
UniswapV2OracleLibrary.currentCumulativePrices(uniswapPair);
uint32 timeElapsed = blockTimestamp - blockTimestampLast;
uint256 priceCumulative = isThisToken0 ? price1Cumulative : price0Cumulative;
FixedPoint.uq112x112 memory priceAverage = FixedPoint.uq112x112(
uint224((priceCumulative - priceCumulativeLast) / timeElapsed)
);
return FixedPoint.decode144(FixedPoint.mul(priceAverage, 1 ether));
}
/*
* Use this function to get the current short TWAP
*/
function getLastShortTwap() public view returns (uint256) {
return priceAverageLast;
}
/*
* Use this function to get the current 48-hour TWAP
*/
function getLastLongTwap() public view returns (uint256) {
return priceAverageLastLong;
}
/*
* This function updates the short TWAP Given the short TWAP period has passed
*/
function _updateShortTwap() internal virtual returns (uint256) {
(uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) =
UniswapV2OracleLibrary.currentCumulativePrices(uniswapPair);
uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
if (timeElapsed > minDeltaTwapShort) {
uint256 priceCumulative = isThisToken0 ? price1Cumulative : price0Cumulative;
// cumulative price is in (uq112x112 price * seconds) units so we simply wrap it after division by time elapsed
FixedPoint.uq112x112 memory priceAverage = FixedPoint.uq112x112(
uint224((priceCumulative - priceCumulativeLast) / timeElapsed)
);
priceCumulativeLast = priceCumulative;
blockTimestampLast = blockTimestamp;
priceAverageLast = FixedPoint.decode144(FixedPoint.mul(priceAverage, 1 ether));
emit TwapUpdated(priceCumulativeLast, blockTimestampLast, priceAverageLast);
}
return priceAverageLast;
}
/**
* @dev Initializes the TWAP cumulative values for the burn curve.
*/
function initializeTwap() external onlyInitialDistributionAddress {
require(blockTimestampLast == 0, "Both TWAPS already initialized");
(uint256 price0Cumulative, uint256 price1Cumulative, uint32 blockTimestamp) =
UniswapV2OracleLibrary.currentCumulativePrices(uniswapPair);
uint256 priceCumulative = isThisToken0 ? price1Cumulative : price0Cumulative;
//Initialize the short TWAP values
blockTimestampLast = blockTimestamp;
priceCumulativeLast = priceCumulative;
priceAverageLast = INITIAL_TOKENS_PER_ETH;
//Initialize the long TWAP values
blockTimestampLastLong = blockTimestamp;
priceCumulativeLastLong = priceCumulative;
priceAverageLastLong = INITIAL_TOKENS_PER_ETH;
}
// ------------------ User Functions --------------------- //
/**
* Public function that allows users to claim their bonus $LAMBO.
* We need to ensure we only interact with msg.sender to make sure no one can claim another's tokens by submitting an address
*/
function claimBonusTokens() public {
//Save bonus amount
uint256 bonusTokens = getBonusAmount(msg.sender);
//Assert that the bonus tokens amount is not zero
require(bonusTokens > 0, "There are no bonus tokens to be claimed");
//Assert that the current block number is
require(getBonusUnlockTime(msg.sender) <= block.number, "The token release time has not been reached yet.");
//Assert that this contrat can actually afford to give this user their bonus tokens
require(balanceOf(address(this)) > bonusTokens, "The contract can't afford to pay this bonus.");
/////////Contract is cleared to transfer the bonus tokens
//Remove the bonus tokens from the nitro protocol
_removeTimelockedBonus(msg.sender);
//Emit a bonus tokens balance update
emit BonusBalanceUpdated(msg.sender, getBonusAmount(msg.sender));
//Transfer the removed bonus tokens
_transfer(address(this), msg.sender, bonusTokens);
//Emit a paid bonus balance
emit BuyerBonusPaid(msg.sender, bonusTokens);
}
/*
* Function if for some reason the predicted trading pair address doesn't match real life trading pair address.
*/
function setUniswapPair(address newUniswapPair) public onlyOwner {
setExchangeAddress(uniswapPair, false);
uniswapPair = newUniswapPair;
setExchangeAddress(uniswapPair, true);
}
/*
* Calculates the current running % for the Nitro protocol. That is,
* The percent bonus tokens for any buyers at the current moment
* The percent tokens removed for any sellers at the current moment
* This is calculated using the TWAP and the realtimeprice. Calling this DOESN'T Update the TWAP.
*
* Returns a uint256 of 0.XX * 1 eth units, where XX is the current % (6% will return 0.06*1ether)
*/
function calculateCurrentNitroRate(bool isBuy) public view returns (uint256) {
//The units on both of these is tokens per eth
uint256 currentRealTimePrice = getLastShortTwap();
uint256 currentTwap = getLastLongTwap();
uint256 nitro;
//Calculate the Nitro rate based on which is larger to keep it positive
if(currentRealTimePrice > currentTwap){
//Calculation explanation:
//(RTP-TWAP)*scaleFactor/TWAP is typical percent calc but with the scaleFactor moved up b/c uint256
// The *scaleFactor.dv has to cancel out the scaleFactor to get back to fractions of 100, but in units of ether
nitro = (currentRealTimePrice.sub(currentTwap).mul(scaleFactor).div(currentTwap))*scaleFactor.div(scaleFactor);
}
else{
//Simply the above calculation * -1 to offset the negative
nitro = (currentTwap.sub(currentRealTimePrice).mul(scaleFactor).div(currentTwap))*scaleFactor.div(scaleFactor);
}
//Validate that the nitro value is within the defined bounds
uint256 refBuyBonus = (maxBuyBonus()*scaleFactor.div(100));
uint256 refMaxSell = (maxSellRemoval()*scaleFactor.div(100));
if(isBuy && nitro > refBuyBonus){
return refBuyBonus;
}else if (!isBuy && nitro > refMaxSell){
return refMaxSell;
}
return nitro;
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {
"": {}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_minDeltaTwapLong","type":"uint256"},{"internalType":"uint256","name":"_minDeltaTwapShort","type":"uint256"},{"internalType":"uint256","name":"_MECHANIC_PCT","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"BonusBalanceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockDelta","type":"uint256"}],"name":"BonusReleaseTimeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"bonusAmount","type":"uint256"}],"name":"BuyerBonusPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exchangeAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isExchange","type":"bool"}],"name":"ExchangeListUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"priceCumulativeLastLong","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockTimestampLastLong","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"priceAverageLastLong","type":"uint256"}],"name":"LongTwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"new_MBB","type":"uint256"}],"name":"MaxBuyBonusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"new_MSR","type":"uint256"}],"name":"MaxSellRemovalUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"new_mechanic_PCT","type":"uint256"}],"name":"MechanicPercentUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newStakingAddress","type":"address"}],"name":"StakingContractAddressUpdated","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":false,"internalType":"uint256","name":"priceCumulativeLast","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockTimestampLast","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"priceAverageLast","type":"uint256"}],"name":"TwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"INITIAL_TOKENS_PER_ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MECHANIC_PCT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestampLast","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestampLastLong","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusReleaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isBuy","type":"bool"}],"name":"calculateCurrentNitroRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSellRemoval","type":"uint256"}],"name":"changeMaxSellRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimBonusTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exchangeAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonusAddress","type":"address"}],"name":"getBonusAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonusAddress","type":"address"}],"name":"getBonusUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentShortTwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastLongTwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastShortTwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialDistributionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initializeTwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"isExchangeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isThisToken0","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellRemoval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDeltaTwapLong","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDeltaTwapShort","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleInitFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceAverageLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceAverageLastLong","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceCumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceCumulativeLastLong","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"scaleFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"releasetime","type":"uint256"}],"name":"setBonusReleaseTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isexchange","type":"bool"}],"name":"setExchangeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyBonus","type":"uint256"}],"name":"setMaxBuyBonusPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MECHANIC_PCT","type":"uint256"}],"name":"setMechanicPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minDeltaTwapLong","type":"uint256"},{"internalType":"uint256","name":"_minDeltaTwapShort","type":"uint256"}],"name":"setMinDeltaTwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"presaleContract","type":"address"}],"name":"setPresaleContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract","type":"address"}],"name":"setStakingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newUniswapPair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newUniRouterAddy","type":"address"}],"name":"setUniswapRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_whitelisted","type":"bool"}],"name":"setWhitelistedSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapv2RouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedSenders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60a06040523480156200001157600080fd5b506040516200688838038062006888833981810160405260608110156200003757600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050506040518060400160405280600a81526020017f4c616d626f546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c414d424f0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e09291906200145d565b508060049080519060200190620000f99291906200145d565b506012600560006101000a81548160ff021916908360ff160217905550505060006200012a620002e860201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600960146101000a81548160ff0219169083151502179055506132f1601781905550620001ff8383620002f060201b60201c565b620002116019620004e560201b60201c565b620002236019620004ef60201b60201c565b62000233620004f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200027a816200052360201b60201c565b6200029a6200028e620004f960201b60201c565b620006ef60201b60201c565b620002aa620007e860201b60201c565b620002ba6200090760201b60201c565b620002df737a250d5630b4cf539739df2c5dacb4c659f2488d62000a1a60201b60201c565b5050506200150c565b600033905090565b62000300620002e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620003c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182116200041e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806200679f6024913960400191505060405180910390fd5b6001811162000479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806200683c6025913960400191505060405180910390fd5b808211620004d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180620067e86027913960400191505060405180910390fd5b81601581905550806016819055505050565b8060088190555050565b8060078190555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000533620002e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620005f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811062000651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180620068616027913960400191505060405180910390fd5b60008111620006ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180620067776028913960400191505060405180910390fd5b806018819055507faca98499e495dee9e81d6a44321efafa7e958a1b75548627ba0a0cb07b338e336018546040518082815260200191505060405180910390a150565b60006814998f32ac787000009050681d08f1724503380000600c8190555060006200073282686f139653eec764000062000b3160201b6200443e1790919060201c565b9050686f139653eec76400008282011462000799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806200680f602d913960400191505060405180910390fd5b620007ab838362000b8360201b60201c565b620007be83600162000d6160201b60201c565b620007d0308262000b8360201b60201c565b620007e330600162000d6160201b60201c565b505050565b600080620008163073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc262000e8f60201b62004c291760201c565b915091503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614600f60146101000a81548160ff0219169083151502179055506200088e735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f83836200100b60201b62004da01760201c565b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000903600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200116e60201b60201c565b5050565b600960149054906101000a900460ff16156200098b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620009d7620002e860201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b62000a2a620002e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000aed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600062000b7b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200130b60201b60201c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000c3b60008383620013cf60201b60201c565b62000c5781600254620013d460201b62003f231790919060201c565b60028190555062000cb5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620013d460201b62003f231790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b62000d71620002e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000e34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180620067c36025913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161062000f5557828462000f58565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001004576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f556e697377617056324c6962726172793a205a45524f5f41444452455353000081525060200191505060405180910390fd5b9250929050565b600080600062001022858562000e8f60201b60201c565b91509150858282604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040528051906020012060405160200180807fff000000000000000000000000000000000000000000000000000000000000008152506001018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401828152602001807f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f815250602001925050506040516020818303038152906040528051906020012060001c925050509392505050565b6200117e620002e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462001241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fe8bce7c68f90d290265fc32126eb383798b54548b31a0337f02476bf01db55b68282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b6000838311158290620013bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200138057808201518184015260208101905062001363565b50505050905090810190601f168015620013ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b505050565b60008082840190508381101562001453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620014a057805160ff1916838001178555620014d1565b82800160010185558215620014d1579182015b82811115620014d0578251825591602001919060010190620014b3565b5b509050620014e09190620014e4565b5090565b6200150991905b8082111562001505576000816000905550600101620014eb565b5090565b90565b60805160601c61524362001534600039806113e852806131af528061380b52506152436000f3fe608060405234801561001057600080fd5b50600436106103b85760003560e01c8063683dd191116101f4578063ad5c46481161011a578063dc166f74116100ad578063ee98950d1161007c578063ee98950d1461114f578063f2fde38b1461116d578063f6cdce06146111b1578063fd319748146111cf576103b8565b8063dc166f7414611079578063dd62ed3e146110c3578063e28d8c4b1461113b578063e379c31b14611145576103b8565b8063d230891a116100e9578063d230891a14610f95578063d31e730914610fc3578063d5aed6bf14610ff1578063db15d18514611035576103b8565b8063ad5c464814610e9f578063adec638214610ee9578063c5700a0214610f21578063c816841b14610f4b576103b8565b806395d89b4111610192578063a3b49cd611610161578063a3b49cd614610d55578063a457c2d714610db1578063a9059cbb14610e17578063aaf3a69614610e7d576103b8565b806395d89b4114610c3e57806395f532b114610cc15780639728e90114610cdf578063982ce10914610d37576103b8565b8063715018a6116101ce578063715018a614610b7c5780637955ee6814610b8657806386cefcb614610ba45780638da5cb5b14610bf4576103b8565b8063683dd19114610ae85780636ee9eae314610b0657806370a0823114610b24576103b8565b80632f43c1bc116102e457806342ac935d116102775780635c975abb116102465780635c975abb14610a365780635f8ee76314610a5857806364365f1e14610a76578063658bcdb814610aa4576103b8565b806342ac935d1461099257806348c9364e146109b0578063524d4edc146109ce57806359d0f713146109ec576103b8565b806339509351116102b3578063395093511461086e5780633e45a299146108d45780633f4ba83a1461092c5780633f5b7d6714610936576103b8565b80632f43c1bc146107c4578063313ce567146107e25780633535f48b146108065780633940e9ee14610850576103b8565b806318953efc1161035c578063272efc691161032b578063272efc69146106b65780632887d7651461071257806329923838146107305780632bb8d15214610780576103b8565b806318953efc146105785780631c1f8aa3146105a257806321345f1f146105e657806323b872dd14610630576103b8565b8063095ea7b311610398578063095ea7b3146104b85780631393ca991461051e57806316280d1c1461053c57806318160ddd1461055a576103b8565b80626b3059146103bd578062c2f35e146103eb57806306fdde0314610435575b600080fd5b6103e9600480360360208110156103d357600080fd5b81019080803590602001909291905050506111ed565b005b6103f36113e6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61043d61140a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561047d578082015181840152602081019050610462565b50505050905090810190601f1680156104aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610504600480360360408110156104ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ac565b604051808215151515815260200191505060405180910390f35b6105266114ca565b6040518082815260200191505060405180910390f35b6105446114d0565b6040518082815260200191505060405180910390f35b6105626114d6565b6040518082815260200191505060405180910390f35b6105806114e0565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b6105e4600480360360208110156105b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114f6565b005b6105ee611667565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069c6004803603606081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061168d565b604051808215151515815260200191505060405180910390f35b6106f8600480360360208110156106cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611766565b604051808215151515815260200191505060405180910390f35b61071a611786565b6040518082815260200191505060405180910390f35b61077e6004803603604081101561074657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611792565b005b6107c26004803603602081101561079657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b7565b005b6107cc611a79565b6040518082815260200191505060405180910390f35b6107ea611a7f565b604051808260ff1660ff16815260200191505060405180910390f35b61080e611a96565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610858611abc565b6040518082815260200191505060405180910390f35b6108ba6004803603604081101561088457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac9565b604051808215151515815260200191505060405180910390f35b610916600480360360208110156108ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b7c565b6040518082815260200191505060405180910390f35b610934611bc8565b005b6109786004803603602081101561094c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9c565b604051808215151515815260200191505060405180910390f35b61099a611cf2565b6040518082815260200191505060405180910390f35b6109b8611cf8565b6040518082815260200191505060405180910390f35b6109d6611cfe565b6040518082815260200191505060405180910390f35b6109f4611df1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a3e611e09565b604051808215151515815260200191505060405180910390f35b610a60611e20565b6040518082815260200191505060405180910390f35b610aa260048036036020811015610a8c57600080fd5b8101908080359060200190929190505050611e26565b005b610ad260048036036020811015610aba57600080fd5b8101908080351515906020019092919050505061201f565b6040518082815260200191505060405180910390f35b610af061219f565b6040518082815260200191505060405180910390f35b610b0e6121ab565b6040518082815260200191505060405180910390f35b610b6660048036036020811015610b3a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121b5565b6040518082815260200191505060405180910390f35b610b846121fd565b005b610b8e612388565b6040518082815260200191505060405180910390f35b610bf260048036036040811015610bba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061238e565b005b610bfc612522565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c4661254c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c86578082015181840152602081019050610c6b565b50505050905090810190601f168015610cb35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610cc96125ee565b6040518082815260200191505060405180910390f35b610d2160048036036020811015610cf557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125f4565b6040518082815260200191505060405180910390f35b610d3f612640565b6040518082815260200191505060405180910390f35b610d9760048036036020811015610d6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061264a565b604051808215151515815260200191505060405180910390f35b610dfd60048036036040811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b604051808215151515815260200191505060405180910390f35b610e6360048036036040811015610e2d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612737565b604051808215151515815260200191505060405180910390f35b610e85612755565b604051808215151515815260200191505060405180910390f35b610ea7612768565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f1f60048036036040811015610eff57600080fd5b810190808035906020019092919080359060200190929190505050612780565b005b610f29612966565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b610f5361297c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610fc160048036036020811015610fab57600080fd5b81019080803590602001909291905050506129a2565b005b610fef60048036036020811015610fd957600080fd5b8101908080359060200190929190505050612aaf565b005b6110336004803603602081101561100757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c6e565b005b6110776004803603602081101561104b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dd6565b005b611081612ee4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b611125600480360360408110156110d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f0a565b6040518082815260200191505060405180910390f35b611143612f91565b005b61114d6131ad565b005b6111576133c6565b6040518082815260200191505060405180910390f35b6111af6004803603602081101561118357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506133d0565b005b6111b96135e0565b6040518082815260200191505060405180910390f35b6111d76135e6565b6040518082815260200191505060405180910390f35b6111f56135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811061132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4d61782053656c6c2052656d6f76616c20697320746f6f20686967682100000081525060200191505060405180910390fd5b600081116113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4d61782053656c6c2052656d6f76616c20697320746f6f20736d616c6c21000081525060200191505060405180910390fd5b6113ac816135f8565b7f908a26ad08354a79cb2c3e0d18c0bcd4d6ab7a2cb1013a3ce9c1092ab720a2a4816040518082815260200191505060405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b5050505050905090565b60006114c06114b96135f0565b8484613602565b6001905092915050565b600c5481565b60145481565b6000600254905090565b601260009054906101000a900463ffffffff1681565b6114fe6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffbf2f40dac58d9ad39c9e749536924955b61ea211cb2e02ce8e773db54c50cce81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061169a8484846137f9565b61175b846116a66135f0565b611756856040518060600160405280602881526020016150e260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061170c6135f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ba29092919063ffffffff16565b613602565b600190509392505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b671f8a59691fb17c0081565b61179a6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118bf6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a765780600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611a46600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611792565b611a7530600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c54613c62565b5b50565b60105481565b6000600560009054906101000a900460ff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b686f139653eec764000081565b6000611b72611ad66135f0565b84611b6d8560016000611ae76135f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2390919063ffffffff16565b613602565b6001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b611bd06135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c9a613fab565b565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60175481565b600080600080611d2f600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000600f60159054906101000a900463ffffffff16820390506000600f60149054906101000a900460ff16611d6a5784611d6c565b835b9050611d76614be5565b60405180602001604052808463ffffffff16601054850381611d9457fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509050611dd2611dcd82670de0b6b3a76400006142ff565b6143d5565b71ffffffffffffffffffffffffffffffffffff16965050505050505090565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6000600960149054906101000a900460ff16905090565b60115481565b611e2e6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648110611f66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4d61782042757920426f6e757320697320746f6f20686967682100000000000081525060200191505060405180910390fd5b60008111611fdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4d61782042757920426f6e757320697320746f6f20736d616c6c21000000000081525060200191505060405180910390fd5b611fe5816143ea565b7fc84fe0ead4fe02d80b59499c259e42858b7497dca97f77ed4e4ee2b142259d56816040518082815260200191505060405180910390a150565b60008061202a6121ab565b905060006120366133c6565b90506000818311156120a45761205d670de0b6b3a7640000806143f490919063ffffffff16565b61209c8361208e670de0b6b3a7640000612080878961443e90919063ffffffff16565b61448890919063ffffffff16565b6143f490919063ffffffff16565b029050612102565b6120bf670de0b6b3a7640000806143f490919063ffffffff16565b6120fe836120f0670de0b6b3a76400006120e2888861443e90919063ffffffff16565b61448890919063ffffffff16565b6143f490919063ffffffff16565b0290505b60006121206064670de0b6b3a76400006143f490919063ffffffff16565b612128612640565b02905060006121496064670de0b6b3a76400006143f490919063ffffffff16565b6121516135e6565b02905086801561216057508183115b1561217257819550505050505061219a565b8615801561217f57508083115b1561219157809550505050505061219a565b82955050505050505b919050565b670de0b6b3a764000081565b6000601154905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6122056135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60165481565b6123966135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612458576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fe8bce7c68f90d290265fc32126eb383798b54548b31a0337f02476bf01db55b68282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125e45780601f106125b9576101008083540402835291602001916125e4565b820191906000526020600020905b8154815290600101906020018083116125c757829003601f168201915b5050505050905090565b60185481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b6000600854905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b600061272d6126776135f0565b84612728856040518060600160405280602581526020016151e960259139600160006126a16135f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ba29092919063ffffffff16565b613602565b6001905092915050565b600061274b6127446135f0565b84846137f9565b6001905092915050565b600f60149054906101000a900460ff1681565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6127886135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461284a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182116128a3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614fbf6024913960400191505060405180910390fd5b600181116128fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061510a6025913960400191505060405180910390fd5b808211612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061505a6027913960400191505060405180910390fd5b81601581905550806016819055505050565b600f60159054906101000a900463ffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6129aa6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806017819055507fd323ec23eac7c40d9be4b368e45bf81f440ce20859542d92a2135951e6d395406017546040518082815260200191505060405180910390a150565b612ab76135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648110612bd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061512f6027913960400191505060405180910390fd5b60008111612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f4f6028913960400191505060405180910390fd5b806018819055507faca98499e495dee9e81d6a44321efafa7e958a1b75548627ba0a0cb07b338e336018546040518082815260200191505060405180910390a150565b612c766135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612d65600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061238e565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612dd3600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161238e565b50565b612dde6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ea0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612f9c33611b7c565b905060008111612ff7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061517b6027913960400191505060405180910390fd5b43613001336125f4565b1115613058576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614f1f6030913960400191505060405180910390fd5b80613062306121b5565b116130b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615009602c913960400191505060405180910390fd5b6130c13361450e565b7f5f6dbb40a7e083639ca2d30ccc15b704b350ed046efc30921dd05905d28b2336336130ec33611b7c565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a161313f3033836137f9565b7f964e2d08a7dfa215c7f97652d5a78863c4084f03692b4c2e677207a1d4fed0983382604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461326e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f21696e697469616c446973747269627574696f6e41646472657373000000000081525060200191505060405180910390fd5b6000600f60159054906101000a900463ffffffff1663ffffffff16146132fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f426f746820545741505320616c726561647920696e697469616c697a6564000081525060200191505060405180910390fd5b600080600061332c600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000600f60149054906101000a900460ff1661334e5783613350565b825b905081600f60156101000a81548163ffffffff021916908363ffffffff16021790555080601081905550671f8a59691fb17c0060118190555081601260006101000a81548163ffffffff021916908363ffffffff16021790555080601381905550671f8a59691fb17c0060148190555050505050565b6000601454905090565b6133d86135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461349a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f776026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b6000600754905090565b600033905090565b8060078190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613688576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806151c56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561370e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f9d6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b82613802611e09565b158061385957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80613869575061386833614582565b5b806138ff5750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156138fe57506138cf612522565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b5b613954576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806150816040913960400191505060405180910390fd5b61395d84614582565b613b915761396a84611c9c565b15613a44576139776145d8565b50613980614770565b50600061398d600161201f565b905060006139be670de0b6b3a76400006139b0868561448890919063ffffffff16565b6143f490919063ffffffff16565b90506139ca8582614908565b7f5f6dbb40a7e083639ca2d30ccc15b704b350ed046efc30921dd05905d28b2336856139f587611b7c565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050613b90565b613a4d83611c9c565b15613b8f57613a5a6145d8565b50613a63614770565b506000613a70600061201f565b90506000613aa1670de0b6b3a7640000613a93868561448890919063ffffffff16565b6143f490919063ffffffff16565b9050613ab6818561443e90919063ffffffff16565b93506000613ae26064613ad48460185461448890919063ffffffff16565b6143f490919063ffffffff16565b90506000613af9828461443e90919063ffffffff16565b9050613b06883083613c62565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613b8a57613b8988600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613c62565b5b505050505b5b5b613b9c848484613c62565b50505050565b6000838311158290613c4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c14578082015181840152602081019050613bf9565b50505050905090810190601f168015613c415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613ce8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806151566025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614efc6023913960400191505060405180910390fd5b613d79838383614921565b613de481604051806060016040528060268152602001614fe3602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ba29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e77816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080828401905083811015613fa1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600960149054906101000a900460ff1661402d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6140716135f0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060006140c1614926565b90508373ffffffffffffffffffffffffffffffffffffffff16635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b15801561410957600080fd5b505afa15801561411d573d6000803e3d6000fd5b505050506040513d602081101561413357600080fd5b810190808051906020019092919050505092508373ffffffffffffffffffffffffffffffffffffffff16635a3d54936040518163ffffffff1660e01b815260040160206040518083038186803b15801561418c57600080fd5b505afa1580156141a0573d6000803e3d6000fd5b505050506040513d60208110156141b657600080fd5b8101908080519060200190929190505050915060008060008673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561421457600080fd5b505afa158015614228573d6000803e3d6000fd5b505050506040513d606081101561423e57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050509250925092508363ffffffff168163ffffffff16146142f557600081850390508063ffffffff16614294848661493c565b600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602870196508063ffffffff166142cc858561493c565b600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160286019550505b5050509193909250565b614307614c16565b600080831480614368575083600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16838486600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16029250828161436557fe5b04145b6143bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151a26023913960400191505060405180910390fd5b60405180602001604052808281525091505092915050565b6000607060ff168260000151901c9050919050565b8060088190555050565b600061443683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a6b565b905092915050565b600061448083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613ba2565b905092915050565b60008083141561449b5760009050614508565b60008284029050828482816144ac57fe5b0414614503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150c16021913960400191505060405180910390fd5b809150505b92915050565b6000809050604051806040016040528082815260200143815250600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080600080614609600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000600f60159054906101000a900463ffffffff16820390506016548163ffffffff161115614764576000600f60149054906101000a900460ff166146545784614656565b835b9050614660614be5565b60405180602001604052808463ffffffff1660105485038161467e57fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090508160108190555083600f60156101000a81548163ffffffff021916908363ffffffff1602179055506146e46146df82670de0b6b3a76400006142ff565b6143d5565b71ffffffffffffffffffffffffffffffffffff166011819055507f9cfe07a59ebb9a772e1fee2abd40b53001de7c2f0b2e713de333f564118c32c4601054600f60159054906101000a900463ffffffff16601154604051808481526020018363ffffffff168152602001828152602001935050505060405180910390a150505b60115494505050505090565b6000806000806147a1600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000601260009054906101000a900463ffffffff16820390506015548163ffffffff1611156148fc576000600f60149054906101000a900460ff166147ec57846147ee565b835b90506147f8614be5565b60405180602001604052808463ffffffff1660135485038161481657fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090508160138190555083601260006101000a81548163ffffffff021916908363ffffffff16021790555061487c61487782670de0b6b3a76400006142ff565b6143d5565b71ffffffffffffffffffffffffffffffffffff166014819055507f58a4d24f16dcba303be147b5fa11dadeaad1c1f5f387900489134e0fb7a2aa57601354601260009054906101000a900463ffffffff16601454604051808481526020018363ffffffff168152602001828152602001935050505060405180910390a150505b60145494505050505090565b60006017544301905061491c838383614b31565b505050565b505050565b6000640100000000428161493657fe5b06905090565b614944614be5565b6000826dffffffffffffffffffffffffffff16116149ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4669786564506f696e743a204449565f42595f5a45524f00000000000000000081525060200191505060405180910390fd5b6040518060200160405280836dffffffffffffffffffffffffffff16607060ff16866dffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16901b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681614a4157fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16815250905092915050565b60008083118290614b17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614adc578082015181840152602081019050614ac1565b50505050905090810190601f168015614b095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614b2357fe5b049050809150509392505050565b604051806040016040528083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015401815260200182815250600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155905050505050565b604051806020016040528060007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b6040518060200160405280600081525090565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614cb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150356025913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610614ceb578284614cee565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f556e697377617056324c6962726172793a205a45524f5f41444452455353000081525060200191505060405180910390fd5b9250929050565b6000806000614daf8585614c29565b91509150858282604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040528051906020012060405160200180807fff000000000000000000000000000000000000000000000000000000000000008152506001018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401828152602001807f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f815250602001925050506040516020818303038152906040528051906020012060001c92505050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686520746f6b656e2072656c656173652074696d6520686173206e6f74206265656e2072656163686564207965742e50657263656e7420676f696e6720746f206d656368616e69637320697320746f6f20736d616c6c214f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e696d756d2064656c5457415020284c6f6e672920697320746f6f20736d616c6c2145524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520636f6e74726163742063616e2774206166666f726420746f20706179207468697320626f6e75732e556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c6f6e672064656c746120697320736d616c6c6572207468616e2073686f72742064656c746121217061757365642026262021696e697469616c446973747269627574696f6e416464726573732021496e697469616c4c697175696469747950726f7669646572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d696e696d756d2064656c54574150202853686f72742920697320746f6f20736d616c6c2150657263656e7420676f696e6720746f206d656368616e69637320697320746f6f20686967682145524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546865726520617265206e6f20626f6e757320746f6b656e7320746f20626520636c61696d65644669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f5745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c821b1f74ba86cc39966725af0b8c4c85d265b6523fbbb34fcb9c7e6b232ee064736f6c6343000606003350657263656e7420676f696e6720746f206d656368616e69637320697320746f6f20736d616c6c214d696e696d756d2064656c5457415020284c6f6e672920697320746f6f20736d616c6c21556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c6f6e672064656c746120697320736d616c6c6572207468616e2073686f72742064656c74612146756e6420646973747269627574696f6e20646f65736e2774206d6174636820746f74616c20737570706c792e4d696e696d756d2064656c54574150202853686f72742920697320746f6f20736d616c6c2150657263656e7420676f696e6720746f206d656368616e69637320697320746f6f206869676821000000000000000000000000000000000000000000000000000000000002a30000000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000019
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103b85760003560e01c8063683dd191116101f4578063ad5c46481161011a578063dc166f74116100ad578063ee98950d1161007c578063ee98950d1461114f578063f2fde38b1461116d578063f6cdce06146111b1578063fd319748146111cf576103b8565b8063dc166f7414611079578063dd62ed3e146110c3578063e28d8c4b1461113b578063e379c31b14611145576103b8565b8063d230891a116100e9578063d230891a14610f95578063d31e730914610fc3578063d5aed6bf14610ff1578063db15d18514611035576103b8565b8063ad5c464814610e9f578063adec638214610ee9578063c5700a0214610f21578063c816841b14610f4b576103b8565b806395d89b4111610192578063a3b49cd611610161578063a3b49cd614610d55578063a457c2d714610db1578063a9059cbb14610e17578063aaf3a69614610e7d576103b8565b806395d89b4114610c3e57806395f532b114610cc15780639728e90114610cdf578063982ce10914610d37576103b8565b8063715018a6116101ce578063715018a614610b7c5780637955ee6814610b8657806386cefcb614610ba45780638da5cb5b14610bf4576103b8565b8063683dd19114610ae85780636ee9eae314610b0657806370a0823114610b24576103b8565b80632f43c1bc116102e457806342ac935d116102775780635c975abb116102465780635c975abb14610a365780635f8ee76314610a5857806364365f1e14610a76578063658bcdb814610aa4576103b8565b806342ac935d1461099257806348c9364e146109b0578063524d4edc146109ce57806359d0f713146109ec576103b8565b806339509351116102b3578063395093511461086e5780633e45a299146108d45780633f4ba83a1461092c5780633f5b7d6714610936576103b8565b80632f43c1bc146107c4578063313ce567146107e25780633535f48b146108065780633940e9ee14610850576103b8565b806318953efc1161035c578063272efc691161032b578063272efc69146106b65780632887d7651461071257806329923838146107305780632bb8d15214610780576103b8565b806318953efc146105785780631c1f8aa3146105a257806321345f1f146105e657806323b872dd14610630576103b8565b8063095ea7b311610398578063095ea7b3146104b85780631393ca991461051e57806316280d1c1461053c57806318160ddd1461055a576103b8565b80626b3059146103bd578062c2f35e146103eb57806306fdde0314610435575b600080fd5b6103e9600480360360208110156103d357600080fd5b81019080803590602001909291905050506111ed565b005b6103f36113e6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61043d61140a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561047d578082015181840152602081019050610462565b50505050905090810190601f1680156104aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610504600480360360408110156104ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ac565b604051808215151515815260200191505060405180910390f35b6105266114ca565b6040518082815260200191505060405180910390f35b6105446114d0565b6040518082815260200191505060405180910390f35b6105626114d6565b6040518082815260200191505060405180910390f35b6105806114e0565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b6105e4600480360360208110156105b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114f6565b005b6105ee611667565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069c6004803603606081101561064657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061168d565b604051808215151515815260200191505060405180910390f35b6106f8600480360360208110156106cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611766565b604051808215151515815260200191505060405180910390f35b61071a611786565b6040518082815260200191505060405180910390f35b61077e6004803603604081101561074657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611792565b005b6107c26004803603602081101561079657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b7565b005b6107cc611a79565b6040518082815260200191505060405180910390f35b6107ea611a7f565b604051808260ff1660ff16815260200191505060405180910390f35b61080e611a96565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610858611abc565b6040518082815260200191505060405180910390f35b6108ba6004803603604081101561088457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac9565b604051808215151515815260200191505060405180910390f35b610916600480360360208110156108ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b7c565b6040518082815260200191505060405180910390f35b610934611bc8565b005b6109786004803603602081101561094c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9c565b604051808215151515815260200191505060405180910390f35b61099a611cf2565b6040518082815260200191505060405180910390f35b6109b8611cf8565b6040518082815260200191505060405180910390f35b6109d6611cfe565b6040518082815260200191505060405180910390f35b6109f4611df1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a3e611e09565b604051808215151515815260200191505060405180910390f35b610a60611e20565b6040518082815260200191505060405180910390f35b610aa260048036036020811015610a8c57600080fd5b8101908080359060200190929190505050611e26565b005b610ad260048036036020811015610aba57600080fd5b8101908080351515906020019092919050505061201f565b6040518082815260200191505060405180910390f35b610af061219f565b6040518082815260200191505060405180910390f35b610b0e6121ab565b6040518082815260200191505060405180910390f35b610b6660048036036020811015610b3a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121b5565b6040518082815260200191505060405180910390f35b610b846121fd565b005b610b8e612388565b6040518082815260200191505060405180910390f35b610bf260048036036040811015610bba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061238e565b005b610bfc612522565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c4661254c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c86578082015181840152602081019050610c6b565b50505050905090810190601f168015610cb35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610cc96125ee565b6040518082815260200191505060405180910390f35b610d2160048036036020811015610cf557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125f4565b6040518082815260200191505060405180910390f35b610d3f612640565b6040518082815260200191505060405180910390f35b610d9760048036036020811015610d6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061264a565b604051808215151515815260200191505060405180910390f35b610dfd60048036036040811015610dc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b604051808215151515815260200191505060405180910390f35b610e6360048036036040811015610e2d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612737565b604051808215151515815260200191505060405180910390f35b610e85612755565b604051808215151515815260200191505060405180910390f35b610ea7612768565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f1f60048036036040811015610eff57600080fd5b810190808035906020019092919080359060200190929190505050612780565b005b610f29612966565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b610f5361297c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610fc160048036036020811015610fab57600080fd5b81019080803590602001909291905050506129a2565b005b610fef60048036036020811015610fd957600080fd5b8101908080359060200190929190505050612aaf565b005b6110336004803603602081101561100757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c6e565b005b6110776004803603602081101561104b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dd6565b005b611081612ee4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b611125600480360360408110156110d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f0a565b6040518082815260200191505060405180910390f35b611143612f91565b005b61114d6131ad565b005b6111576133c6565b6040518082815260200191505060405180910390f35b6111af6004803603602081101561118357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506133d0565b005b6111b96135e0565b6040518082815260200191505060405180910390f35b6111d76135e6565b6040518082815260200191505060405180910390f35b6111f56135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811061132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4d61782053656c6c2052656d6f76616c20697320746f6f20686967682100000081525060200191505060405180910390fd5b600081116113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4d61782053656c6c2052656d6f76616c20697320746f6f20736d616c6c21000081525060200191505060405180910390fd5b6113ac816135f8565b7f908a26ad08354a79cb2c3e0d18c0bcd4d6ab7a2cb1013a3ce9c1092ab720a2a4816040518082815260200191505060405180910390a150565b7f00000000000000000000000069f9965857b9e9ee194157b3542a44d29189d47e81565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b5050505050905090565b60006114c06114b96135f0565b8484613602565b6001905092915050565b600c5481565b60145481565b6000600254905090565b601260009054906101000a900463ffffffff1681565b6114fe6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffbf2f40dac58d9ad39c9e749536924955b61ea211cb2e02ce8e773db54c50cce81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061169a8484846137f9565b61175b846116a66135f0565b611756856040518060600160405280602881526020016150e260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061170c6135f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ba29092919063ffffffff16565b613602565b600190509392505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b671f8a59691fb17c0081565b61179a6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118bf6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611981576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a765780600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611a46600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611792565b611a7530600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c54613c62565b5b50565b60105481565b6000600560009054906101000a900460ff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b686f139653eec764000081565b6000611b72611ad66135f0565b84611b6d8560016000611ae76135f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2390919063ffffffff16565b613602565b6001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b611bd06135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c9a613fab565b565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60175481565b600080600080611d2f600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000600f60159054906101000a900463ffffffff16820390506000600f60149054906101000a900460ff16611d6a5784611d6c565b835b9050611d76614be5565b60405180602001604052808463ffffffff16601054850381611d9457fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509050611dd2611dcd82670de0b6b3a76400006142ff565b6143d5565b71ffffffffffffffffffffffffffffffffffff16965050505050505090565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6000600960149054906101000a900460ff16905090565b60115481565b611e2e6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648110611f66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4d61782042757920426f6e757320697320746f6f20686967682100000000000081525060200191505060405180910390fd5b60008111611fdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4d61782042757920426f6e757320697320746f6f20736d616c6c21000000000081525060200191505060405180910390fd5b611fe5816143ea565b7fc84fe0ead4fe02d80b59499c259e42858b7497dca97f77ed4e4ee2b142259d56816040518082815260200191505060405180910390a150565b60008061202a6121ab565b905060006120366133c6565b90506000818311156120a45761205d670de0b6b3a7640000806143f490919063ffffffff16565b61209c8361208e670de0b6b3a7640000612080878961443e90919063ffffffff16565b61448890919063ffffffff16565b6143f490919063ffffffff16565b029050612102565b6120bf670de0b6b3a7640000806143f490919063ffffffff16565b6120fe836120f0670de0b6b3a76400006120e2888861443e90919063ffffffff16565b61448890919063ffffffff16565b6143f490919063ffffffff16565b0290505b60006121206064670de0b6b3a76400006143f490919063ffffffff16565b612128612640565b02905060006121496064670de0b6b3a76400006143f490919063ffffffff16565b6121516135e6565b02905086801561216057508183115b1561217257819550505050505061219a565b8615801561217f57508083115b1561219157809550505050505061219a565b82955050505050505b919050565b670de0b6b3a764000081565b6000601154905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6122056135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60165481565b6123966135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612458576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fe8bce7c68f90d290265fc32126eb383798b54548b31a0337f02476bf01db55b68282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125e45780601f106125b9576101008083540402835291602001916125e4565b820191906000526020600020905b8154815290600101906020018083116125c757829003601f168201915b5050505050905090565b60185481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b6000600854905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b600061272d6126776135f0565b84612728856040518060600160405280602581526020016151e960259139600160006126a16135f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ba29092919063ffffffff16565b613602565b6001905092915050565b600061274b6127446135f0565b84846137f9565b6001905092915050565b600f60149054906101000a900460ff1681565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6127886135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461284a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182116128a3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614fbf6024913960400191505060405180910390fd5b600181116128fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061510a6025913960400191505060405180910390fd5b808211612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061505a6027913960400191505060405180910390fd5b81601581905550806016819055505050565b600f60159054906101000a900463ffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6129aa6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806017819055507fd323ec23eac7c40d9be4b368e45bf81f440ce20859542d92a2135951e6d395406017546040518082815260200191505060405180910390a150565b612ab76135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60648110612bd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061512f6027913960400191505060405180910390fd5b60008111612c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f4f6028913960400191505060405180910390fd5b806018819055507faca98499e495dee9e81d6a44321efafa7e958a1b75548627ba0a0cb07b338e336018546040518082815260200191505060405180910390a150565b612c766135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612d65600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061238e565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612dd3600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161238e565b50565b612dde6135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ea0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612f9c33611b7c565b905060008111612ff7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061517b6027913960400191505060405180910390fd5b43613001336125f4565b1115613058576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614f1f6030913960400191505060405180910390fd5b80613062306121b5565b116130b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615009602c913960400191505060405180910390fd5b6130c13361450e565b7f5f6dbb40a7e083639ca2d30ccc15b704b350ed046efc30921dd05905d28b2336336130ec33611b7c565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a161313f3033836137f9565b7f964e2d08a7dfa215c7f97652d5a78863c4084f03692b4c2e677207a1d4fed0983382604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150565b7f00000000000000000000000069f9965857b9e9ee194157b3542a44d29189d47e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461326e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f21696e697469616c446973747269627574696f6e41646472657373000000000081525060200191505060405180910390fd5b6000600f60159054906101000a900463ffffffff1663ffffffff16146132fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f426f746820545741505320616c726561647920696e697469616c697a6564000081525060200191505060405180910390fd5b600080600061332c600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000600f60149054906101000a900460ff1661334e5783613350565b825b905081600f60156101000a81548163ffffffff021916908363ffffffff16021790555080601081905550671f8a59691fb17c0060118190555081601260006101000a81548163ffffffff021916908363ffffffff16021790555080601381905550671f8a59691fb17c0060148190555050505050565b6000601454905090565b6133d86135f0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461349a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f776026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b6000600754905090565b600033905090565b8060078190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613688576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806151c56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561370e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f9d6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b82613802611e09565b158061385957507f00000000000000000000000069f9965857b9e9ee194157b3542a44d29189d47e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80613869575061386833614582565b5b806138ff5750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156138fe57506138cf612522565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b5b613954576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806150816040913960400191505060405180910390fd5b61395d84614582565b613b915761396a84611c9c565b15613a44576139776145d8565b50613980614770565b50600061398d600161201f565b905060006139be670de0b6b3a76400006139b0868561448890919063ffffffff16565b6143f490919063ffffffff16565b90506139ca8582614908565b7f5f6dbb40a7e083639ca2d30ccc15b704b350ed046efc30921dd05905d28b2336856139f587611b7c565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050613b90565b613a4d83611c9c565b15613b8f57613a5a6145d8565b50613a63614770565b506000613a70600061201f565b90506000613aa1670de0b6b3a7640000613a93868561448890919063ffffffff16565b6143f490919063ffffffff16565b9050613ab6818561443e90919063ffffffff16565b93506000613ae26064613ad48460185461448890919063ffffffff16565b6143f490919063ffffffff16565b90506000613af9828461443e90919063ffffffff16565b9050613b06883083613c62565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613b8a57613b8988600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613c62565b5b505050505b5b5b613b9c848484613c62565b50505050565b6000838311158290613c4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c14578082015181840152602081019050613bf9565b50505050905090810190601f168015613c415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613ce8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806151566025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614efc6023913960400191505060405180910390fd5b613d79838383614921565b613de481604051806060016040528060268152602001614fe3602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ba29092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e77816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f2390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080828401905083811015613fa1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600960149054906101000a900460ff1661402d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6140716135f0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060006140c1614926565b90508373ffffffffffffffffffffffffffffffffffffffff16635909c0d56040518163ffffffff1660e01b815260040160206040518083038186803b15801561410957600080fd5b505afa15801561411d573d6000803e3d6000fd5b505050506040513d602081101561413357600080fd5b810190808051906020019092919050505092508373ffffffffffffffffffffffffffffffffffffffff16635a3d54936040518163ffffffff1660e01b815260040160206040518083038186803b15801561418c57600080fd5b505afa1580156141a0573d6000803e3d6000fd5b505050506040513d60208110156141b657600080fd5b8101908080519060200190929190505050915060008060008673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561421457600080fd5b505afa158015614228573d6000803e3d6000fd5b505050506040513d606081101561423e57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050509250925092508363ffffffff168163ffffffff16146142f557600081850390508063ffffffff16614294848661493c565b600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602870196508063ffffffff166142cc858561493c565b600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160286019550505b5050509193909250565b614307614c16565b600080831480614368575083600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16838486600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16029250828161436557fe5b04145b6143bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151a26023913960400191505060405180910390fd5b60405180602001604052808281525091505092915050565b6000607060ff168260000151901c9050919050565b8060088190555050565b600061443683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a6b565b905092915050565b600061448083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613ba2565b905092915050565b60008083141561449b5760009050614508565b60008284029050828482816144ac57fe5b0414614503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150c16021913960400191505060405180910390fd5b809150505b92915050565b6000809050604051806040016040528082815260200143815250600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080600080614609600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000600f60159054906101000a900463ffffffff16820390506016548163ffffffff161115614764576000600f60149054906101000a900460ff166146545784614656565b835b9050614660614be5565b60405180602001604052808463ffffffff1660105485038161467e57fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090508160108190555083600f60156101000a81548163ffffffff021916908363ffffffff1602179055506146e46146df82670de0b6b3a76400006142ff565b6143d5565b71ffffffffffffffffffffffffffffffffffff166011819055507f9cfe07a59ebb9a772e1fee2abd40b53001de7c2f0b2e713de333f564118c32c4601054600f60159054906101000a900463ffffffff16601154604051808481526020018363ffffffff168152602001828152602001935050505060405180910390a150505b60115494505050505090565b6000806000806147a1600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166140b4565b9250925092506000601260009054906101000a900463ffffffff16820390506015548163ffffffff1611156148fc576000600f60149054906101000a900460ff166147ec57846147ee565b835b90506147f8614be5565b60405180602001604052808463ffffffff1660135485038161481657fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090508160138190555083601260006101000a81548163ffffffff021916908363ffffffff16021790555061487c61487782670de0b6b3a76400006142ff565b6143d5565b71ffffffffffffffffffffffffffffffffffff166014819055507f58a4d24f16dcba303be147b5fa11dadeaad1c1f5f387900489134e0fb7a2aa57601354601260009054906101000a900463ffffffff16601454604051808481526020018363ffffffff168152602001828152602001935050505060405180910390a150505b60145494505050505090565b60006017544301905061491c838383614b31565b505050565b505050565b6000640100000000428161493657fe5b06905090565b614944614be5565b6000826dffffffffffffffffffffffffffff16116149ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4669786564506f696e743a204449565f42595f5a45524f00000000000000000081525060200191505060405180910390fd5b6040518060200160405280836dffffffffffffffffffffffffffff16607060ff16866dffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16901b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681614a4157fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16815250905092915050565b60008083118290614b17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614adc578082015181840152602081019050614ac1565b50505050905090810190601f168015614b095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614b2357fe5b049050809150509392505050565b604051806040016040528083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015401815260200182815250600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155905050505050565b604051806020016040528060007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b6040518060200160405280600081525090565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614cb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150356025913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610614ceb578284614cee565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f556e697377617056324c6962726172793a205a45524f5f41444452455353000081525060200191505060405180910390fd5b9250929050565b6000806000614daf8585614c29565b91509150858282604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040528051906020012060405160200180807fff000000000000000000000000000000000000000000000000000000000000008152506001018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401828152602001807f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f815250602001925050506040516020818303038152906040528051906020012060001c92505050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686520746f6b656e2072656c656173652074696d6520686173206e6f74206265656e2072656163686564207965742e50657263656e7420676f696e6720746f206d656368616e69637320697320746f6f20736d616c6c214f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e696d756d2064656c5457415020284c6f6e672920697320746f6f20736d616c6c2145524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520636f6e74726163742063616e2774206166666f726420746f20706179207468697320626f6e75732e556e697377617056324c6962726172793a204944454e544943414c5f4144445245535345534c6f6e672064656c746120697320736d616c6c6572207468616e2073686f72742064656c746121217061757365642026262021696e697469616c446973747269627574696f6e416464726573732021496e697469616c4c697175696469747950726f7669646572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d696e696d756d2064656c54574150202853686f72742920697320746f6f20736d616c6c2150657263656e7420676f696e6720746f206d656368616e69637320697320746f6f20686967682145524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546865726520617265206e6f20626f6e757320746f6b656e7320746f20626520636c61696d65644669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f5745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206c821b1f74ba86cc39966725af0b8c4c85d265b6523fbbb34fcb9c7e6b232ee064736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000002a30000000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000019
-----Decoded View---------------
Arg [0] : _minDeltaTwapLong (uint256): 172800
Arg [1] : _minDeltaTwapShort (uint256): 120
Arg [2] : _MECHANIC_PCT (uint256): 25
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000002a300
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000078
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000019
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.
Add Token to MetaMask (Web3)