Source Code
Overview
POL Balance
POL Value
$0.00Cross-Chain Transactions
Loading...
Loading
Contract Name:
MasterChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at polygonscan.com on 2021-09-25
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @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;
}
}
interface IBEP20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the bep token owner.
*/
function getOwner() external view returns (address);
/**
* @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 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) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @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");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
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 SafeBEP20
* @dev Wrappers around BEP20 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 SafeBEP20 for IBEP20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeBEP20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IBEP20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IBEP20 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
* {IBEP20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IBEP20 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),
"SafeBEP20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IBEP20 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(IBEP20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeBEP20: 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(IBEP20 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, "SafeBEP20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeBEP20: BEP20 operation did not succeed");
}
}
}
/*
* @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;
}
}
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () 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 Implementation of the {IBEP20} 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 {BEP20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-BEP20-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 BEP20 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 {IBEP20-approve}.
*/
contract BEP20 is Context, IBEP20, Ownable {
using SafeMath for uint256;
using Address for address;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _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 bep token owner.
*/
function getOwner() external override view returns (address) {
return owner();
}
/**
* @dev Returns the token name.
*/
function name() public override view returns (string memory) {
return _name;
}
/**
* @dev Returns the token decimals.
*/
function decimals() public override view returns (uint8) {
return _decimals;
}
/**
* @dev Returns the token symbol.
*/
function symbol() public override view returns (string memory) {
return _symbol;
}
/**
* @dev See {BEP20-totalSupply}.
*/
function totalSupply() public override view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {BEP20-balanceOf}.
*/
function balanceOf(address account) public override view returns (uint256) {
return _balances[account];
}
/**
* @dev See {BEP20-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 override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {BEP20-allowance}.
*/
function allowance(address owner, address spender) public override view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {BEP20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {BEP20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {BEP20};
*
* 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 override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(amount, "BEP20: 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 {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) {
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")
);
return true;
}
/**
* @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
* the total supply.
*
* Requirements
*
* - `msg.sender` must be the token owner
*/
function mint(uint256 amount) public onlyOwner returns (bool) {
_mint(_msgSender(), amount);
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), "BEP20: transfer from the zero address");
require(recipient != address(0), "BEP20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "BEP20: 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 {
require(account != address(0), "BEP20: mint to the zero address");
_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 {
require(account != address(0), "BEP20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "BEP20: 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 {
require(owner != address(0), "BEP20: approve from the zero address");
require(spender != address(0), "BEP20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(
account,
_msgSender(),
_allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance")
);
}
}
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol
pragma solidity >=0.5.0;
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;
}
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol
pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () internal {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// PolyGladiatorToken with Governance.
contract PolyGladiatorToken is BEP20 {
// Transfer tax rate in basis points. (default 7.5%)
uint16 public transferTaxRate = 750;
// Burn rate % of transfer tax. (default 30% x 7.5% = 2.25% of total amount).
uint16 public burnRate = 30;
// Max transfer tax rate: 10%.
uint16 public constant MAXIMUM_TRANSFER_TAX_RATE = 1000;
// Burn address
address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;
// Max transfer amount rate in basis points. (default is 0.5% of total supply)
uint16 public maxTransferAmountRate = 50;
// Addresses that excluded from antiWhale
mapping(address => bool) private _excludedFromAntiWhale;
// Automatic swap and liquify enabled
bool public swapAndLiquifyEnabled = false;
// Swap enabled when launch
bool public swapEnabled = false;
// Min amount to liquify. (default 10 LAVAs)
uint256 public minAmountToLiquify = 10 ether;
// The swap router, modifiable. Will be changed to Lava's router when our own AMM release
IUniswapV2Router02 public lavaRouter;
// The trading pair
address public lavaPair;
// In swap and liquify
bool private _inSwapAndLiquify;
// The operator can only update the transfer tax rate
address private _operator;
// Events
event OperatorTransferred(address indexed previousOperator, address indexed newOperator);
event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
event BurnRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
event MaxTransferAmountRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
event SwapAndLiquifyEnabledUpdated(address indexed operator, bool enabled);
event SwapEnabledUpdated(address indexed owner, bool enabled);
event MinAmountToLiquifyUpdated(address indexed operator, uint256 previousAmount, uint256 newAmount);
event LavaRouterUpdated(address indexed operator, address indexed router, address indexed pair);
event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
modifier onlyOperator() {
require(_operator == msg.sender, "operator: caller is not the operator");
_;
}
modifier antiWhale(address sender, address recipient, uint256 amount) {
if (maxTransferAmount() > 0) {
if (
_excludedFromAntiWhale[sender] == false
&& _excludedFromAntiWhale[recipient] == false
) {
require(amount <= maxTransferAmount(), "LAVA::antiWhale: Transfer amount exceeds the maxTransferAmount");
require(swapEnabled == true, "LAVA::swap: Cannot transfer at the moment");
}
}
_;
}
modifier lockTheSwap {
_inSwapAndLiquify = true;
_;
_inSwapAndLiquify = false;
}
modifier transferTaxFree {
uint16 _transferTaxRate = transferTaxRate;
transferTaxRate = 0;
_;
transferTaxRate = _transferTaxRate;
}
/**
* @notice Constructs the PolyGladiatorToken contract.
*/
constructor() public BEP20("LavaCake Token", "LAVA") {
_operator = _msgSender();
emit OperatorTransferred(address(0), _operator);
_excludedFromAntiWhale[msg.sender] = true;
_excludedFromAntiWhale[address(0)] = true;
_excludedFromAntiWhale[address(this)] = true;
_excludedFromAntiWhale[BURN_ADDRESS] = true;
}
/// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
function mint(address _to, uint256 _amount) public onlyOwner {
_mint(_to, _amount);
_moveDelegates(address(0), _delegates[_to], _amount);
}
/// @dev overrides transfer function to meet tokenomics of LAVA
function _transfer(address sender, address recipient, uint256 amount) internal virtual override antiWhale(sender, recipient, amount) {
// swap and liquify
if (
swapAndLiquifyEnabled == true
&& _inSwapAndLiquify == false
&& address(lavaRouter) != address(0)
&& lavaPair != address(0)
&& sender != lavaPair
&& sender != owner()
) {
swapAndLiquify();
}
if (recipient == BURN_ADDRESS || transferTaxRate == 0) {
super._transfer(sender, recipient, amount);
} else {
// default tax is 7.5% of every transfer
uint256 taxAmount = amount.mul(transferTaxRate).div(10000);
uint256 burnAmount = taxAmount.mul(burnRate).div(100);
uint256 liquidityAmount = taxAmount.sub(burnAmount);
require(taxAmount == burnAmount + liquidityAmount, "LAVA::transfer: Burn value invalid");
// default 92.5% of transfer sent to recipient
uint256 sendAmount = amount.sub(taxAmount);
require(amount == sendAmount + taxAmount, "LAVA::transfer: Tax value invalid");
super._transfer(sender, BURN_ADDRESS, burnAmount);
super._transfer(sender, address(this), liquidityAmount);
super._transfer(sender, recipient, sendAmount);
amount = sendAmount;
}
}
/// @dev Swap and liquify
function swapAndLiquify() private lockTheSwap transferTaxFree {
uint256 contractTokenBalance = balanceOf(address(this));
uint256 maxTransferAmount = maxTransferAmount();
contractTokenBalance = contractTokenBalance > maxTransferAmount ? maxTransferAmount : contractTokenBalance;
if (contractTokenBalance >= minAmountToLiquify) {
// only min amount to liquify
uint256 liquifyAmount = minAmountToLiquify;
// split the liquify amount into halves
uint256 half = liquifyAmount.div(2);
uint256 otherHalf = liquifyAmount.sub(half);
// capture the contract's current ETH balance.
// this is so that we can capture exactly the amount of ETH that the
// swap creates, and not make the liquidity event include any ETH that
// has been manually sent to the contract
uint256 initialBalance = address(this).balance;
// swap tokens for ETH
swapTokensForEth(half);
// how much ETH did we just swap into?
uint256 newBalance = address(this).balance.sub(initialBalance);
// add liquidity
addLiquidity(otherHalf, newBalance);
emit SwapAndLiquify(half, newBalance, otherHalf);
}
}
/// @dev Swap tokens for eth
function swapTokensForEth(uint256 tokenAmount) private {
// generate the lava pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = lavaRouter.WETH();
_approve(address(this), address(lavaRouter), tokenAmount);
// make the swap
lavaRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
/// @dev Add liquidity
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(lavaRouter), tokenAmount);
// add the liquidity
lavaRouter.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
operator(),
block.timestamp
);
}
/**
* @dev Returns the max transfer amount.
*/
function maxTransferAmount() public view returns (uint256) {
return totalSupply().mul(maxTransferAmountRate).div(10000);
}
/**
* @dev Returns the address is excluded from antiWhale or not.
*/
function isExcludedFromAntiWhale(address _account) public view returns (bool) {
return _excludedFromAntiWhale[_account];
}
// To receive BNB from lavaRouter when swapping
receive() external payable {}
/**
* @dev Update the transfer tax rate.
* Can only be called by the current operator.
*/
function updateTransferTaxRate(uint16 _transferTaxRate) public onlyOperator {
require(_transferTaxRate <= MAXIMUM_TRANSFER_TAX_RATE, "LAVA::updateTransferTaxRate: Transfer tax rate must not exceed the maximum rate.");
emit TransferTaxRateUpdated(msg.sender, transferTaxRate, _transferTaxRate);
transferTaxRate = _transferTaxRate;
}
/**
* @dev Update the burn rate.
* Can only be called by the current operator.
*/
function updateBurnRate(uint16 _burnRate) public onlyOperator {
require(_burnRate <= 100, "LAVA::updateBurnRate: Burn rate must not exceed the maximum rate.");
emit BurnRateUpdated(msg.sender, burnRate, _burnRate);
burnRate = _burnRate;
}
/**
* @dev Update the max transfer amount rate.
* Can only be called by the current operator.
*/
function updateMaxTransferAmountRate(uint16 _maxTransferAmountRate) public onlyOperator {
require(_maxTransferAmountRate <= 10000, "LAVA::updateMaxTransferAmountRate: Max transfer amount rate must not exceed the maximum rate.");
emit MaxTransferAmountRateUpdated(msg.sender, maxTransferAmountRate, _maxTransferAmountRate);
maxTransferAmountRate = _maxTransferAmountRate;
}
/**
* @dev Update the min amount to liquify.
* Can only be called by the current operator.
*/
function updateMinAmountToLiquify(uint256 _minAmount) public onlyOperator {
emit MinAmountToLiquifyUpdated(msg.sender, minAmountToLiquify, _minAmount);
minAmountToLiquify = _minAmount;
}
/**
* @dev Exclude or include an address from antiWhale.
* Can only be called by the current operator.
*/
function setExcludedFromAntiWhale(address _account, bool _excluded) public onlyOperator {
_excludedFromAntiWhale[_account] = _excluded;
}
/**
* @dev Update the swapAndLiquifyEnabled.
* Can only be called by the current operator.
*/
function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOperator {
emit SwapAndLiquifyEnabledUpdated(msg.sender, _enabled);
swapAndLiquifyEnabled = _enabled;
}
/**
* @dev Update the swapEnabled. Can only be called by the current Owner.
*/
function UpdateSwapEnabled(bool _enabled) public onlyOwner {
emit SwapEnabledUpdated(msg.sender, _enabled);
swapEnabled = _enabled;
}
/**
* @dev Update the swap router.
* Can only be called by the current operator.
*/
function updateLavaRouter(address _router) public onlyOperator {
lavaRouter = IUniswapV2Router02(_router);
lavaPair = IUniswapV2Factory(lavaRouter.factory()).getPair(address(this), lavaRouter.WETH());
require(lavaPair != address(0), "LAVA::updateLavaRouter: Invalid pair address.");
emit LavaRouterUpdated(msg.sender, address(lavaRouter), lavaPair);
}
/**
* @dev Returns the address of the current operator.
*/
function operator() public view returns (address) {
return _operator;
}
/**
* @dev Transfers operator of the contract to a new account (`newOperator`).
* Can only be called by the current operator.
*/
function transferOperator(address newOperator) public onlyOperator {
require(newOperator != address(0), "LAVA::transferOperator: new operator is the zero address");
emit OperatorTransferred(_operator, newOperator);
_operator = newOperator;
}
// Copied and modified from YAM code:
// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
// Which is copied and modified from COMPOUND:
// https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol
/// @dev A record of each accounts delegate
mapping (address => address) internal _delegates;
/// @notice A checkpoint for marking number of votes from a given block
struct Checkpoint {
uint32 fromBlock;
uint256 votes;
}
/// @notice A record of votes checkpoints for each account, by index
mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;
/// @notice The number of checkpoints for each account
mapping (address => uint32) public numCheckpoints;
/// @notice The EIP-712 typehash for the contract's domain
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");
/// @notice The EIP-712 typehash for the delegation struct used by the contract
bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
/// @notice A record of states for signing / validating signatures
mapping (address => uint) public nonces;
/// @notice An event thats emitted when an account changes its delegate
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/// @notice An event thats emitted when a delegate account's vote balance changes
event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegator The address to get delegatee for
*/
function delegates(address delegator)
external
view
returns (address)
{
return _delegates[delegator];
}
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegatee The address to delegate votes to
*/
function delegate(address delegatee) external {
return _delegate(msg.sender, delegatee);
}
/**
* @notice Delegates votes from signatory to `delegatee`
* @param delegatee The address to delegate votes to
* @param nonce The contract state required to match the signature
* @param expiry The time at which to expire the signature
* @param v The recovery byte of the signature
* @param r Half of the ECDSA signature pair
* @param s Half of the ECDSA signature pair
*/
function delegateBySig(
address delegatee,
uint nonce,
uint expiry,
uint8 v,
bytes32 r,
bytes32 s
)
external
{
bytes32 domainSeparator = keccak256(
abi.encode(
DOMAIN_TYPEHASH,
keccak256(bytes(name())),
getChainId(),
address(this)
)
);
bytes32 structHash = keccak256(
abi.encode(
DELEGATION_TYPEHASH,
delegatee,
nonce,
expiry
)
);
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
domainSeparator,
structHash
)
);
address signatory = ecrecover(digest, v, r, s);
require(signatory != address(0), "LAVA::delegateBySig: invalid signature");
require(nonce == nonces[signatory]++, "LAVA::delegateBySig: invalid nonce");
require(now <= expiry, "LAVA::delegateBySig: signature expired");
return _delegate(signatory, delegatee);
}
/**
* @notice Gets the current votes balance for `account`
* @param account The address to get votes balance
* @return The number of current votes for `account`
*/
function getCurrentVotes(address account)
external
view
returns (uint256)
{
uint32 nCheckpoints = numCheckpoints[account];
return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
}
/**
* @notice Determine the prior number of votes for an account as of a block number
* @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
* @param account The address of the account to check
* @param blockNumber The block number to get the vote balance at
* @return The number of votes the account had as of the given block
*/
function getPriorVotes(address account, uint blockNumber)
external
view
returns (uint256)
{
require(blockNumber < block.number, "LAVA::getPriorVotes: not yet determined");
uint32 nCheckpoints = numCheckpoints[account];
if (nCheckpoints == 0) {
return 0;
}
// First check most recent balance
if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
return checkpoints[account][nCheckpoints - 1].votes;
}
// Next check implicit zero balance
if (checkpoints[account][0].fromBlock > blockNumber) {
return 0;
}
uint32 lower = 0;
uint32 upper = nCheckpoints - 1;
while (upper > lower) {
uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
Checkpoint memory cp = checkpoints[account][center];
if (cp.fromBlock == blockNumber) {
return cp.votes;
} else if (cp.fromBlock < blockNumber) {
lower = center;
} else {
upper = center - 1;
}
}
return checkpoints[account][lower].votes;
}
function _delegate(address delegator, address delegatee)
internal
{
address currentDelegate = _delegates[delegator];
uint256 delegatorBalance = balanceOf(delegator); // balance of underlying LAVAs (not scaled);
_delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
_moveDelegates(currentDelegate, delegatee, delegatorBalance);
}
function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
if (srcRep != dstRep && amount > 0) {
if (srcRep != address(0)) {
// decrease old representative
uint32 srcRepNum = numCheckpoints[srcRep];
uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
uint256 srcRepNew = srcRepOld.sub(amount);
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
}
if (dstRep != address(0)) {
// increase new representative
uint32 dstRepNum = numCheckpoints[dstRep];
uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
uint256 dstRepNew = dstRepOld.add(amount);
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
}
}
}
function _writeCheckpoint(
address delegatee,
uint32 nCheckpoints,
uint256 oldVotes,
uint256 newVotes
)
internal
{
uint32 blockNumber = safe32(block.number, "LAVA::_writeCheckpoint: block number exceeds 32 bits");
if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
} else {
checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
numCheckpoints[delegatee] = nCheckpoints + 1;
}
emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
}
function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
require(n < 2**32, errorMessage);
return uint32(n);
}
function getChainId() internal pure returns (uint) {
uint256 chainId;
assembly { chainId := chainid() }
return chainId;
}
}
// MasterChef is the master of LavaCake Token (LAVA). He can make LAVA and he is a fair guy.
//
// Note that it's ownable and the owner wields tremendous power. Initially the ownership is
// transferred to TimeLock contract and Later the ownership will be transferred to a governance smart
// contract once $LAVA is sufficiently distributed and the community can show to govern itself.
//
// Have fun reading it. Hopefully it's bug-free. God bless.
contract MasterChef is Ownable, ReentrancyGuard {
using SafeMath for uint256;
using SafeBEP20 for IBEP20;
// Info of each user.
struct UserInfo {
uint256 amount; // How many LP tokens the user has provided.
uint256 rewardDebt; // Reward debt. See explanation below.
uint256 rewardLockedUp; // Reward locked up.
//
// We do some fancy math here. Basically, any point in time, the amount of LAVAs
// entitled to a user but is pending to be distributed is:
//
// pending reward = (user.amount * pool.accLavaPerShare) - user.rewardDebt
//
// Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens:
// 1. The pool's `accLavaPerShare` (and `lastRewardBlock`) gets updated.
// 2. User receives the pending reward sent to his/her address.
// 3. User's `amount` gets updated.
// 4. User's `rewardDebt` gets updated.
}
// Info of each pool.
struct PoolInfo {
IBEP20 lpToken; // Address of LP token contract.
uint256 allocPoint; // How many allocation points assigned to this pool. LAVAs to distribute per block.
uint256 lastRewardBlock; // Last block number that LAVAs distribution occurs.
uint256 accLavaPerShare; // Accumulated LAVAs per share, times 1e12. See below.
uint16 depositFeeBP; // Deposit fee in basis points
}
// The LAVA Token!
PolyGladiatorToken public lava;
// Dev address.
address public devAddr;
// LAVA tokens created per block.
uint256 public lavaPerBlock;
// Deposit Fee address
address public feeAddress;
// Harvest time (how many block);
uint256 public harvestTime;
// Start Block Harvest
uint256 public startBlockHarvest;
// Info of each pool.
PoolInfo[] public poolInfo;
// Info of each user that stakes LP tokens.
mapping(uint256 => mapping(address => UserInfo)) public userInfo;
// Total allocation points. Must be the sum of all allocation points in all pools.
uint256 public totalAllocPoint = 0;
// The block number when LAVA mining starts.
uint256 public startBlock;
// Total locked up rewards
uint256 public totalLockedUpRewards;
// Referral Bonus in basis points. Initially set to 3%
uint256 public refBonusBP = 300;
// Max deposit fee: 10%.
uint16 public constant MAXIMUM_DEPOSIT_FEE_BP = 1000;
// Max referral commission rate: 20%.
uint16 public constant MAXIMUM_REFERRAL_BP = 2000;
// Referral Mapping
mapping(address => address) public referrers; // account_address -> referrer_address
mapping(address => uint256) public referredCount; // referrer_address -> num_of_referred
// Pool Exists Mapper
mapping(IBEP20 => bool) public poolExistence;
// Pool ID Tracker Mapper
mapping(IBEP20 => uint256) public poolIdForLpAddress;
// Initial emission rate: 1 LAVA per block.
uint256 public constant INITIAL_EMISSION_RATE = 1 ether;
// Initial harvest time: 1 day.
uint256 public constant INITIAL_HARVEST_TIME = 28800;
event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
event EmergencyWithdraw(
address indexed user,
uint256 indexed pid,
uint256 amount
);
event SetFeeAddress(address indexed user, address indexed _devAddress);
event SetDevAddress(address indexed user, address indexed _feeAddress);
event Referral(address indexed _referrer, address indexed _user);
event ReferralPaid(address indexed _user, address indexed _userTo, uint256 _reward);
event ReferralBonusBpChanged(uint256 _oldBp, uint256 _newBp);
event EmissionRateUpdated(address indexed caller, uint256 previousAmount, uint256 newAmount);
event UpdateHarvestTime(address indexed caller, uint256 _oldHarvestTime, uint256 _newHarvestTime);
event UpdateStartBlockHarvest(address indexed caller, uint256 _oldStartBlockHarvest, uint256 _newStartBlockHarvest);
event RewardLockedUp(address indexed user, uint256 indexed pid, uint256 amountLockedUp);
constructor(
PolyGladiatorToken _glad,
address _devAddr,
address _feeAddress,
uint256 _startBlock
) public {
lava = _glad;
devAddr = _devAddr;
feeAddress = _feeAddress;
lavaPerBlock = INITIAL_EMISSION_RATE;
harvestTime = INITIAL_HARVEST_TIME;
startBlock = _startBlock;
startBlockHarvest = _startBlock;
}
// Get number of pools added.
function poolLength() external view returns (uint256) {
return poolInfo.length;
}
function getPoolIdForLpToken(IBEP20 _lpToken) external view returns (uint256) {
require(poolExistence[_lpToken] != false, "getPoolIdForLpToken: do not exist");
return poolIdForLpAddress[_lpToken];
}
// Modifier to check Duplicate pools
modifier nonDuplicated(IBEP20 _lpToken) {
require(poolExistence[_lpToken] == false, "nonDuplicated: duplicated");
_;
}
// Add a new lp to the pool. Can only be called by the owner.
function add(
uint256 _allocPoint,
IBEP20 _lpToken,
uint16 _depositFeeBP,
bool _withUpdate
) public onlyOwner nonDuplicated(_lpToken) {
require(_depositFeeBP <= MAXIMUM_DEPOSIT_FEE_BP, "add: invalid deposit fee basis points");
if (_withUpdate) {
massUpdatePools();
}
uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
totalAllocPoint = totalAllocPoint.add(_allocPoint);
poolExistence[_lpToken] = true;
poolInfo.push(
PoolInfo({
lpToken: _lpToken,
allocPoint: _allocPoint,
lastRewardBlock: lastRewardBlock,
accLavaPerShare: 0,
depositFeeBP: _depositFeeBP
})
);
poolIdForLpAddress[_lpToken] = poolInfo.length - 1;
}
// Update the given pool's LAVA allocation point and deposit fee. Can only be called by the owner.
function set(
uint256 _pid,
uint256 _allocPoint,
uint16 _depositFeeBP,
bool _withUpdate
) public onlyOwner {
require(_depositFeeBP <= MAXIMUM_DEPOSIT_FEE_BP, "set: invalid deposit fee basis points");
if (_withUpdate) {
massUpdatePools();
}
totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(
_allocPoint
);
poolInfo[_pid].allocPoint = _allocPoint;
poolInfo[_pid].depositFeeBP = _depositFeeBP;
}
// Return reward multiplier over the given _from to _to block.
function getMultiplier(uint256 _from, uint256 _to)
public
pure
returns (uint256)
{
return _to.sub(_from);
}
// View function to see pending LAVAs on frontend.
function pendingLava(uint256 _pid, address _user)
external
view
returns (uint256)
{
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][_user];
uint256 accLavaPerShare = pool.accLavaPerShare;
uint256 lpSupply = pool.lpToken.balanceOf(address(this));
if (block.number > pool.lastRewardBlock && lpSupply != 0) {
uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
uint256 lavaReward = multiplier.mul(lavaPerBlock).mul(pool.allocPoint).div(
totalAllocPoint
);
accLavaPerShare = accLavaPerShare.add(
lavaReward.mul(1e12).div(lpSupply)
);
}
uint256 pending = user.amount.mul(accLavaPerShare).div(1e12).sub(user.rewardDebt);
return pending.add(user.rewardLockedUp);
}
// Update reward variables for all pools. Be careful of gas spending!
function massUpdatePools() public {
uint256 length = poolInfo.length;
for (uint256 pid = 0; pid < length; ++pid) {
updatePool(pid);
}
}
// Update reward variables of the given pool to be up-to-date.
function updatePool(uint256 _pid) public {
PoolInfo storage pool = poolInfo[_pid];
if (block.number <= pool.lastRewardBlock) {
return;
}
uint256 lpSupply = pool.lpToken.balanceOf(address(this));
if (lpSupply == 0 || pool.allocPoint == 0) {
pool.lastRewardBlock = block.number;
return;
}
uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
uint256 lavaReward =
multiplier.mul(lavaPerBlock).mul(pool.allocPoint).div(
totalAllocPoint
);
lava.mint(devAddr, lavaReward.div(10));
lava.mint(address(this), lavaReward);
pool.accLavaPerShare = pool.accLavaPerShare.add(
lavaReward.mul(1e12).div(lpSupply)
);
pool.lastRewardBlock = block.number;
}
// Deposit LP tokens to MasterChef for LAVA allocation.
function deposit(uint256 _pid, uint256 _amount) public nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
updatePool(_pid);
payOrLockupPendingLava(_pid);
if (_amount > 0) {
pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
if (address(pool.lpToken) == address(lava)) {
uint256 transferTax = _amount.mul(lava.transferTaxRate()).div(10000);
_amount = _amount.sub(transferTax);
}
if (pool.depositFeeBP > 0) {
uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000);
user.amount = user.amount.add(_amount).sub(depositFee);
pool.lpToken.safeTransfer(feeAddress, depositFee);
} else {
user.amount = user.amount.add(_amount);
}
}
user.rewardDebt = user.amount.mul(pool.accLavaPerShare).div(1e12);
emit Deposit(msg.sender, _pid, _amount);
}
// Deposit LP tokens to MasterChef for LAVA allocation with referral.
function deposit(uint256 _pid, uint256 _amount, address _referrer) public nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
updatePool(_pid);
if (_amount > 0 && _referrer != address(0) && _referrer == address(_referrer) && _referrer != msg.sender) {
setReferral(msg.sender, _referrer);
}
payOrLockupPendingLava(_pid);
if (_amount > 0) {
pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
if (address(pool.lpToken) == address(lava)) {
uint256 transferTax = _amount.mul(lava.transferTaxRate()).div(10000);
_amount = _amount.sub(transferTax);
}
if (pool.depositFeeBP > 0) {
uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000);
user.amount = user.amount.add(_amount).sub(depositFee);
pool.lpToken.safeTransfer(feeAddress, depositFee);
} else {
user.amount = user.amount.add(_amount);
}
}
user.rewardDebt = user.amount.mul(pool.accLavaPerShare).div(1e12);
emit Deposit(msg.sender, _pid, _amount);
}
// Withdraw LP tokens from MasterChef.
function withdraw(uint256 _pid, uint256 _amount) public nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
require(user.amount >= _amount, "withdraw: not good");
updatePool(_pid);
payOrLockupPendingLava(_pid);
if (_amount > 0) {
user.amount = user.amount.sub(_amount);
pool.lpToken.safeTransfer(address(msg.sender), _amount);
}
user.rewardDebt = user.amount.mul(pool.accLavaPerShare).div(1e12);
emit Withdraw(msg.sender, _pid, _amount);
}
// Withdraw without caring about rewards. EMERGENCY ONLY.
function emergencyWithdraw(uint256 _pid) public nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
pool.lpToken.safeTransfer(address(msg.sender), user.amount);
emit EmergencyWithdraw(msg.sender, _pid, user.amount);
user.amount = 0;
user.rewardDebt = 0;
user.rewardLockedUp = 0;
}
// Pay or lockup pending LAVAs.
function payOrLockupPendingLava(uint256 _pid) internal {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
uint256 pending = user.amount.mul(pool.accLavaPerShare).div(1e12).sub(user.rewardDebt);
uint256 totalRewards = pending.add(user.rewardLockedUp);
uint256 lastBlockHarvest = startBlockHarvest.add(harvestTime);
if (block.number >= startBlockHarvest && block.number <= lastBlockHarvest) {
if (pending > 0 || user.rewardLockedUp > 0) {
// reset lockup
totalLockedUpRewards = totalLockedUpRewards.sub(user.rewardLockedUp);
user.rewardLockedUp = 0;
// send rewards
safeLavaTransfer(msg.sender, totalRewards);
payReferralCommission(msg.sender, totalRewards);
}
} else if (pending > 0) {
user.rewardLockedUp = user.rewardLockedUp.add(pending);
totalLockedUpRewards = totalLockedUpRewards.add(pending);
emit RewardLockedUp(msg.sender, _pid, pending);
}
}
// Safe lava transfer function, just in case if rounding error causes pool to not have enough LAVAs.
function safeLavaTransfer(address _to, uint256 _amount) internal {
uint256 lavaBal = lava.balanceOf(address(this));
bool transferSuccess = false;
if (_amount > lavaBal) {
transferSuccess = lava.transfer(_to, lavaBal);
} else {
transferSuccess = lava.transfer(_to, _amount);
}
require(transferSuccess, "safeLavaTransfer: transfer failed.");
}
// Update dev address by the previous dev.
function setDevAddress(address _devaddr) public {
require(_devaddr != address(0), "dev: invalid address");
require(msg.sender == devAddr, "dev: wut?");
devAddr = _devaddr;
emit SetDevAddress(msg.sender, _devaddr);
}
// Update fee address by the previous fee address.
function setFeeAddress(address _feeAddress) public {
require(_feeAddress != address(0), "setFeeAddress: invalid address");
require(msg.sender == feeAddress, "setFeeAddress: FORBIDDEN");
feeAddress = _feeAddress;
emit SetFeeAddress(msg.sender, _feeAddress);
}
// updateEmissionRate
function updateEmissionRate(uint256 _gladPerBlock) public onlyOwner {
massUpdatePools();
emit EmissionRateUpdated(msg.sender, lavaPerBlock, _gladPerBlock);
lavaPerBlock = _gladPerBlock;
}
// updateHarvestTime, how many blocks
function updateHarvestTime(uint256 _harvestTime) public onlyOwner {
harvestTime = _harvestTime;
emit UpdateHarvestTime(msg.sender, harvestTime, _harvestTime);
}
// updateStartBlockHarvest
function updateStartBlockHarvest(uint256 _startBlockHarvest) public onlyOwner {
startBlockHarvest = _startBlockHarvest;
emit UpdateStartBlockHarvest(msg.sender, startBlockHarvest, _startBlockHarvest);
}
// Set Referral Address for a user
function setReferral(address _user, address _referrer) internal {
if (_referrer == address(_referrer) && referrers[_user] == address(0) && _referrer != address(0) && _referrer != _user) {
referrers[_user] = _referrer;
referredCount[_referrer] += 1;
emit Referral(_user, _referrer);
}
}
// Get Referral Address for a Account
function getReferral(address _user) public view returns (address) {
return referrers[_user];
}
// Pay referral commission to the referrer who referred this user.
function payReferralCommission(address _user, uint256 _pending) internal {
address referrer = getReferral(_user);
if (referrer != address(0) && referrer != _user && refBonusBP > 0) {
uint256 refBonusEarned = _pending.mul(refBonusBP).div(10000);
lava.mint(referrer, refBonusEarned);
emit ReferralPaid(_user, referrer, refBonusEarned);
}
}
// Referral Bonus in basis points.
// Initially set to 3%, this this the ability to increase or decrease the Bonus percentage based on
// community voting and feedback.
function updateReferralBonusBp(uint256 _newRefBonusBp) public onlyOwner {
require(_newRefBonusBp <= MAXIMUM_REFERRAL_BP, "updateRefBonusPercent: invalid referral bonus basis points");
require(_newRefBonusBp != refBonusBP, "updateRefBonusPercent: same bonus bp set");
uint256 previousRefBonusBP = refBonusBP;
refBonusBP = _newRefBonusBp;
emit ReferralBonusBpChanged(previousRefBonusBP, _newRefBonusBp);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract PolyGladiatorToken","name":"_glad","type":"address"},{"internalType":"address","name":"_devAddr","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"EmissionRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_referrer","type":"address"},{"indexed":true,"internalType":"address","name":"_user","type":"address"}],"name":"Referral","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_oldBp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newBp","type":"uint256"}],"name":"ReferralBonusBpChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_userTo","type":"address"},{"indexed":false,"internalType":"uint256","name":"_reward","type":"uint256"}],"name":"ReferralPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountLockedUp","type":"uint256"}],"name":"RewardLockedUp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"_feeAddress","type":"address"}],"name":"SetDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"_devAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"_oldHarvestTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newHarvestTime","type":"uint256"}],"name":"UpdateHarvestTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"_oldStartBlockHarvest","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newStartBlockHarvest","type":"uint256"}],"name":"UpdateStartBlockHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"INITIAL_EMISSION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_HARVEST_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_DEPOSIT_FEE_BP","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_REFERRAL_BP","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IBEP20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_referrer","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"_lpToken","type":"address"}],"name":"getPoolIdForLpToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getReferral","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvestTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lava","outputs":[{"internalType":"contract PolyGladiatorToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lavaPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingLava","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"name":"poolIdForLpAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IBEP20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accLavaPerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refBonusBP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"referredCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"referrers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlockHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLockedUpRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gladPerBlock","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_harvestTime","type":"uint256"}],"name":"updateHarvestTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newRefBonusBp","type":"uint256"}],"name":"updateReferralBonusBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlockHarvest","type":"uint256"}],"name":"updateStartBlockHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"rewardLockedUp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526000600a5561012c600d553480156200001c57600080fd5b5060405162004b4638038062004b46833981810160405260808110156200004257600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620000836200021b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506001808190555083600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550670de0b6b3a764000060048190555061708060068190555080600b81905550806007819055505050505062000223565b600033905090565b61491380620002336000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c8063715018a6116101465780639bf62f7e116100c3578063d963842211610087578063d963842214610aaf578063da09c72c14610b01578063decc294014610b35578063e2bbb15814610b53578063f2fde38b14610b8b578063f480821014610bcf5761025e565b80639bf62f7e1461096d578063cbd258b5146109c5578063d0d41fe114610a1f578063d55e969414610a63578063d6ed7bf114610a915761025e565b80638dbb1e3a1161010a5780638dbb1e3a146108195780638dbdbe6d1461086557806391bb809c146108bd57806393f1a40b146108db578063955c9b931461094b5761025e565b8063715018a61461070157806376ea6ee01461070b57806384e82a33146107395780638705fcd4146107a15780638da5cb5b146107e55761025e565b8063441a3e70116101df5780635312ea8e116101a35780635312ea8e146105fd578063579ab7641461062b578063590a050d1461068d578063630b5ba1146106ab57806364ed743b146106b557806366f685ea146106e35761025e565b8063441a3e70146104ed578063474fa6301461052557806348cd4cb1146105435780634a3b68cc1461056157806351eb05a6146105cf5761025e565b8063190f39f011610226578063190f39f0146103795780633a22df78146103d15780633b0f0f2f146103f35780633f7b06d81461046157806341275358146104b95761025e565b8063081e3eda146102635780630ba84cd2146102815780631526fe27146102af57806317809b171461032757806317caf6f11461035b575b600080fd5b61026b610bed565b6040518082815260200191505060405180910390f35b6102ad6004803603602081101561029757600080fd5b8101908080359060200190929190505050610bfa565b005b6102db600480360360208110156102c557600080fd5b8101908080359060200190929190505050610d2c565b604051808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018261ffff1681526020019550505050505060405180910390f35b61032f610d9d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610363610dc3565b6040518082815260200191505060405180910390f35b6103bb6004803603602081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc9565b6040518082815260200191505060405180910390f35b6103d9610ebb565b604051808261ffff16815260200191505060405180910390f35b6104356004803603602081101561040957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ec1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104a36004803603602081101561047757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2a565b6040518082815260200191505060405180910390f35b6104c1610f42565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105236004803603604081101561050357600080fd5b810190808035906020019092919080359060200190929190505050610f68565b005b61052d6111f6565b6040518082815260200191505060405180910390f35b61054b6111fc565b6040518082815260200191505060405180910390f35b6105a36004803603602081101561057757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611202565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105fb600480360360208110156105e557600080fd5b8101908080359060200190929190505050611235565b005b6106296004803603602081101561061357600080fd5b8101908080359060200190929190505050611590565b005b6106776004803603604081101561064157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611754565b6040518082815260200191505060405180910390f35b6106956119b6565b6040518082815260200191505060405180910390f35b6106b36119bc565b005b6106e1600480360360208110156106cb57600080fd5b81019080803590602001909291905050506119e9565b005b6106eb611bbc565b6040518082815260200191505060405180910390f35b610709611bc2565b005b6107376004803603602081101561072157600080fd5b8101908080359060200190929190505050611d48565b005b61079f6004803603608081101561074f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803561ffff169060200190929190803515159060200190929190505050611e72565b005b6107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612248565b005b6107ed61244c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084f6004803603604081101561082f57600080fd5b810190808035906020019092919080359060200190929190505050612475565b6040518082815260200191505060405180910390f35b6108bb6004803603606081101561087b57600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612492565b005b6108c56129d0565b6040518082815260200191505060405180910390f35b610927600480360360408110156108f157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129dc565b60405180848152602001838152602001828152602001935050505060405180910390f35b610953612a13565b604051808261ffff16815260200191505060405180910390f35b6109af6004803603602081101561098357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a19565b6040518082815260200191505060405180910390f35b610a07600480360360208110156109db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a31565b60405180821515815260200191505060405180910390f35b610a6160048036036020811015610a3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a51565b005b610a8f60048036036020811015610a7957600080fd5b8101908080359060200190929190505050612c55565b005b610a99612d7f565b6040518082815260200191505060405180910390f35b610aff60048036036080811015610ac557600080fd5b810190808035906020019092919080359060200190929190803561ffff169060200190929190803515159060200190929190505050612d85565b005b610b09612f6c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b3d612f92565b6040518082815260200191505060405180910390f35b610b8960048036036040811015610b6957600080fd5b810190808035906020019092919080359060200190929190505050612f98565b005b610bcd60048036036020811015610ba157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613419565b005b610bd7613624565b6040518082815260200191505060405180910390f35b6000600880549050905090565b610c0261362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610cca6119bc565b3373ffffffffffffffffffffffffffffffffffffffff167feedc6338c9c1ad8f3cd6c90dd09dbe98dbd57e610d3e59a17996d07acb0d951160045483604051808381526020018281526020019250505060405180910390a28060048190555050565b60088181548110610d3957fe5b90600052602060002090600502016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900461ffff16905085565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610e74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148bd6021913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d081565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f6020528060005260406000206000915090505481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026001541415610fe1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600060088381548110610ff857fe5b9060005260206000209060050201905060006009600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905082816000015410156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b6110df84611235565b6110e884613632565b60008311156111605761110883826000015461383590919063ffffffff16565b816000018190555061115f33848460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b5b61119264e8d4a510006111848460030154846000015461392190919063ffffffff16565b6139a790919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568856040518082815260200191505060405180910390a35050600180819055505050565b600c5481565b600b5481565b600e6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006008828154811061124457fe5b9060005260206000209060050201905080600201544311611265575061158d565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112f257600080fd5b505afa158015611306573d6000803e3d6000fd5b505050506040513d602081101561131c57600080fd5b810190808051906020019092919050505090506000811480611342575060008260010154145b1561135757438260020181905550505061158d565b6000611367836002015443612475565b905060006113aa600a5461139c866001015461138e6004548761392190919063ffffffff16565b61392190919063ffffffff16565b6139a790919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611421600a856139a790919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561147457600080fd5b505af1158015611488573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561151f57600080fd5b505af1158015611533573d6000803e3d6000fd5b505050506115776115648461155664e8d4a510008561392190919063ffffffff16565b6139a790919063ffffffff16565b85600301546139f190919063ffffffff16565b8460030181905550438460020181905550505050505b50565b60026001541415611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006008828154811061162057fe5b9060005260206000209060050201905060006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506116d73382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a360008160000181905550600081600101819055506000816002018190555050506001808190555050565b6000806008848154811061176457fe5b9060005260206000209060050201905060006009600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561185e57600080fd5b505afa158015611872573d6000803e3d6000fd5b505050506040513d602081101561188857600080fd5b810190808051906020019092919050505090508360020154431180156118af575060008114155b1561194a5760006118c4856002015443612475565b90506000611907600a546118f988600101546118eb6004548761392190919063ffffffff16565b61392190919063ffffffff16565b6139a790919063ffffffff16565b90506119456119368461192864e8d4a510008561392190919063ffffffff16565b6139a790919063ffffffff16565b856139f190919063ffffffff16565b935050505b6000611990846001015461198264e8d4a5100061197487896000015461392190919063ffffffff16565b6139a790919063ffffffff16565b61383590919063ffffffff16565b90506119a98460020154826139f190919063ffffffff16565b9550505050505092915050565b60075481565b6000600880549050905060005b818110156119e5576119da81611235565b8060010190506119c9565b5050565b6119f161362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ab1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6107d061ffff16811115611b10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a81526020018061477d603a913960400191505060405180910390fd5b600d54811415611b6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806148736028913960400191505060405180910390fd5b6000600d54905081600d819055507f3282b692bfebf5f35b198a229212cf532c72099026ab54c4b8665382d1086b3f8183604051808381526020018281526020019250505060405180910390a15050565b600d5481565b611bca61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611d5061362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806006819055503373ffffffffffffffffffffffffffffffffffffffff167f2b73c024eb96cc0a172475ed07a402c60e270cbbfdf97a182c9d87699b67196960065483604051808381526020018281526020019250505060405180910390a250565b611e7a61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8260001515601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612001576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f6e6f6e4475706c6963617465643a206475706c6963617465640000000000000081525060200191505060405180910390fd5b6103e861ffff168361ffff161115612064576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147586025913960400191505060405180910390fd5b8115612073576120726119bc565b5b6000600b54431161208657600b54612088565b435b905061209f86600a546139f190919063ffffffff16565b600a819055506001601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060086040518060a001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001888152602001838152602001600081526020018661ffff16815250908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff1602179055505050600160088054905003601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f736574466565416464726573733a20696e76616c69642061646472657373000081525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f736574466565416464726573733a20464f5242494444454e000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f760405160405180910390a350565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061248a838361383590919063ffffffff16565b905092915050565b6002600154141561250b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006008848154811061252257fe5b9060005260206000209060050201905060006009600086815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061258f85611235565b6000841180156125cc5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561260357508273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561263b57503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561264b5761264a3384613a79565b5b61265485613632565b6000841115612939576126ae3330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613ce0909392919063ffffffff16565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128105760006127f76127106127e9600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b65d08b06040518163ffffffff1660e01b815260040160206040518083038186803b15801561279b57600080fd5b505afa1580156127af573d6000803e3d6000fd5b505050506040513d60208110156127c557600080fd5b810190808051906020019092919050505061ffff168861392190919063ffffffff16565b6139a790919063ffffffff16565b905061280c818661383590919063ffffffff16565b9450505b60008260040160009054906101000a900461ffff1661ffff16111561291857600061286e6127106128608560040160009054906101000a900461ffff1661ffff168861392190919063ffffffff16565b6139a790919063ffffffff16565b90506128998161288b8785600001546139f190919063ffffffff16565b61383590919063ffffffff16565b8260000181905550612912600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b50612938565b61292f8482600001546139f190919063ffffffff16565b81600001819055505b5b61296b64e8d4a5100061295d8460030154846000015461392190919063ffffffff16565b6139a790919063ffffffff16565b8160010181905550843373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a3505060018081905550505050565b670de0b6b3a764000081565b6009602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154905083565b6103e881565b60116020528060005260406000206000915090505481565b60106020528060005260406000206000915054906101000a900460ff1681565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6465763a20696e76616c6964206164647265737300000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612bb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e760405160405180910390a350565b612c5d61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806007819055503373ffffffffffffffffffffffffffffffffffffffff167f852b6c7042aea52c8cb5b3c9a29cd27da445f35ed0049828729b4e685ec9d36560075483604051808381526020018281526020019250505060405180910390a250565b60045481565b612d8d61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e4d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6103e861ffff168261ffff161115612eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061484e6025913960400191505060405180910390fd5b8015612ebf57612ebe6119bc565b5b612f0483612ef660088781548110612ed357fe5b906000526020600020906005020160010154600a5461383590919063ffffffff16565b6139f190919063ffffffff16565b600a819055508260088581548110612f1857fe5b9060005260206000209060050201600101819055508160088581548110612f3b57fe5b906000526020600020906005020160040160006101000a81548161ffff021916908361ffff16021790555050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61708081565b60026001541415613011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006008838154811061302857fe5b9060005260206000209060050201905060006009600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061309584611235565b61309e84613632565b6000831115613383576130f83330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613ce0909392919063ffffffff16565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561325a576000613241612710613233600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b65d08b06040518163ffffffff1660e01b815260040160206040518083038186803b1580156131e557600080fd5b505afa1580156131f9573d6000803e3d6000fd5b505050506040513d602081101561320f57600080fd5b810190808051906020019092919050505061ffff168761392190919063ffffffff16565b6139a790919063ffffffff16565b9050613256818561383590919063ffffffff16565b9350505b60008260040160009054906101000a900461ffff1661ffff1611156133625760006132b86127106132aa8560040160009054906101000a900461ffff1661ffff168761392190919063ffffffff16565b6139a790919063ffffffff16565b90506132e3816132d58685600001546139f190919063ffffffff16565b61383590919063ffffffff16565b826000018190555061335c600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b50613382565b6133798382600001546139f190919063ffffffff16565b81600001819055505b5b6133b564e8d4a510006133a78460030154846000015461392190919063ffffffff16565b6139a790919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050600180819055505050565b61342161362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146134e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613567576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147e16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b600033905090565b60006008828154811061364157fe5b9060005260206000209060050201905060006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006136ef82600101546136e164e8d4a510006136d38760030154876000015461392190919063ffffffff16565b6139a790919063ffffffff16565b61383590919063ffffffff16565b9050600061370a8360020154836139f190919063ffffffff16565b905060006137256006546007546139f190919063ffffffff16565b905060075443101580156137395750804311155b15613799576000831180613751575060008460020154115b156137945761376f8460020154600c5461383590919063ffffffff16565b600c81905550600084600201819055506137893383613da1565b6137933383614075565b5b61382d565b600083111561382c576137b98385600201546139f190919063ffffffff16565b84600201819055506137d683600c546139f190919063ffffffff16565b600c81905550853373ffffffffffffffffffffffffffffffffffffffff167fee470483107f579a55c754fa00613c45a9a3b617a418b39cb0be97e5381ba7c1856040518082815260200191505060405180910390a35b5b505050505050565b600061387783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614242565b905092915050565b61391c8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614302565b505050565b60008083141561393457600090506139a1565b600082840290508284828161394557fe5b041461399c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061482d6021913960400191505060405180910390fd5b809150505b92915050565b60006139e983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506143f1565b905092915050565b600080828401905083811015613a6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b8073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148015613b3f5750600073ffffffffffffffffffffffffffffffffffffffff16600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015613b785750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015613bb057508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15613cdc5780600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f9d05414fb79fac216c15606de5cc06664e91a254e4d5f57664d5f1beaf7fb7ef60405160405180910390a35b5050565b613d9b846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614302565b50505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613e2c57600080fd5b505afa158015613e40573d6000803e3d6000fd5b505050506040513d6020811015613e5657600080fd5b81019080805190602001909291905050509050600081831115613f4857600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613f0657600080fd5b505af1158015613f1a573d6000803e3d6000fd5b505050506040513d6020811015613f3057600080fd5b81019080805190602001909291905050509050614019565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613fdb57600080fd5b505af1158015613fef573d6000803e3d6000fd5b505050506040513d602081101561400557600080fd5b810190808051906020019092919050505090505b8061406f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061489b6022913960400191505060405180910390fd5b50505050565b600061408083610ec1565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156140eb57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156140f957506000600d54115b1561423d57600061412961271061411b600d548661392190919063ffffffff16565b6139a790919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156141be57600080fd5b505af11580156141d2573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f0a721ab4682ceb61c7e4d264ef879fc419a6d764b136e7d96ef54b2053c75673836040518082815260200191505060405180910390a3505b505050565b60008383111582906142ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142b4578082015181840152602081019050614299565b50505050905090810190601f1680156142e15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060614364826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166144b79092919063ffffffff16565b90506000815111156143ec5780806020019051602081101561438557600080fd5b81019080805190602001909291905050506143eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147b7602a913960400191505060405180910390fd5b5b505050565b6000808311829061449d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614462578082015181840152602081019050614447565b50505050905090810190601f16801561448f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816144a957fe5b049050809150509392505050565b60606144c684846000856144cf565b90509392505050565b60608247101561452a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148076026913960400191505060405180910390fd5b61453385614678565b6145a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106145f557805182526020820191506020810190506020830392506145d2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614657576040519150601f19603f3d011682016040523d82523d6000602084013e61465c565b606091505b509150915061466c82828661468b565b92505050949350505050565b600080823b905060008111915050919050565b6060831561469b57829050614750565b6000835111156146ae5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156147155780820151818401526020810190506146fa565b50505050905090810190601f1680156147425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473757064617465526566426f6e757350657263656e743a20696e76616c696420726566657272616c20626f6e757320626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e7473757064617465526566426f6e757350657263656e743a2073616d6520626f6e757320627020736574736166654c6176615472616e736665723a207472616e73666572206661696c65642e676574506f6f6c4964466f724c70546f6b656e3a20646f206e6f74206578697374a2646970667358221220fc60747c6767019be50a602e6e4642cd04b88231a9876ab04899006938e67eab64736f6c634300060c00330000000000000000000000001193b7059d65873efd8f781d77c60f1b81fe2ab2000000000000000000000000bbeff55ee72fea0799e3fc26ec1537834c90b466000000000000000000000000bbeff55ee72fea0799e3fc26ec1537834c90b46600000000000000000000000000000000000000000000000000000000012df7e8
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c8063715018a6116101465780639bf62f7e116100c3578063d963842211610087578063d963842214610aaf578063da09c72c14610b01578063decc294014610b35578063e2bbb15814610b53578063f2fde38b14610b8b578063f480821014610bcf5761025e565b80639bf62f7e1461096d578063cbd258b5146109c5578063d0d41fe114610a1f578063d55e969414610a63578063d6ed7bf114610a915761025e565b80638dbb1e3a1161010a5780638dbb1e3a146108195780638dbdbe6d1461086557806391bb809c146108bd57806393f1a40b146108db578063955c9b931461094b5761025e565b8063715018a61461070157806376ea6ee01461070b57806384e82a33146107395780638705fcd4146107a15780638da5cb5b146107e55761025e565b8063441a3e70116101df5780635312ea8e116101a35780635312ea8e146105fd578063579ab7641461062b578063590a050d1461068d578063630b5ba1146106ab57806364ed743b146106b557806366f685ea146106e35761025e565b8063441a3e70146104ed578063474fa6301461052557806348cd4cb1146105435780634a3b68cc1461056157806351eb05a6146105cf5761025e565b8063190f39f011610226578063190f39f0146103795780633a22df78146103d15780633b0f0f2f146103f35780633f7b06d81461046157806341275358146104b95761025e565b8063081e3eda146102635780630ba84cd2146102815780631526fe27146102af57806317809b171461032757806317caf6f11461035b575b600080fd5b61026b610bed565b6040518082815260200191505060405180910390f35b6102ad6004803603602081101561029757600080fd5b8101908080359060200190929190505050610bfa565b005b6102db600480360360208110156102c557600080fd5b8101908080359060200190929190505050610d2c565b604051808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018261ffff1681526020019550505050505060405180910390f35b61032f610d9d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610363610dc3565b6040518082815260200191505060405180910390f35b6103bb6004803603602081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc9565b6040518082815260200191505060405180910390f35b6103d9610ebb565b604051808261ffff16815260200191505060405180910390f35b6104356004803603602081101561040957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ec1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104a36004803603602081101561047757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2a565b6040518082815260200191505060405180910390f35b6104c1610f42565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105236004803603604081101561050357600080fd5b810190808035906020019092919080359060200190929190505050610f68565b005b61052d6111f6565b6040518082815260200191505060405180910390f35b61054b6111fc565b6040518082815260200191505060405180910390f35b6105a36004803603602081101561057757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611202565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105fb600480360360208110156105e557600080fd5b8101908080359060200190929190505050611235565b005b6106296004803603602081101561061357600080fd5b8101908080359060200190929190505050611590565b005b6106776004803603604081101561064157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611754565b6040518082815260200191505060405180910390f35b6106956119b6565b6040518082815260200191505060405180910390f35b6106b36119bc565b005b6106e1600480360360208110156106cb57600080fd5b81019080803590602001909291905050506119e9565b005b6106eb611bbc565b6040518082815260200191505060405180910390f35b610709611bc2565b005b6107376004803603602081101561072157600080fd5b8101908080359060200190929190505050611d48565b005b61079f6004803603608081101561074f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803561ffff169060200190929190803515159060200190929190505050611e72565b005b6107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612248565b005b6107ed61244c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084f6004803603604081101561082f57600080fd5b810190808035906020019092919080359060200190929190505050612475565b6040518082815260200191505060405180910390f35b6108bb6004803603606081101561087b57600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612492565b005b6108c56129d0565b6040518082815260200191505060405180910390f35b610927600480360360408110156108f157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129dc565b60405180848152602001838152602001828152602001935050505060405180910390f35b610953612a13565b604051808261ffff16815260200191505060405180910390f35b6109af6004803603602081101561098357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a19565b6040518082815260200191505060405180910390f35b610a07600480360360208110156109db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a31565b60405180821515815260200191505060405180910390f35b610a6160048036036020811015610a3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a51565b005b610a8f60048036036020811015610a7957600080fd5b8101908080359060200190929190505050612c55565b005b610a99612d7f565b6040518082815260200191505060405180910390f35b610aff60048036036080811015610ac557600080fd5b810190808035906020019092919080359060200190929190803561ffff169060200190929190803515159060200190929190505050612d85565b005b610b09612f6c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b3d612f92565b6040518082815260200191505060405180910390f35b610b8960048036036040811015610b6957600080fd5b810190808035906020019092919080359060200190929190505050612f98565b005b610bcd60048036036020811015610ba157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613419565b005b610bd7613624565b6040518082815260200191505060405180910390f35b6000600880549050905090565b610c0261362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610cca6119bc565b3373ffffffffffffffffffffffffffffffffffffffff167feedc6338c9c1ad8f3cd6c90dd09dbe98dbd57e610d3e59a17996d07acb0d951160045483604051808381526020018281526020019250505060405180910390a28060048190555050565b60088181548110610d3957fe5b90600052602060002090600502016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900461ffff16905085565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610e74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148bd6021913960400191505060405180910390fd5b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d081565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f6020528060005260406000206000915090505481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026001541415610fe1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600060088381548110610ff857fe5b9060005260206000209060050201905060006009600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905082816000015410156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b6110df84611235565b6110e884613632565b60008311156111605761110883826000015461383590919063ffffffff16565b816000018190555061115f33848460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b5b61119264e8d4a510006111848460030154846000015461392190919063ffffffff16565b6139a790919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568856040518082815260200191505060405180910390a35050600180819055505050565b600c5481565b600b5481565b600e6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006008828154811061124457fe5b9060005260206000209060050201905080600201544311611265575061158d565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112f257600080fd5b505afa158015611306573d6000803e3d6000fd5b505050506040513d602081101561131c57600080fd5b810190808051906020019092919050505090506000811480611342575060008260010154145b1561135757438260020181905550505061158d565b6000611367836002015443612475565b905060006113aa600a5461139c866001015461138e6004548761392190919063ffffffff16565b61392190919063ffffffff16565b6139a790919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611421600a856139a790919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561147457600080fd5b505af1158015611488573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561151f57600080fd5b505af1158015611533573d6000803e3d6000fd5b505050506115776115648461155664e8d4a510008561392190919063ffffffff16565b6139a790919063ffffffff16565b85600301546139f190919063ffffffff16565b8460030181905550438460020181905550505050505b50565b60026001541415611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006008828154811061162057fe5b9060005260206000209060050201905060006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506116d73382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a360008160000181905550600081600101819055506000816002018190555050506001808190555050565b6000806008848154811061176457fe5b9060005260206000209060050201905060006009600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561185e57600080fd5b505afa158015611872573d6000803e3d6000fd5b505050506040513d602081101561188857600080fd5b810190808051906020019092919050505090508360020154431180156118af575060008114155b1561194a5760006118c4856002015443612475565b90506000611907600a546118f988600101546118eb6004548761392190919063ffffffff16565b61392190919063ffffffff16565b6139a790919063ffffffff16565b90506119456119368461192864e8d4a510008561392190919063ffffffff16565b6139a790919063ffffffff16565b856139f190919063ffffffff16565b935050505b6000611990846001015461198264e8d4a5100061197487896000015461392190919063ffffffff16565b6139a790919063ffffffff16565b61383590919063ffffffff16565b90506119a98460020154826139f190919063ffffffff16565b9550505050505092915050565b60075481565b6000600880549050905060005b818110156119e5576119da81611235565b8060010190506119c9565b5050565b6119f161362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ab1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6107d061ffff16811115611b10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a81526020018061477d603a913960400191505060405180910390fd5b600d54811415611b6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806148736028913960400191505060405180910390fd5b6000600d54905081600d819055507f3282b692bfebf5f35b198a229212cf532c72099026ab54c4b8665382d1086b3f8183604051808381526020018281526020019250505060405180910390a15050565b600d5481565b611bca61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611d5061362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806006819055503373ffffffffffffffffffffffffffffffffffffffff167f2b73c024eb96cc0a172475ed07a402c60e270cbbfdf97a182c9d87699b67196960065483604051808381526020018281526020019250505060405180910390a250565b611e7a61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8260001515601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612001576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f6e6f6e4475706c6963617465643a206475706c6963617465640000000000000081525060200191505060405180910390fd5b6103e861ffff168361ffff161115612064576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147586025913960400191505060405180910390fd5b8115612073576120726119bc565b5b6000600b54431161208657600b54612088565b435b905061209f86600a546139f190919063ffffffff16565b600a819055506001601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060086040518060a001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001888152602001838152602001600081526020018661ffff16815250908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff1602179055505050600160088054905003601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f736574466565416464726573733a20696e76616c69642061646472657373000081525060200191505060405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f736574466565416464726573733a20464f5242494444454e000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f760405160405180910390a350565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061248a838361383590919063ffffffff16565b905092915050565b6002600154141561250b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006008848154811061252257fe5b9060005260206000209060050201905060006009600086815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061258f85611235565b6000841180156125cc5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561260357508273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561263b57503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561264b5761264a3384613a79565b5b61265485613632565b6000841115612939576126ae3330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613ce0909392919063ffffffff16565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128105760006127f76127106127e9600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b65d08b06040518163ffffffff1660e01b815260040160206040518083038186803b15801561279b57600080fd5b505afa1580156127af573d6000803e3d6000fd5b505050506040513d60208110156127c557600080fd5b810190808051906020019092919050505061ffff168861392190919063ffffffff16565b6139a790919063ffffffff16565b905061280c818661383590919063ffffffff16565b9450505b60008260040160009054906101000a900461ffff1661ffff16111561291857600061286e6127106128608560040160009054906101000a900461ffff1661ffff168861392190919063ffffffff16565b6139a790919063ffffffff16565b90506128998161288b8785600001546139f190919063ffffffff16565b61383590919063ffffffff16565b8260000181905550612912600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b50612938565b61292f8482600001546139f190919063ffffffff16565b81600001819055505b5b61296b64e8d4a5100061295d8460030154846000015461392190919063ffffffff16565b6139a790919063ffffffff16565b8160010181905550843373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a3505060018081905550505050565b670de0b6b3a764000081565b6009602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154905083565b6103e881565b60116020528060005260406000206000915090505481565b60106020528060005260406000206000915054906101000a900460ff1681565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612af4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6465763a20696e76616c6964206164647265737300000000000000000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612bb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e760405160405180910390a350565b612c5d61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806007819055503373ffffffffffffffffffffffffffffffffffffffff167f852b6c7042aea52c8cb5b3c9a29cd27da445f35ed0049828729b4e685ec9d36560075483604051808381526020018281526020019250505060405180910390a250565b60045481565b612d8d61362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e4d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6103e861ffff168261ffff161115612eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061484e6025913960400191505060405180910390fd5b8015612ebf57612ebe6119bc565b5b612f0483612ef660088781548110612ed357fe5b906000526020600020906005020160010154600a5461383590919063ffffffff16565b6139f190919063ffffffff16565b600a819055508260088581548110612f1857fe5b9060005260206000209060050201600101819055508160088581548110612f3b57fe5b906000526020600020906005020160040160006101000a81548161ffff021916908361ffff16021790555050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61708081565b60026001541415613011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006008838154811061302857fe5b9060005260206000209060050201905060006009600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061309584611235565b61309e84613632565b6000831115613383576130f83330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613ce0909392919063ffffffff16565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561325a576000613241612710613233600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b65d08b06040518163ffffffff1660e01b815260040160206040518083038186803b1580156131e557600080fd5b505afa1580156131f9573d6000803e3d6000fd5b505050506040513d602081101561320f57600080fd5b810190808051906020019092919050505061ffff168761392190919063ffffffff16565b6139a790919063ffffffff16565b9050613256818561383590919063ffffffff16565b9350505b60008260040160009054906101000a900461ffff1661ffff1611156133625760006132b86127106132aa8560040160009054906101000a900461ffff1661ffff168761392190919063ffffffff16565b6139a790919063ffffffff16565b90506132e3816132d58685600001546139f190919063ffffffff16565b61383590919063ffffffff16565b826000018190555061335c600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661387f9092919063ffffffff16565b50613382565b6133798382600001546139f190919063ffffffff16565b81600001819055505b5b6133b564e8d4a510006133a78460030154846000015461392190919063ffffffff16565b6139a790919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050600180819055505050565b61342161362a565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146134e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613567576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147e16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b600033905090565b60006008828154811061364157fe5b9060005260206000209060050201905060006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006136ef82600101546136e164e8d4a510006136d38760030154876000015461392190919063ffffffff16565b6139a790919063ffffffff16565b61383590919063ffffffff16565b9050600061370a8360020154836139f190919063ffffffff16565b905060006137256006546007546139f190919063ffffffff16565b905060075443101580156137395750804311155b15613799576000831180613751575060008460020154115b156137945761376f8460020154600c5461383590919063ffffffff16565b600c81905550600084600201819055506137893383613da1565b6137933383614075565b5b61382d565b600083111561382c576137b98385600201546139f190919063ffffffff16565b84600201819055506137d683600c546139f190919063ffffffff16565b600c81905550853373ffffffffffffffffffffffffffffffffffffffff167fee470483107f579a55c754fa00613c45a9a3b617a418b39cb0be97e5381ba7c1856040518082815260200191505060405180910390a35b5b505050505050565b600061387783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614242565b905092915050565b61391c8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614302565b505050565b60008083141561393457600090506139a1565b600082840290508284828161394557fe5b041461399c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061482d6021913960400191505060405180910390fd5b809150505b92915050565b60006139e983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506143f1565b905092915050565b600080828401905083811015613a6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b8073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16148015613b3f5750600073ffffffffffffffffffffffffffffffffffffffff16600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b8015613b785750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015613bb057508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15613cdc5780600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f9d05414fb79fac216c15606de5cc06664e91a254e4d5f57664d5f1beaf7fb7ef60405160405180910390a35b5050565b613d9b846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614302565b50505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613e2c57600080fd5b505afa158015613e40573d6000803e3d6000fd5b505050506040513d6020811015613e5657600080fd5b81019080805190602001909291905050509050600081831115613f4857600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613f0657600080fd5b505af1158015613f1a573d6000803e3d6000fd5b505050506040513d6020811015613f3057600080fd5b81019080805190602001909291905050509050614019565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613fdb57600080fd5b505af1158015613fef573d6000803e3d6000fd5b505050506040513d602081101561400557600080fd5b810190808051906020019092919050505090505b8061406f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061489b6022913960400191505060405180910390fd5b50505050565b600061408083610ec1565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156140eb57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156140f957506000600d54115b1561423d57600061412961271061411b600d548661392190919063ffffffff16565b6139a790919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156141be57600080fd5b505af11580156141d2573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f0a721ab4682ceb61c7e4d264ef879fc419a6d764b136e7d96ef54b2053c75673836040518082815260200191505060405180910390a3505b505050565b60008383111582906142ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142b4578082015181840152602081019050614299565b50505050905090810190601f1680156142e15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060614364826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166144b79092919063ffffffff16565b90506000815111156143ec5780806020019051602081101561438557600080fd5b81019080805190602001909291905050506143eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147b7602a913960400191505060405180910390fd5b5b505050565b6000808311829061449d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614462578082015181840152602081019050614447565b50505050905090810190601f16801561448f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816144a957fe5b049050809150509392505050565b60606144c684846000856144cf565b90509392505050565b60608247101561452a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148076026913960400191505060405180910390fd5b61453385614678565b6145a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106145f557805182526020820191506020810190506020830392506145d2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614657576040519150601f19603f3d011682016040523d82523d6000602084013e61465c565b606091505b509150915061466c82828661468b565b92505050949350505050565b600080823b905060008111915050919050565b6060831561469b57829050614750565b6000835111156146ae5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156147155780820151818401526020810190506146fa565b50505050905090810190601f1680156147425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473757064617465526566426f6e757350657263656e743a20696e76616c696420726566657272616c20626f6e757320626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e7473757064617465526566426f6e757350657263656e743a2073616d6520626f6e757320627020736574736166654c6176615472616e736665723a207472616e73666572206661696c65642e676574506f6f6c4964466f724c70546f6b656e3a20646f206e6f74206578697374a2646970667358221220fc60747c6767019be50a602e6e4642cd04b88231a9876ab04899006938e67eab64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001193b7059d65873efd8f781d77c60f1b81fe2ab2000000000000000000000000bbeff55ee72fea0799e3fc26ec1537834c90b466000000000000000000000000bbeff55ee72fea0799e3fc26ec1537834c90b46600000000000000000000000000000000000000000000000000000000012df7e8
-----Decoded View---------------
Arg [0] : _glad (address): 0x1193B7059D65873Efd8f781d77C60f1b81Fe2aB2
Arg [1] : _devAddr (address): 0xBbEFf55Ee72fEA0799E3FC26Ec1537834C90b466
Arg [2] : _feeAddress (address): 0xBbEFf55Ee72fEA0799E3FC26Ec1537834C90b466
Arg [3] : _startBlock (uint256): 19789800
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000001193b7059d65873efd8f781d77c60f1b81fe2ab2
Arg [1] : 000000000000000000000000bbeff55ee72fea0799e3fc26ec1537834c90b466
Arg [2] : 000000000000000000000000bbeff55ee72fea0799e3fc26ec1537834c90b466
Arg [3] : 00000000000000000000000000000000000000000000000000000000012df7e8
Deployed Bytecode Sourcemap
64453:17799:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69186:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;79853:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66337:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65941:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66578:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69289:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67006:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;81008:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67177:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66129:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;76335:604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66730:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66669:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67087:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72887:874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;77010:397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71622:926;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66265:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72631:180;;;:::i;:::-;;81796:453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66836:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21646:148;;;:::i;:::-;;80124:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69776:894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;79517:299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21004:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71405:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74998:1285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67490:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66419:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66904:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67298:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;79197:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;80342:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66067:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70782:547;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65999:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67592:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73830:1084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21949:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66206:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69186:95;69231:7;69258:8;:15;;;;69251:22;;69186:95;:::o;79853:219::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79932:17:::1;:15;:17::i;:::-;79985:10;79965:60;;;79997:12;;80011:13;79965:60;;;;;;;;;;;;;;;;;;;;;;;;80051:13;80036:12;:28;;;;79853:219:::0;:::o;66337:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65941:30::-;;;;;;;;;;;;;:::o;66578:34::-;;;;:::o;69289:221::-;69358:7;69413:5;69386:32;;:13;:23;69400:8;69386:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;69378:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69474:18;:28;69493:8;69474:28;;;;;;;;;;;;;;;;69467:35;;69289:221;;;:::o;67006:49::-;67051:4;67006:49;:::o;81008:108::-;81065:7;81092:9;:16;81102:5;81092:16;;;;;;;;;;;;;;;;;;;;;;;;;81085:23;;81008:108;;;:::o;67177:48::-;;;;;;;;;;;;;;;;;:::o;66129:25::-;;;;;;;;;;;;;:::o;76335:604::-;42238:1;42844:7;;:19;;42836:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42238:1;42977:7;:18;;;;76415:21:::1;76439:8;76448:4;76439:14;;;;;;;;;;;;;;;;;;76415:38;;76464:21;76488:8;:14;76497:4;76488:14;;;;;;;;;;;:26;76503:10;76488:26;;;;;;;;;;;;;;;76464:50;;76548:7;76533:4;:11;;;:22;;76525:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;76589:16;76600:4;76589:10;:16::i;:::-;76610:28;76633:4;76610:22;:28::i;:::-;76667:1;76657:7;:11;76653:152;;;76699:24;76715:7;76699:4;:11;;;:15;;:24;;;;:::i;:::-;76685:4;:11;;:38;;;;76738:55;76772:10;76785:7;76738:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;76653:152;76833:47;76875:4;76833:37;76849:4;:20;;;76833:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;76815:4;:15;;:65;;;;76917:4;76905:10;76896:35;;;76923:7;76896:35;;;;;;;;;;;;;;;;;;43008:1;;42194::::0;43156:7;:22;;;;76335:604;;:::o;66730:35::-;;;;:::o;66669:25::-;;;;:::o;67087:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;72887:874::-;72939:21;72963:8;72972:4;72963:14;;;;;;;;;;;;;;;;;;72939:38;;73008:4;:20;;;72992:12;:36;72988:75;;73045:7;;;72988:75;73073:16;73092:4;:12;;;;;;;;;;;;:22;;;73123:4;73092:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73073:56;;73156:1;73144:8;:13;:37;;;;73180:1;73161:4;:15;;;:20;73144:37;73140:126;;;73221:12;73198:4;:20;;:35;;;;73248:7;;;;73140:126;73276:18;73297:49;73311:4;:20;;;73333:12;73297:13;:49::i;:::-;73276:70;;73357:18;73391:102;73463:15;;73391:49;73424:4;:15;;;73391:28;73406:12;;73391:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:102;;;;:::i;:::-;73357:136;;73504:4;;;;;;;;;;;:9;;;73514:7;;;;;;;;;;;73523:18;73538:2;73523:10;:14;;:18;;;;:::i;:::-;73504:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73553:4;;;;;;;;;;;:9;;;73571:4;73578:10;73553:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73623:84;73662:34;73687:8;73662:20;73677:4;73662:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;73623:4;:20;;;:24;;:84;;;;:::i;:::-;73600:4;:20;;:107;;;;73741:12;73718:4;:20;;:35;;;;72887:874;;;;;;:::o;77010:397::-;42238:1;42844:7;;:19;;42836:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42238:1;42977:7;:18;;;;77082:21:::1;77106:8;77115:4;77106:14;;;;;;;;;;;;;;;;;;77082:38;;77131:21;77155:8;:14;77164:4;77155:14;;;;;;;;;;;:26;77170:10;77155:26;;;;;;;;;;;;;;;77131:50;;77192:59;77226:10;77239:4;:11;;;77192:4;:12;;;;;;;;;;;;:25;;;;:59;;;;;:::i;:::-;77297:4;77285:10;77267:48;;;77303:4;:11;;;77267:48;;;;;;;;;;;;;;;;;;77340:1;77326:4;:11;;:15;;;;77370:1;77352:4;:15;;:19;;;;77398:1;77376:4;:19;;:23;;;;43008:1;;42194::::0;43156:7;:22;;;;77010:397;:::o;71622:926::-;71722:7;71747:21;71771:8;71780:4;71771:14;;;;;;;;;;;;;;;;;;71747:38;;71796:21;71820:8;:14;71829:4;71820:14;;;;;;;;;;;:21;71835:5;71820:21;;;;;;;;;;;;;;;71796:45;;71852:23;71878:4;:20;;;71852:46;;71909:16;71928:4;:12;;;;;;;;;;;;:22;;;71959:4;71928:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71909:56;;71995:4;:20;;;71980:12;:35;:52;;;;;72031:1;72019:8;:13;;71980:52;71976:421;;;72049:18;72070:49;72084:4;:20;;;72106:12;72070:13;:49::i;:::-;72049:70;;72134:18;72155:110;72231:15;;72155:49;72188:4;:15;;;72155:28;72170:12;;72155:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:110;;;;:::i;:::-;72134:131;;72298:87;72336:34;72361:8;72336:20;72351:4;72336:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;72298:15;:19;;:87;;;;:::i;:::-;72280:105;;71976:421;;;72407:15;72425:63;72472:4;:15;;;72425:42;72462:4;72425:32;72441:15;72425:4;:11;;;:15;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;:46;;:63;;;;:::i;:::-;72407:81;;72506:32;72518:4;:19;;;72506:7;:11;;:32;;;;:::i;:::-;72499:39;;;;;;;71622:926;;;;:::o;66265:32::-;;;;:::o;72631:180::-;72676:14;72693:8;:15;;;;72676:32;;72724:11;72719:85;72747:6;72741:3;:12;72719:85;;;72777:15;72788:3;72777:10;:15::i;:::-;72755:5;;;;;72719:85;;;;72631:180;:::o;81796:453::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67051:4:::1;81887:37;;:14;:37;;81879:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82024:10;;82006:14;:28;;81998:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82090:26;82119:10;;82090:39;;82153:14;82140:10;:27;;;;82183:58;82206:18;82226:14;82183:58;;;;;;;;;;;;;;;;;;;;;;;;21286:1;81796:453:::0;:::o;66836:31::-;;;;:::o;21646:148::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21753:1:::1;21716:40;;21737:6;::::0;::::1;;;;;;;;21716:40;;;;;;;;;;;;21784:1;21767:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;21646:148::o:0;80124:177::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80215:12:::1;80201:11;:26;;;;80255:10;80237:56;;;80267:11;;80280:12;80237:56;;;;;;;;;;;;;;;;;;;;;;;;80124:177:::0;:::o;69776:894::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69941:8:::1;69646:5;69619:32;;:13;:23;69633:8;69619:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;69611:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;66952:4:::2;69970:39;;:13;:39;;;;69962:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70066:11;70062:61;;;70094:17;:15;:17::i;:::-;70062:61;70133:23;70174:10;;70159:12;:25;:53;;70202:10;;70159:53;;;70187:12;70159:53;70133:79;;70241:32;70261:11;70241:15;;:19;;:32;;;;:::i;:::-;70223:15;:50;;;;70310:4;70284:13;:23;70298:8;70284:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;70325:8;70353:237;;;;;;;;70390:8;70353:237;;;;;;70429:11;70353:237;;;;70476:15;70353:237;;;;70527:1;70353:237;;;;70561:13;70353:237;;;;::::0;70325:276:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70661:1;70643:8;:15;;;;:19;70612:18;:28;70631:8;70612:28;;;;;;;;;;;;;;;:50;;;;69692:1;21286::::1;69776:894:::0;;;;:::o;79517:299::-;79610:1;79587:25;;:11;:25;;;;79579:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79680:10;;;;;;;;;;;79666:24;;:10;:24;;;79658:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79743:11;79730:10;;:24;;;;;;;;;;;;;;;;;;79796:11;79770:38;;79784:10;79770:38;;;;;;;;;;;;79517:299;:::o;21004:79::-;21042:7;21069:6;;;;;;;;;;;21062:13;;21004:79;:::o;71405:153::-;71504:7;71536:14;71544:5;71536:3;:7;;:14;;;;:::i;:::-;71529:21;;71405:153;;;;:::o;74998:1285::-;42238:1;42844:7;;:19;;42836:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42238:1;42977:7;:18;;;;75096:21:::1;75120:8;75129:4;75120:14;;;;;;;;;;;;;;;;;;75096:38;;75145:21;75169:8;:14;75178:4;75169:14;;;;;;;;;;;:26;75184:10;75169:26;;;;;;;;;;;;;;;75145:50;;75206:16;75217:4;75206:10;:16::i;:::-;75247:1;75237:7;:11;:38;;;;;75273:1;75252:23;;:9;:23;;;;75237:38;:73;;;;;75300:9;75279:31;;:9;:31;;;75237:73;:100;;;;;75327:10;75314:23;;:9;:23;;;;75237:100;75233:167;;;75354:34;75366:10;75378:9;75354:11;:34::i;:::-;75233:167;75406:28;75429:4;75406:22;:28::i;:::-;75461:1;75451:7;:11;75447:699;;;75482:74;75520:10;75541:4;75548:7;75482:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;75608:4;;;;;;;;;;;75575:38;;75583:4;:12;;;;;;;;;;;;75575:38;;;75571:200;;;75634:19;75656:46;75696:5;75656:35;75668:4;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;75656:35;;:7;:11;;:35;;;;:::i;:::-;:39;;:46;;;;:::i;:::-;75634:68;;75731:24;75743:11;75731:7;:11;;:24;;;;:::i;:::-;75721:34;;75571:200;;75815:1;75795:4;:17;;;;;;;;;;;;:21;;;75791:344;;;75837:18;75858:41;75893:5;75858:30;75870:4;:17;;;;;;;;;;;;75858:30;;:7;:11;;:30;;;;:::i;:::-;:34;;:41;;;;:::i;:::-;75837:62;;75932:40;75961:10;75932:24;75948:7;75932:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;75918:4;:11;;:54;;;;75991:49;76017:10;;;;;;;;;;;76029;75991:4;:12;;;;;;;;;;;;:25;;;;:49;;;;;:::i;:::-;75791:344;;;;76095:24;76111:7;76095:4;:11;;;:15;;:24;;;;:::i;:::-;76081:4;:11;;:38;;;;75791:344;75447:699;76178:47;76220:4;76178:37;76194:4;:20;;;76178:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;76160:4;:15;;:65;;;;76261:4;76249:10;76241:34;;;76267:7;76241:34;;;;;;;;;;;;;;;;;;43008:1;;42194::::0;43156:7;:22;;;;74998:1285;;;:::o;67490:55::-;67538:7;67490:55;:::o;66419:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66904:52::-;66952:4;66904:52;:::o;67380:::-;;;;;;;;;;;;;;;;;:::o;67298:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;79197:256::-;79284:1;79264:22;;:8;:22;;;;79256:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79344:7;;;;;;;;;;;79330:21;;:10;:21;;;79322:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79386:8;79376:7;;:18;;;;;;;;;;;;;;;;;;79436:8;79410:35;;79424:10;79410:35;;;;;;;;;;;;79197:256;:::o;80342:219::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80451:18:::1;80431:17;:38;;;;80503:10;80479:74;;;80515:17;;80534:18;80479:74;;;;;;;;;;;;;;;;;;;;;;;;80342:219:::0;:::o;66067:27::-;;;;:::o;70782:547::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66952:4:::1;70949:39;;:13;:39;;;;70941:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71045:11;71041:61;;;71073:17;:15;:17::i;:::-;71041:61;71130:87;71195:11;71130:46;71150:8;71159:4;71150:14;;;;;;;;;;;;;;;;;;:25;;;71130:15;;:19;;:46;;;;:::i;:::-;:50;;:87;;;;:::i;:::-;71112:15;:105;;;;71256:11;71228:8;71237:4;71228:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;71308:13;71278:8;71287:4;71278:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;70782:547:::0;;;;:::o;65999:22::-;;;;;;;;;;;;;:::o;67592:52::-;67639:5;67592:52;:::o;73830:1084::-;42238:1;42844:7;;:19;;42836:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42238:1;42977:7;:18;;;;73909:21:::1;73933:8;73942:4;73933:14;;;;;;;;;;;;;;;;;;73909:38;;73958:21;73982:8;:14;73991:4;73982:14;;;;;;;;;;;:26;73997:10;73982:26;;;;;;;;;;;;;;;73958:50;;74019:16;74030:4;74019:10;:16::i;:::-;74042:28;74065:4;74042:22;:28::i;:::-;74095:1;74085:7;:11;74081:696;;;74113:74;74151:10;74172:4;74179:7;74113:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;74239:4;;;;;;;;;;;74206:38;;74214:4;:12;;;;;;;;;;;;74206:38;;;74202:200;;;74265:19;74287:46;74327:5;74287:35;74299:4;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;74287:35;;:7;:11;;:35;;;;:::i;:::-;:39;;:46;;;;:::i;:::-;74265:68;;74362:24;74374:11;74362:7;:11;;:24;;;;:::i;:::-;74352:34;;74202:200;;74446:1;74426:4;:17;;;;;;;;;;;;:21;;;74422:344;;;74468:18;74489:41;74524:5;74489:30;74501:4;:17;;;;;;;;;;;;74489:30;;:7;:11;;:30;;;;:::i;:::-;:34;;:41;;;;:::i;:::-;74468:62;;74563:40;74592:10;74563:24;74579:7;74563:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;74549:4;:11;;:54;;;;74622:49;74648:10;;;;;;;;;;;74660;74622:4;:12;;;;;;;;;;;;:25;;;;:49;;;;;:::i;:::-;74422:344;;;;74726:24;74742:7;74726:4;:11;;;:15;;:24;;;;:::i;:::-;74712:4;:11;;:38;;;;74422:344;74081:696;74809:47;74851:4;74809:37;74825:4;:20;;;74809:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;74791:4;:15;;:65;;;;74892:4;74880:10;74872:34;;;74898:7;74872:34;;;;;;;;;;;;;;;;;;43008:1;;42194::::0;43156:7;:22;;;;73830:1084;;:::o;21949:244::-;21226:12;:10;:12::i;:::-;21216:22;;:6;;;;;;;;;;:22;;;21208:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22058:1:::1;22038:22;;:8;:22;;;;22030:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22148:8;22119:38;;22140:6;::::0;::::1;;;;;;;;22119:38;;;;;;;;;;;;22177:8;22168:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;21949:244:::0;:::o;66206:26::-;;;;:::o;19598:106::-;19651:15;19686:10;19679:17;;19598:106;:::o;77453:1147::-;77519:21;77543:8;77552:4;77543:14;;;;;;;;;;;;;;;;;;77519:38;;77568:21;77592:8;:14;77601:4;77592:14;;;;;;;;;;;:26;77607:10;77592:26;;;;;;;;;;;;;;;77568:50;;77631:15;77649:68;77701:4;:15;;;77649:47;77691:4;77649:37;77665:4;:20;;;77649:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;77631:86;;77722:20;77745:32;77757:4;:19;;;77745:7;:11;;:32;;;;:::i;:::-;77722:55;;77788:24;77815:34;77837:11;;77815:17;;:21;;:34;;;;:::i;:::-;77788:61;;77880:17;;77864:12;:33;;:69;;;;;77917:16;77901:12;:32;;77864:69;77860:733;;;77964:1;77954:7;:11;:38;;;;77991:1;77969:4;:19;;;:23;77954:38;77950:396;;;78077:45;78102:4;:19;;;78077:20;;:24;;:45;;;;:::i;:::-;78054:20;:68;;;;78163:1;78141:4;:19;;:23;;;;78222:42;78239:10;78251:12;78222:16;:42::i;:::-;78283:47;78305:10;78317:12;78283:21;:47::i;:::-;77950:396;77860:733;;;78377:1;78367:7;:11;78363:230;;;78417:32;78441:7;78417:4;:19;;;:23;;:32;;;;:::i;:::-;78395:4;:19;;:54;;;;78487:33;78512:7;78487:20;;:24;;:33;;;;:::i;:::-;78464:20;:56;;;;78567:4;78555:10;78540:41;;;78573:7;78540:41;;;;;;;;;;;;;;;;;;78363:230;77860:733;77453:1147;;;;;;:::o;1374:136::-;1432:7;1459:43;1463:1;1466;1459:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1452:50;;1374:136;;;;:::o;15982:177::-;16065:86;16085:5;16115:23;;;16140:2;16144:5;16092:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16065:19;:86::i;:::-;15982:177;;;:::o;2264:471::-;2322:7;2572:1;2567;:6;2563:47;;;2597:1;2590:8;;;;2563:47;2622:9;2638:1;2634;:5;2622:17;;2667:1;2662;2658;:5;;;;;;:10;2650:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2726:1;2719:8;;;2264:471;;;;;:::o;3211:132::-;3269:7;3296:39;3300:1;3303;3296:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3289:46;;3211:132;;;;:::o;910:181::-;968:7;988:9;1004:1;1000;:5;988:17;;1029:1;1024;:6;;1016:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1082:1;1075:8;;;910:181;;;;:::o;80610:347::-;80710:9;80689:31;;:9;:31;;;:65;;;;;80752:1;80724:30;;:9;:16;80734:5;80724:16;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;80689:65;:92;;;;;80779:1;80758:23;;:9;:23;;;;80689:92;:114;;;;;80798:5;80785:18;;:9;:18;;;;80689:114;80685:265;;;80839:9;80820;:16;80830:5;80820:16;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;80891:1;80863:13;:24;80877:9;80863:24;;;;;;;;;;;;;;;;:29;;;;;;;;;;;80928:9;80912:26;;80921:5;80912:26;;;;;;;;;;;;80685:265;80610:347;;:::o;16167:205::-;16268:96;16288:5;16318:27;;;16347:4;16353:2;16357:5;16295:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16268:19;:96::i;:::-;16167:205;;;;:::o;78715:426::-;78791:15;78809:4;;;;;;;;;;;:14;;;78832:4;78809:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78791:47;;78849:20;78902:7;78892;:17;78888:173;;;78944:4;;;;;;;;;;;:13;;;78958:3;78963:7;78944:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78926:45;;78888:173;;;79022:4;;;;;;;;;;;:13;;;79036:3;79041:7;79022:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79004:45;;78888:173;79079:15;79071:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78715:426;;;;:::o;81196:408::-;81280:16;81299:18;81311:5;81299:11;:18::i;:::-;81280:37;;81352:1;81332:22;;:8;:22;;;;:43;;;;;81370:5;81358:17;;:8;:17;;;;81332:43;:61;;;;;81392:1;81379:10;;:14;81332:61;81328:269;;;81410:22;81435:35;81464:5;81435:24;81448:10;;81435:8;:12;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;81410:60;;81485:4;;;;;;;;;;;:9;;;81495:8;81505:14;81485:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81560:8;81540:45;;81553:5;81540:45;;;81570:14;81540:45;;;;;;;;;;;;;;;;;;81328:269;;81196:408;;;:::o;1813:192::-;1899:7;1932:1;1927;:6;;1935:12;1919:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959:9;1975:1;1971;:5;1959:17;;1996:1;1989:8;;;1813:192;;;;;:::o;18287:761::-;18711:23;18737:69;18765:4;18737:69;;;;;;;;;;;;;;;;;18745:5;18737:27;;;;:69;;;;;:::i;:::-;18711:95;;18841:1;18821:10;:17;:21;18817:224;;;18963:10;18952:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18944:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18817:224;18287:761;;;:::o;3839:278::-;3925:7;3957:1;3953;:5;3960:12;3945:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3984:9;4000:1;3996;:5;;;;;;3984:17;;4108:1;4101:8;;;3839:278;;;;;:::o;12086:195::-;12189:12;12221:52;12243:6;12251:4;12257:1;12260:12;12221:21;:52::i;:::-;12214:59;;12086:195;;;;;:::o;13138:530::-;13265:12;13323:5;13298:21;:30;;13290:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13390:18;13401:6;13390:10;:18::i;:::-;13382:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13516:12;13530:23;13557:6;:11;;13577:5;13585:4;13557:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13515:75;;;;13608:52;13626:7;13635:10;13647:12;13608:17;:52::i;:::-;13601:59;;;;13138:530;;;;;;:::o;9168:422::-;9228:4;9436:12;9547:7;9535:20;9527:28;;9581:1;9574:4;:8;9567:15;;;9168:422;;;:::o;14674:742::-;14789:12;14818:7;14814:595;;;14849:10;14842:17;;;;14814:595;14983:1;14963:10;:17;:21;14959:439;;;15226:10;15220:17;15287:15;15274:10;15270:2;15266:19;15259:44;15174:148;15369:12;15362:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14674:742;;;;;;:::o
Swarm Source
ipfs://fc60747c6767019be50a602e6e4642cd04b88231a9876ab04899006938e67eab
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in POL
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.