ERC-20
Overview
Max Total Supply
100,000,000 YBOT
Holders
122
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
39,000,000 YBOTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YieldBot
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-08 */ // File: @openzeppelin\contracts\utils\math\SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin\contracts\utils\structs\EnumerableSet.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } // File: @openzeppelin\contracts\token\ERC20\IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin\contracts\utils\Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin\contracts\access\Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts\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: contracts\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; } // File: contracts\IUniswapV2Factory.sol pragma solidity >=0.5.0; 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: contracts\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: contracts\YieldBot.sol // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; contract YieldBot is Ownable, ERC20 { using SafeMath for uint256; using EnumerableSet for EnumerableSet.AddressSet; uint256 public totalSup = 100_000_000 * 1e18; IUniswapV2Router02 public uniswapV2Router; IUniswapV2Factory public factory; EnumerableSet.AddressSet private _pairs; address public feeAddress; uint256 private buyFee = 5; uint256 private sellFee = 5; bool inSwap = false; mapping(address => bool) public isExcludedFromFee; uint256 public amountBot = 960000 * 1e18; uint256 public amountTokenAutoSwap = 90000 * 1e18; uint256 public maxTokenSellAutoSwap = 1000000 * 1e18; uint256 public blockBotDuration = 25; uint256 public antiBotTime; bool public tradingEnabled; constructor() ERC20("Yield Bot", "YBOT") { _mint(_msgSender(), totalSup); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; factory = IUniswapV2Factory(_uniswapV2Router.factory()); feeAddress = address(0x297Ca9c3147E8196C065fF644D2a8eB573e03c67); isExcludedFromFee[_msgSender()] = true; isExcludedFromFee[feeAddress] = true; tradingEnabled = false; } modifier lockTheSwap() { inSwap = true; _; inSwap = false; } function burn(uint256 amount) public { _burn(_msgSender(), amount); } function enableTrading() external onlyOwner{ require(!tradingEnabled, "Trading already enabled."); tradingEnabled = true; antiBotTime = block.timestamp + blockBotDuration; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { uint256 transferFee; //check fee require(tradingEnabled || isExcludedFromFee[sender] || isExcludedFromFee[recipient], "Trading not yet enabled!"); if(!isExcludedFromFee[sender] && isPair(recipient)) { transferFee = sellFee; } else if(!isExcludedFromFee[recipient] && isPair(sender)) { transferFee = buyFee; } //fee swap bot if ( antiBotTime > block.timestamp && amount > amountBot && sender != address(this) && recipient != address(this) && isPair(sender) ) { transferFee = 90; } if (inSwap) { super._transfer(sender, recipient, amount); return; } if (transferFee > 0 && sender != address(this) && recipient != address(this)) { uint256 _fee = amount.mul(transferFee).div(100); super._transfer(sender, address(this), _fee); amount = amount.sub(_fee); } else { takeFeeBot(); } super._transfer(sender, recipient, amount); } function takeFeeBot() internal lockTheSwap { uint256 balanceThis = balanceOf(address(this)) > maxTokenSellAutoSwap ? maxTokenSellAutoSwap : balanceOf(address(this)); if (balanceThis > amountTokenAutoSwap) { swapTokensForETH(balanceThis); } } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, feeAddress, block.timestamp); } function setExcludeFromFee(address _address, bool _status) external onlyOwner { require(_address != address(0), "0x is not accepted here"); require(isExcludedFromFee[_address] != _status, "Status was set"); isExcludedFromFee[_address] = _status; } function changeFeeAddress(address _feeAddress) external { require(_msgSender() == feeAddress, "Only Fee Wallet!"); require(_feeAddress != address(0), "0x is not accepted here"); feeAddress = _feeAddress; } function changeNumTokensSellToAddToETH(uint256 _numTokensSellToAddToETH) external onlyOwner { require(_numTokensSellToAddToETH != 0, "_numTokensSellToAddToETH !=0"); amountTokenAutoSwap = _numTokensSellToAddToETH; } function isPair(address account) public view returns (bool) { return _pairs.contains(account); } function addPair(address pair) public onlyOwner returns (bool) { require(pair != address(0), "YIELDBOT: pair is the zero address"); return _pairs.add(pair); } function delPair(address pair) public onlyOwner returns (bool) { require(pair != address(0), "YIELDBOT: pair is the zero address"); return _pairs.remove(pair); } function getMinterLength() public view returns (uint256) { return _pairs.length(); } function getPair(uint256 index) public view returns (address) { require(index <= _pairs.length() - 1, "YIELDBOT: index out of bounds"); return _pairs.at(index); } // receive eth receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountBot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountTokenAutoSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockBotDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"changeFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeNumTokensSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"delPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSellAutoSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526a52b7d2dcc80cd2e40000006006556005600c819055600d55600e805460ff1916905569cb49b44ba602d800000060105569130ee8e717904440000060115569d3c21bcecceda100000060125560196013553480156200006357600080fd5b5060405180604001604052806009815260200168165a595b1908109bdd60ba1b81525060405180604001604052806004815260200163165093d560e21b815250620000bd620000b76200022860201b60201c565b6200022c565b6004620000cb8382620003ed565b506005620000da8282620003ed565b505050620000fa620000f16200022860201b60201c565b6006546200027c565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000160573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001869190620004b9565b600880546001600160a01b03929092166001600160a01b0319928316179055600b805490911673297ca9c3147e8196c065ff644d2a8eb573e03c671790556001600f6000620001d23390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600b549091168152600f90925290208054821660011790556015805490911690555062000513565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002d75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002eb9190620004eb565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037457607f821691505b6020821081036200039557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034457600081815260208120601f850160051c81016020861015620003c45750805b601f850160051c820191505b81811015620003e557828155600101620003d0565b505050505050565b81516001600160401b0381111562000409576200040962000349565b62000421816200041a84546200035f565b846200039b565b602080601f831160018114620004595760008415620004405750858301515b600019600386901b1c1916600185901b178555620003e5565b600085815260208120601f198616915b828110156200048a5788860151825594840194600190910190840162000469565b5085821015620004a95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620004cc57600080fd5b81516001600160a01b0381168114620004e457600080fd5b9392505050565b808201808211156200050d57634e487b7160e01b600052601160045260246000fd5b92915050565b611b4e80620005236000396000f3fe6080604052600436106102085760003560e01c806370b4cb7a11610118578063a9059cbb116100a0578063c2b7bbb61161006f578063c2b7bbb6146105ba578063c45a0155146105da578063dd62ed3e146105fa578063e5e31b131461061a578063f2fde38b1461063a57600080fd5b8063a9059cbb14610544578063af9549e014610564578063bc0f319914610584578063bdf391cc1461059a57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b157806395d89b41146104cf578063a39a1450146104e4578063a457c2d714610504578063a5bc50851461052457600080fd5b806370b4cb7a1461045b578063715018a61461047157806380fc5d17146104865780638a8c523c1461049c57600080fd5b8063313ce5671161019b5780634ada218b1161016a5780634ada218b146103af5780634fab2bbb146103c95780635342acb4146103df578063596ea8c51461040f57806370a082311461042557600080fd5b8063313ce56714610333578063395093511461034f578063412753581461036f57806342966c681461038f57600080fd5b806318160ddd116101d757806318160ddd146102c657806323b872dd146102db578063285e1406146102fb5780632c1c13e11461031d57600080fd5b80630323aac71461021457806306fdde031461023c578063095ea7b31461025e5780631694505e1461028e57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061022961065a565b6040519081526020015b60405180910390f35b34801561024857600080fd5b5061025161066b565b6040516102339190611727565b34801561026a57600080fd5b5061027e61027936600461178a565b6106fd565b6040519015158152602001610233565b34801561029a57600080fd5b506007546102ae906001600160a01b031681565b6040516001600160a01b039091168152602001610233565b3480156102d257600080fd5b50600354610229565b3480156102e757600080fd5b5061027e6102f63660046117b6565b610717565b34801561030757600080fd5b5061031b6103163660046117f7565b61073b565b005b34801561032957600080fd5b5061022960135481565b34801561033f57600080fd5b5060405160128152602001610233565b34801561035b57600080fd5b5061027e61036a36600461178a565b610808565b34801561037b57600080fd5b50600b546102ae906001600160a01b031681565b34801561039b57600080fd5b5061031b6103aa366004611814565b61082a565b3480156103bb57600080fd5b5060155461027e9060ff1681565b3480156103d557600080fd5b5061022960145481565b3480156103eb57600080fd5b5061027e6103fa3660046117f7565b600f6020526000908152604090205460ff1681565b34801561041b57600080fd5b5061022960105481565b34801561043157600080fd5b506102296104403660046117f7565b6001600160a01b031660009081526001602052604090205490565b34801561046757600080fd5b5061022960125481565b34801561047d57600080fd5b5061031b610837565b34801561049257600080fd5b5061022960065481565b3480156104a857600080fd5b5061031b61084b565b3480156104bd57600080fd5b506000546001600160a01b03166102ae565b3480156104db57600080fd5b506102516108c5565b3480156104f057600080fd5b5061031b6104ff366004611814565b6108d4565b34801561051057600080fd5b5061027e61051f36600461178a565b610931565b34801561053057600080fd5b5061027e61053f3660046117f7565b6109ac565b34801561055057600080fd5b5061027e61055f36600461178a565b6109e7565b34801561057057600080fd5b5061031b61057f36600461182d565b6109f5565b34801561059057600080fd5b5061022960115481565b3480156105a657600080fd5b506102ae6105b5366004611814565b610ad9565b3480156105c657600080fd5b5061027e6105d53660046117f7565b610b4b565b3480156105e657600080fd5b506008546102ae906001600160a01b031681565b34801561060657600080fd5b5061022961061536600461186b565b610b86565b34801561062657600080fd5b5061027e6106353660046117f7565b610bb1565b34801561064657600080fd5b5061031b6106553660046117f7565b610bbe565b60006106666009610c34565b905090565b60606004805461067a90611899565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690611899565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b60003361070b818585610c3e565b60019150505b92915050565b600033610725858285610d63565b610730858585610ddd565b506001949350505050565b600b546001600160a01b0316336001600160a01b0316146107965760405162461bcd60e51b815260206004820152601060248201526f4f6e6c79204665652057616c6c65742160801b60448201526064015b60405180910390fd5b6001600160a01b0381166107e65760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b604482015260640161078d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60003361070b81858561081b8383610b86565b61082591906118e9565b610c3e565b6108343382610fd1565b50565b61083f611102565b610849600061115c565b565b610853611102565b60155460ff16156108a65760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e0000000000000000604482015260640161078d565b6015805460ff191660011790556013546108c090426118e9565b601455565b60606005805461067a90611899565b6108dc611102565b8060000361092c5760405162461bcd60e51b815260206004820152601c60248201527f5f6e756d546f6b656e7353656c6c546f416464546f45544820213d3000000000604482015260640161078d565b601155565b6000338161093f8286610b86565b90508381101561099f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078d565b6107308286868403610c3e565b60006109b6611102565b6001600160a01b0382166109dc5760405162461bcd60e51b815260040161078d906118fc565b6107116009836111ac565b60003361070b818585610ddd565b6109fd611102565b6001600160a01b038216610a4d5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b604482015260640161078d565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610aae5760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b604482015260640161078d565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001610ae76009610c34565b610af1919061193e565b821115610b405760405162461bcd60e51b815260206004820152601d60248201527f5949454c44424f543a20696e646578206f7574206f6620626f756e6473000000604482015260640161078d565b6107116009836111c8565b6000610b55611102565b6001600160a01b038216610b7b5760405162461bcd60e51b815260040161078d906118fc565b6107116009836111d4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006107116009836111e9565b610bc6611102565b6001600160a01b038116610c2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b6108348161115c565b6000610711825490565b6001600160a01b038316610ca05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b038216610d015760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d6f8484610b86565b90506000198114610dd75781811015610dca5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161078d565b610dd78484848403610c3e565b50505050565b60155460009060ff1680610e0957506001600160a01b0384166000908152600f602052604090205460ff165b80610e2c57506001600160a01b0383166000908152600f602052604090205460ff165b610e785760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c6564210000000000000000604482015260640161078d565b6001600160a01b0384166000908152600f602052604090205460ff16158015610ea55750610ea583610bb1565b15610eb35750600d54610eea565b6001600160a01b0383166000908152600f602052604090205460ff16158015610ee05750610ee084610bb1565b15610eea5750600c545b42601454118015610efc575060105482115b8015610f1157506001600160a01b0384163014155b8015610f2657506001600160a01b0383163014155b8015610f365750610f3684610bb1565b15610f3f5750605a5b600e5460ff1615610f5557610dd784848461120b565b600081118015610f6e57506001600160a01b0384163014155b8015610f8357506001600160a01b0383163014155b15610fbe576000610f9f6064610f9985856113b6565b906113c2565b9050610fac85308361120b565b610fb683826113ce565b925050610fc6565b610fc66113da565b610dd784848461120b565b6001600160a01b0382166110315760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161078d565b6001600160a01b038216600090815260016020526040902054818110156110a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161078d565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d56565b505050565b6000546001600160a01b031633146108495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006111c1836001600160a01b03841661144c565b9392505050565b60006111c1838361153f565b60006111c1836001600160a01b038416611569565b6001600160a01b038116600090815260018301602052604081205415156111c1565b6001600160a01b03831661126f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161078d565b6001600160a01b0382166112d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161078d565b6001600160a01b038316600090815260016020526040902054818110156113495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113a99086815260200190565b60405180910390a3610dd7565b60006111c18284611951565b60006111c18284611968565b60006111c1828461193e565b600e805460ff1916600117905560125460009061140c306001600160a01b031660009081526001602052604090205490565b11611426573060009081526001602052604090205461142a565b6012545b905060115481111561143f5761143f816115b8565b50600e805460ff19169055565b6000818152600183016020526040812054801561153557600061147060018361193e565b85549091506000906114849060019061193e565b90508181146114e95760008660000182815481106114a4576114a461198a565b90600052602060002001549050808760000184815481106114c7576114c761198a565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806114fa576114fa6119a0565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610711565b6000915050610711565b60008260000182815481106115565761155661198a565b9060005260206000200154905092915050565b60008181526001830160205260408120546115b057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610711565b506000610711565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115ed576115ed61198a565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166a91906119cc565b8160018151811061167d5761167d61198a565b6001600160a01b0392831660209182029290920101526007546116a39130911684610c3e565b600754600b546040516318cbafe560e01b81526001600160a01b03928316926318cbafe5926116e0928792600092889291169042906004016119e9565b6000604051808303816000875af11580156116ff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110fd9190810190611a5a565b600060208083528351808285015260005b8181101561175457858101830151858201604001528201611738565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461083457600080fd5b6000806040838503121561179d57600080fd5b82356117a881611775565b946020939093013593505050565b6000806000606084860312156117cb57600080fd5b83356117d681611775565b925060208401356117e681611775565b929592945050506040919091013590565b60006020828403121561180957600080fd5b81356111c181611775565b60006020828403121561182657600080fd5b5035919050565b6000806040838503121561184057600080fd5b823561184b81611775565b91506020830135801515811461186057600080fd5b809150509250929050565b6000806040838503121561187e57600080fd5b823561188981611775565b9150602083013561186081611775565b600181811c908216806118ad57607f821691505b6020821081036118cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610711576107116118d3565b60208082526022908201527f5949454c44424f543a207061697220697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b81810381811115610711576107116118d3565b8082028115828204841417610711576107116118d3565b60008261198557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000602082840312156119de57600080fd5b81516111c181611775565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a395784516001600160a01b031683529383019391830191600101611a14565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611a6d57600080fd5b825167ffffffffffffffff80821115611a8557600080fd5b818501915085601f830112611a9957600080fd5b815181811115611aab57611aab6119b6565b8060051b604051601f19603f83011681018181108582111715611ad057611ad06119b6565b604052918252848201925083810185019188831115611aee57600080fd5b938501935b82851015611b0c57845184529385019392850192611af3565b9897505050505050505056fea26469706673582212202cc202748b637ad6eea255666c563951f284cdf327e6d9b61b635ceff975a82464736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102085760003560e01c806370b4cb7a11610118578063a9059cbb116100a0578063c2b7bbb61161006f578063c2b7bbb6146105ba578063c45a0155146105da578063dd62ed3e146105fa578063e5e31b131461061a578063f2fde38b1461063a57600080fd5b8063a9059cbb14610544578063af9549e014610564578063bc0f319914610584578063bdf391cc1461059a57600080fd5b80638da5cb5b116100e75780638da5cb5b146104b157806395d89b41146104cf578063a39a1450146104e4578063a457c2d714610504578063a5bc50851461052457600080fd5b806370b4cb7a1461045b578063715018a61461047157806380fc5d17146104865780638a8c523c1461049c57600080fd5b8063313ce5671161019b5780634ada218b1161016a5780634ada218b146103af5780634fab2bbb146103c95780635342acb4146103df578063596ea8c51461040f57806370a082311461042557600080fd5b8063313ce56714610333578063395093511461034f578063412753581461036f57806342966c681461038f57600080fd5b806318160ddd116101d757806318160ddd146102c657806323b872dd146102db578063285e1406146102fb5780632c1c13e11461031d57600080fd5b80630323aac71461021457806306fdde031461023c578063095ea7b31461025e5780631694505e1461028e57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061022961065a565b6040519081526020015b60405180910390f35b34801561024857600080fd5b5061025161066b565b6040516102339190611727565b34801561026a57600080fd5b5061027e61027936600461178a565b6106fd565b6040519015158152602001610233565b34801561029a57600080fd5b506007546102ae906001600160a01b031681565b6040516001600160a01b039091168152602001610233565b3480156102d257600080fd5b50600354610229565b3480156102e757600080fd5b5061027e6102f63660046117b6565b610717565b34801561030757600080fd5b5061031b6103163660046117f7565b61073b565b005b34801561032957600080fd5b5061022960135481565b34801561033f57600080fd5b5060405160128152602001610233565b34801561035b57600080fd5b5061027e61036a36600461178a565b610808565b34801561037b57600080fd5b50600b546102ae906001600160a01b031681565b34801561039b57600080fd5b5061031b6103aa366004611814565b61082a565b3480156103bb57600080fd5b5060155461027e9060ff1681565b3480156103d557600080fd5b5061022960145481565b3480156103eb57600080fd5b5061027e6103fa3660046117f7565b600f6020526000908152604090205460ff1681565b34801561041b57600080fd5b5061022960105481565b34801561043157600080fd5b506102296104403660046117f7565b6001600160a01b031660009081526001602052604090205490565b34801561046757600080fd5b5061022960125481565b34801561047d57600080fd5b5061031b610837565b34801561049257600080fd5b5061022960065481565b3480156104a857600080fd5b5061031b61084b565b3480156104bd57600080fd5b506000546001600160a01b03166102ae565b3480156104db57600080fd5b506102516108c5565b3480156104f057600080fd5b5061031b6104ff366004611814565b6108d4565b34801561051057600080fd5b5061027e61051f36600461178a565b610931565b34801561053057600080fd5b5061027e61053f3660046117f7565b6109ac565b34801561055057600080fd5b5061027e61055f36600461178a565b6109e7565b34801561057057600080fd5b5061031b61057f36600461182d565b6109f5565b34801561059057600080fd5b5061022960115481565b3480156105a657600080fd5b506102ae6105b5366004611814565b610ad9565b3480156105c657600080fd5b5061027e6105d53660046117f7565b610b4b565b3480156105e657600080fd5b506008546102ae906001600160a01b031681565b34801561060657600080fd5b5061022961061536600461186b565b610b86565b34801561062657600080fd5b5061027e6106353660046117f7565b610bb1565b34801561064657600080fd5b5061031b6106553660046117f7565b610bbe565b60006106666009610c34565b905090565b60606004805461067a90611899565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690611899565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b60003361070b818585610c3e565b60019150505b92915050565b600033610725858285610d63565b610730858585610ddd565b506001949350505050565b600b546001600160a01b0316336001600160a01b0316146107965760405162461bcd60e51b815260206004820152601060248201526f4f6e6c79204665652057616c6c65742160801b60448201526064015b60405180910390fd5b6001600160a01b0381166107e65760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b604482015260640161078d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60003361070b81858561081b8383610b86565b61082591906118e9565b610c3e565b6108343382610fd1565b50565b61083f611102565b610849600061115c565b565b610853611102565b60155460ff16156108a65760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e0000000000000000604482015260640161078d565b6015805460ff191660011790556013546108c090426118e9565b601455565b60606005805461067a90611899565b6108dc611102565b8060000361092c5760405162461bcd60e51b815260206004820152601c60248201527f5f6e756d546f6b656e7353656c6c546f416464546f45544820213d3000000000604482015260640161078d565b601155565b6000338161093f8286610b86565b90508381101561099f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078d565b6107308286868403610c3e565b60006109b6611102565b6001600160a01b0382166109dc5760405162461bcd60e51b815260040161078d906118fc565b6107116009836111ac565b60003361070b818585610ddd565b6109fd611102565b6001600160a01b038216610a4d5760405162461bcd60e51b81526020600482015260176024820152763078206973206e6f74206163636570746564206865726560481b604482015260640161078d565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610aae5760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b604482015260640161078d565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b60006001610ae76009610c34565b610af1919061193e565b821115610b405760405162461bcd60e51b815260206004820152601d60248201527f5949454c44424f543a20696e646578206f7574206f6620626f756e6473000000604482015260640161078d565b6107116009836111c8565b6000610b55611102565b6001600160a01b038216610b7b5760405162461bcd60e51b815260040161078d906118fc565b6107116009836111d4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006107116009836111e9565b610bc6611102565b6001600160a01b038116610c2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b6108348161115c565b6000610711825490565b6001600160a01b038316610ca05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b038216610d015760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d6f8484610b86565b90506000198114610dd75781811015610dca5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161078d565b610dd78484848403610c3e565b50505050565b60155460009060ff1680610e0957506001600160a01b0384166000908152600f602052604090205460ff165b80610e2c57506001600160a01b0383166000908152600f602052604090205460ff165b610e785760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c6564210000000000000000604482015260640161078d565b6001600160a01b0384166000908152600f602052604090205460ff16158015610ea55750610ea583610bb1565b15610eb35750600d54610eea565b6001600160a01b0383166000908152600f602052604090205460ff16158015610ee05750610ee084610bb1565b15610eea5750600c545b42601454118015610efc575060105482115b8015610f1157506001600160a01b0384163014155b8015610f2657506001600160a01b0383163014155b8015610f365750610f3684610bb1565b15610f3f5750605a5b600e5460ff1615610f5557610dd784848461120b565b600081118015610f6e57506001600160a01b0384163014155b8015610f8357506001600160a01b0383163014155b15610fbe576000610f9f6064610f9985856113b6565b906113c2565b9050610fac85308361120b565b610fb683826113ce565b925050610fc6565b610fc66113da565b610dd784848461120b565b6001600160a01b0382166110315760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161078d565b6001600160a01b038216600090815260016020526040902054818110156110a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161078d565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d56565b505050565b6000546001600160a01b031633146108495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006111c1836001600160a01b03841661144c565b9392505050565b60006111c1838361153f565b60006111c1836001600160a01b038416611569565b6001600160a01b038116600090815260018301602052604081205415156111c1565b6001600160a01b03831661126f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161078d565b6001600160a01b0382166112d15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161078d565b6001600160a01b038316600090815260016020526040902054818110156113495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113a99086815260200190565b60405180910390a3610dd7565b60006111c18284611951565b60006111c18284611968565b60006111c1828461193e565b600e805460ff1916600117905560125460009061140c306001600160a01b031660009081526001602052604090205490565b11611426573060009081526001602052604090205461142a565b6012545b905060115481111561143f5761143f816115b8565b50600e805460ff19169055565b6000818152600183016020526040812054801561153557600061147060018361193e565b85549091506000906114849060019061193e565b90508181146114e95760008660000182815481106114a4576114a461198a565b90600052602060002001549050808760000184815481106114c7576114c761198a565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806114fa576114fa6119a0565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610711565b6000915050610711565b60008260000182815481106115565761155661198a565b9060005260206000200154905092915050565b60008181526001830160205260408120546115b057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610711565b506000610711565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115ed576115ed61198a565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166a91906119cc565b8160018151811061167d5761167d61198a565b6001600160a01b0392831660209182029290920101526007546116a39130911684610c3e565b600754600b546040516318cbafe560e01b81526001600160a01b03928316926318cbafe5926116e0928792600092889291169042906004016119e9565b6000604051808303816000875af11580156116ff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110fd9190810190611a5a565b600060208083528351808285015260005b8181101561175457858101830151858201604001528201611738565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461083457600080fd5b6000806040838503121561179d57600080fd5b82356117a881611775565b946020939093013593505050565b6000806000606084860312156117cb57600080fd5b83356117d681611775565b925060208401356117e681611775565b929592945050506040919091013590565b60006020828403121561180957600080fd5b81356111c181611775565b60006020828403121561182657600080fd5b5035919050565b6000806040838503121561184057600080fd5b823561184b81611775565b91506020830135801515811461186057600080fd5b809150509250929050565b6000806040838503121561187e57600080fd5b823561188981611775565b9150602083013561186081611775565b600181811c908216806118ad57607f821691505b6020821081036118cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610711576107116118d3565b60208082526022908201527f5949454c44424f543a207061697220697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b81810381811115610711576107116118d3565b8082028115828204841417610711576107116118d3565b60008261198557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000602082840312156119de57600080fd5b81516111c181611775565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a395784516001600160a01b031683529383019391830191600101611a14565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611a6d57600080fd5b825167ffffffffffffffff80821115611a8557600080fd5b818501915085601f830112611a9957600080fd5b815181811115611aab57611aab6119b6565b8060051b604051601f19603f83011681018181108582111715611ad057611ad06119b6565b604052918252848201925083810185019188831115611aee57600080fd5b938501935b82851015611b0c57845184529385019392850192611af3565b9897505050505050505056fea26469706673582212202cc202748b637ad6eea255666c563951f284cdf327e6d9b61b635ceff975a82464736f6c63430008120033
Deployed Bytecode Sourcemap
48951:5310:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53908:98;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;53908:98:0;;;;;;;;26921:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29281:201::-;;;;;;;;;;-1:-1:-1;29281:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;29281:201:0;1205:187:1;49137:41:0;;;;;;;;;;-1:-1:-1;49137:41:0;;;;-1:-1:-1;;;;;49137:41:0;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;49137:41:0;1397:230:1;28050:108:0;;;;;;;;;;-1:-1:-1;28138:12:0;;28050:108;;30062:261;;;;;;;;;;-1:-1:-1;30062:261:0;;;;;:::i;:::-;;:::i;52914:239::-;;;;;;;;;;-1:-1:-1;52914:239:0;;;;;:::i;:::-;;:::i;:::-;;49619:36;;;;;;;;;;;;;;;;27892:93;;;;;;;;;;-1:-1:-1;27892:93:0;;27975:2;2487:36:1;;2475:2;2460:18;27892:93:0;2345:184:1;30732:238:0;;;;;;;;;;-1:-1:-1;30732:238:0;;;;;:::i;:::-;;:::i;49270:25::-;;;;;;;;;;-1:-1:-1;49270:25:0;;;;-1:-1:-1;;;;;49270:25:0;;;50353:83;;;;;;;;;;-1:-1:-1;50353:83:0;;;;;:::i;:::-;;:::i;49695:26::-;;;;;;;;;;-1:-1:-1;49695:26:0;;;;;;;;49662;;;;;;;;;;;;;;;;49399:49;;;;;;;;;;-1:-1:-1;49399:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49455:40;;;;;;;;;;;;;;;;28221:127;;;;;;;;;;-1:-1:-1;28221:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;28322:18:0;28295:7;28322:18;;;:9;:18;;;;;;;28221:127;49558:52;;;;;;;;;;;;;;;;39786:103;;;;;;;;;;;;;:::i;49084:44::-;;;;;;;;;;;;;;;;50444:205;;;;;;;;;;;;;:::i;39145:87::-;;;;;;;;;;-1:-1:-1;39191:7:0;39218:6;-1:-1:-1;;;;;39218:6:0;39145:87;;27140:104;;;;;;;;;;;;;:::i;53163:238::-;;;;;;;;;;-1:-1:-1;53163:238:0;;;;;:::i;:::-;;:::i;31473:436::-;;;;;;;;;;-1:-1:-1;31473:436:0;;;;;:::i;:::-;;:::i;53716:184::-;;;;;;;;;;-1:-1:-1;53716:184:0;;;;;:::i;:::-;;:::i;28554:193::-;;;;;;;;;;-1:-1:-1;28554:193:0;;;;;:::i;:::-;;:::i;52627:279::-;;;;;;;;;;-1:-1:-1;52627:279:0;;;;;:::i;:::-;;:::i;49502:49::-;;;;;;;;;;;;;;;;54014:185;;;;;;;;;;-1:-1:-1;54014:185:0;;;;;:::i;:::-;;:::i;53527:181::-;;;;;;;;;;-1:-1:-1;53527:181:0;;;;;:::i;:::-;;:::i;49185:32::-;;;;;;;;;;-1:-1:-1;49185:32:0;;;;-1:-1:-1;;;;;49185:32:0;;;28810:151;;;;;;;;;;-1:-1:-1;28810:151:0;;;;;:::i;:::-;;:::i;53409:110::-;;;;;;;;;;-1:-1:-1;53409:110:0;;;;;:::i;:::-;;:::i;40044:201::-;;;;;;;;;;-1:-1:-1;40044:201:0;;;;;:::i;:::-;;:::i;53908:98::-;53956:7;53983:15;:6;:13;:15::i;:::-;53976:22;;53908:98;:::o;26921:100::-;26975:13;27008:5;27001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26921:100;:::o;29281:201::-;29364:4;24643:10;29420:32;24643:10;29436:7;29445:6;29420:8;:32::i;:::-;29470:4;29463:11;;;29281:201;;;;;:::o;30062:261::-;30159:4;24643:10;30217:38;30233:4;24643:10;30248:6;30217:15;:38::i;:::-;30266:27;30276:4;30282:2;30286:6;30266:9;:27::i;:::-;-1:-1:-1;30311:4:0;;30062:261;-1:-1:-1;;;;30062:261:0:o;52914:239::-;53005:10;;-1:-1:-1;;;;;53005:10:0;24643;-1:-1:-1;;;;;52989:26:0;;52981:55;;;;-1:-1:-1;;;52981:55:0;;4562:2:1;52981:55:0;;;4544:21:1;4601:2;4581:18;;;4574:30;-1:-1:-1;;;4620:18:1;;;4613:46;4676:18;;52981:55:0;;;;;;;;;-1:-1:-1;;;;;53055:25:0;;53047:61;;;;-1:-1:-1;;;53047:61:0;;4907:2:1;53047:61:0;;;4889:21:1;4946:2;4926:18;;;4919:30;-1:-1:-1;;;4965:18:1;;;4958:53;5028:18;;53047:61:0;4705:347:1;53047:61:0;53121:10;:24;;-1:-1:-1;;;;;;53121:24:0;-1:-1:-1;;;;;53121:24:0;;;;;;;;;;52914:239::o;30732:238::-;30820:4;24643:10;30876:64;24643:10;30892:7;30929:10;30901:25;24643:10;30892:7;30901:9;:25::i;:::-;:38;;;;:::i;:::-;30876:8;:64::i;50353:83::-;50401:27;24643:10;50421:6;50401:5;:27::i;:::-;50353:83;:::o;39786:103::-;39031:13;:11;:13::i;:::-;39851:30:::1;39878:1;39851:18;:30::i;:::-;39786:103::o:0;50444:205::-;39031:13;:11;:13::i;:::-;50507:14:::1;::::0;::::1;;50506:15;50498:52;;;::::0;-1:-1:-1;;;50498:52:0;;5521:2:1;50498:52:0::1;::::0;::::1;5503:21:1::0;5560:2;5540:18;;;5533:30;5599:26;5579:18;;;5572:54;5643:18;;50498:52:0::1;5319:348:1::0;50498:52:0::1;50561:14;:21:::0;;-1:-1:-1;;50561:21:0::1;50578:4;50561:21;::::0;;50625:16:::1;::::0;50607:34:::1;::::0;:15:::1;:34;:::i;:::-;50593:11;:48:::0;50444:205::o;27140:104::-;27196:13;27229:7;27222:14;;;;;:::i;53163:238::-;39031:13;:11;:13::i;:::-;53274:24:::1;53302:1;53274:29:::0;53266:70:::1;;;::::0;-1:-1:-1;;;53266:70:0;;5874:2:1;53266:70:0::1;::::0;::::1;5856:21:1::0;5913:2;5893:18;;;5886:30;5952;5932:18;;;5925:58;6000:18;;53266:70:0::1;5672:352:1::0;53266:70:0::1;53347:19;:46:::0;53163:238::o;31473:436::-;31566:4;24643:10;31566:4;31649:25;24643:10;31666:7;31649:9;:25::i;:::-;31622:52;;31713:15;31693:16;:35;;31685:85;;;;-1:-1:-1;;;31685:85:0;;6231:2:1;31685:85:0;;;6213:21:1;6270:2;6250:18;;;6243:30;6309:34;6289:18;;;6282:62;-1:-1:-1;;;6360:18:1;;;6353:35;6405:19;;31685:85:0;6029:401:1;31685:85:0;31806:60;31815:5;31822:7;31850:15;31831:16;:34;31806:8;:60::i;53716:184::-;53773:4;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;53798:18:0;::::1;53790:65;;;;-1:-1:-1::0;;;53790:65:0::1;;;;;;;:::i;:::-;53873:19;:6;53887:4:::0;53873:13:::1;:19::i;28554:193::-:0;28633:4;24643:10;28689:28;24643:10;28706:2;28710:6;28689:9;:28::i;52627:279::-;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;52724:22:0;::::1;52716:58;;;::::0;-1:-1:-1;;;52716:58:0;;4907:2:1;52716:58:0::1;::::0;::::1;4889:21:1::0;4946:2;4926:18;;;4919:30;-1:-1:-1;;;4965:18:1;;;4958:53;5028:18;;52716:58:0::1;4705:347:1::0;52716:58:0::1;-1:-1:-1::0;;;;;52793:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;:38;::::1;;:27;::::0;;::::1;:38;;::::0;52785:65:::1;;;::::0;-1:-1:-1;;;52785:65:0;;7040:2:1;52785:65:0::1;::::0;::::1;7022:21:1::0;7079:2;7059:18;;;7052:30;-1:-1:-1;;;7098:18:1;;;7091:44;7152:18;;52785:65:0::1;6838:338:1::0;52785:65:0::1;-1:-1:-1::0;;;;;52861:27:0;;;::::1;;::::0;;;:17:::1;:27;::::0;;;;:37;;-1:-1:-1;;52861:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52627:279::o;54014:185::-;54067:7;54122:1;54104:15;:6;:13;:15::i;:::-;:19;;;;:::i;:::-;54095:5;:28;;54087:70;;;;-1:-1:-1;;;54087:70:0;;7516:2:1;54087:70:0;;;7498:21:1;7555:2;7535:18;;;7528:30;7594:31;7574:18;;;7567:59;7643:18;;54087:70:0;7314:353:1;54087:70:0;54175:16;:6;54185:5;54175:9;:16::i;53527:181::-;53584:4;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;53609:18:0;::::1;53601:65;;;;-1:-1:-1::0;;;53601:65:0::1;;;;;;;:::i;:::-;53684:16;:6;53695:4:::0;53684:10:::1;:16::i;28810:151::-:0;-1:-1:-1;;;;;28926:18:0;;;28899:7;28926:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28810:151::o;53409:110::-;53463:4;53487:24;:6;53503:7;53487:15;:24::i;40044:201::-;39031:13;:11;:13::i;:::-;-1:-1:-1;;;;;40133:22:0;::::1;40125:73;;;::::0;-1:-1:-1;;;40125:73:0;;7874:2:1;40125:73:0::1;::::0;::::1;7856:21:1::0;7913:2;7893:18;;;7886:30;7952:34;7932:18;;;7925:62;-1:-1:-1;;;8003:18:1;;;7996:36;8049:19;;40125:73:0::1;7672:402:1::0;40125:73:0::1;40209:28;40228:8;40209:18;:28::i;16344:117::-:0;16407:7;16434:19;16442:3;11644:18;;11561:109;35466:346;-1:-1:-1;;;;;35568:19:0;;35560:68;;;;-1:-1:-1;;;35560:68:0;;8281:2:1;35560:68:0;;;8263:21:1;8320:2;8300:18;;;8293:30;8359:34;8339:18;;;8332:62;-1:-1:-1;;;8410:18:1;;;8403:34;8454:19;;35560:68:0;8079:400:1;35560:68:0;-1:-1:-1;;;;;35647:21:0;;35639:68;;;;-1:-1:-1;;;35639:68:0;;8686:2:1;35639:68:0;;;8668:21:1;8725:2;8705:18;;;8698:30;8764:34;8744:18;;;8737:62;-1:-1:-1;;;8815:18:1;;;8808:32;8857:19;;35639:68:0;8484:398:1;35639:68:0;-1:-1:-1;;;;;35720:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35772:32;;160:25:1;;;35772:32:0;;133:18:1;35772:32:0;;;;;;;;35466:346;;;:::o;36103:419::-;36204:24;36231:25;36241:5;36248:7;36231:9;:25::i;:::-;36204:52;;-1:-1:-1;;36271:16:0;:37;36267:248;;36353:6;36333:16;:26;;36325:68;;;;-1:-1:-1;;;36325:68:0;;9089:2:1;36325:68:0;;;9071:21:1;9128:2;9108:18;;;9101:30;9167:31;9147:18;;;9140:59;9216:18;;36325:68:0;8887:353:1;36325:68:0;36437:51;36446:5;36453:7;36481:6;36462:16;:25;36437:8;:51::i;:::-;36193:329;36103:419;;;:::o;50657:1291::-;50857:14;;50798:19;;50857:14;;;:43;;-1:-1:-1;;;;;;50875:25:0;;;;;;:17;:25;;;;;;;;50857:43;:75;;;-1:-1:-1;;;;;;50904:28:0;;;;;;:17;:28;;;;;;;;50857:75;50849:112;;;;-1:-1:-1;;;50849:112:0;;9447:2:1;50849:112:0;;;9429:21:1;9486:2;9466:18;;;9459:30;9525:26;9505:18;;;9498:54;9569:18;;50849:112:0;9245:348:1;50849:112:0;-1:-1:-1;;;;;50976:25:0;;;;;;:17;:25;;;;;;;;50975:26;:47;;;;;51005:17;51012:9;51005:6;:17::i;:::-;50972:205;;;-1:-1:-1;51053:7:0;;50972:205;;;-1:-1:-1;;;;;51082:28:0;;;;;;:17;:28;;;;;;;;51081:29;:47;;;;;51114:14;51121:6;51114;:14::i;:::-;51078:99;;;-1:-1:-1;51159:6:0;;51078:99;51245:15;51231:11;;:29;:64;;;;;51286:9;;51277:6;:18;51231:64;:104;;;;-1:-1:-1;;;;;;51312:23:0;;51330:4;51312:23;;51231:104;:147;;;;-1:-1:-1;;;;;;51352:26:0;;51373:4;51352:26;;51231:147;:178;;;;;51395:14;51402:6;51395;:14::i;:::-;51213:251;;;-1:-1:-1;51450:2:0;51213:251;51480:6;;;;51476:102;;;51503:42;51519:6;51527:9;51538:6;51503:15;:42::i;51476:102::-;51608:1;51594:11;:15;:42;;;;-1:-1:-1;;;;;;51613:23:0;;51631:4;51613:23;;51594:42;:72;;;;-1:-1:-1;;;;;;51640:26:0;;51661:4;51640:26;;51594:72;51590:296;;;51683:12;51698:32;51726:3;51698:23;:6;51709:11;51698:10;:23::i;:::-;:27;;:32::i;:::-;51683:47;;51745:44;51761:6;51777:4;51784;51745:15;:44::i;:::-;51813:16;:6;51824:4;51813:10;:16::i;:::-;51804:25;;51668:173;51590:296;;;51862:12;:10;:12::i;:::-;51898:42;51914:6;51922:9;51933:6;51898:15;:42::i;34353:675::-;-1:-1:-1;;;;;34437:21:0;;34429:67;;;;-1:-1:-1;;;34429:67:0;;9800:2:1;34429:67:0;;;9782:21:1;9839:2;9819:18;;;9812:30;9878:34;9858:18;;;9851:62;-1:-1:-1;;;9929:18:1;;;9922:31;9970:19;;34429:67:0;9598:397:1;34429:67:0;-1:-1:-1;;;;;34596:18:0;;34571:22;34596:18;;;:9;:18;;;;;;34633:24;;;;34625:71;;;;-1:-1:-1;;;34625:71:0;;10202:2:1;34625:71:0;;;10184:21:1;10241:2;10221:18;;;10214:30;10280:34;10260:18;;;10253:62;-1:-1:-1;;;10331:18:1;;;10324:32;10373:19;;34625:71:0;10000:398:1;34625:71:0;-1:-1:-1;;;;;34732:18:0;;;;;;:9;:18;;;;;;;;34753:23;;;34732:44;;34871:12;:22;;;;;;;34922:37;160:25:1;;;34732:18:0;;;34922:37;;133:18:1;34922:37:0;14:177:1;34972:48:0;34418:610;34353:675;;:::o;39310:132::-;39191:7;39218:6;-1:-1:-1;;;;;39218:6:0;24643:10;39374:23;39366:68;;;;-1:-1:-1;;;39366:68:0;;10605:2:1;39366:68:0;;;10587:21:1;;;10624:18;;;10617:30;10683:34;10663:18;;;10656:62;10735:18;;39366:68:0;10403:356:1;40405:191:0;40479:16;40498:6;;-1:-1:-1;;;;;40515:17:0;;;-1:-1:-1;;;;;;40515:17:0;;;;;;40548:40;;40498:6;;;;;;;40548:40;;40479:16;40548:40;40468:128;40405:191;:::o;15847:158::-;15920:4;15944:53;15952:3;-1:-1:-1;;;;;15972:23:0;;15944:7;:53::i;:::-;15937:60;15847:158;-1:-1:-1;;;15847:158:0:o;16815:::-;16889:7;16940:22;16944:3;16956:5;16940:3;:22::i;15519:152::-;15589:4;15613:50;15618:3;-1:-1:-1;;;;;15638:23:0;;15613:4;:50::i;16091:167::-;-1:-1:-1;;;;;16225:23:0;;16171:4;11443:19;;;:12;;;:19;;;;;;:24;;16195:55;11346:129;32379:806;-1:-1:-1;;;;;32476:18:0;;32468:68;;;;-1:-1:-1;;;32468:68:0;;10966:2:1;32468:68:0;;;10948:21:1;11005:2;10985:18;;;10978:30;11044:34;11024:18;;;11017:62;-1:-1:-1;;;11095:18:1;;;11088:35;11140:19;;32468:68:0;10764:401:1;32468:68:0;-1:-1:-1;;;;;32555:16:0;;32547:64;;;;-1:-1:-1;;;32547:64:0;;11372:2:1;32547:64:0;;;11354:21:1;11411:2;11391:18;;;11384:30;11450:34;11430:18;;;11423:62;-1:-1:-1;;;11501:18:1;;;11494:33;11544:19;;32547:64:0;11170:399:1;32547:64:0;-1:-1:-1;;;;;32697:15:0;;32675:19;32697:15;;;:9;:15;;;;;;32731:21;;;;32723:72;;;;-1:-1:-1;;;32723:72:0;;11776:2:1;32723:72:0;;;11758:21:1;11815:2;11795:18;;;11788:30;11854:34;11834:18;;;11827:62;-1:-1:-1;;;11905:18:1;;;11898:36;11951:19;;32723:72:0;11574:402:1;32723:72:0;-1:-1:-1;;;;;32831:15:0;;;;;;;:9;:15;;;;;;32849:20;;;32831:38;;33049:13;;;;;;;;;;:23;;;;;;33101:26;;;;;;32863:6;160:25:1;;148:2;133:18;;14:177;33101:26:0;;;;;;;;33140:37;34353:675;3612:98;3670:7;3697:5;3701:1;3697;:5;:::i;4011:98::-;4069:7;4096:5;4100:1;4096;:5;:::i;3255:98::-;3313:7;3340:5;3344:1;3340;:5;:::i;51956:288::-;50287:6;:13;;-1:-1:-1;;50287:13:0;50296:4;50287:13;;;52059:20:::1;::::0;50287:6;;52032:24:::1;52050:4;-1:-1:-1::0;;;;;28322:18:0;28295:7;28322:18;;;:9;:18;;;;;;;28221:127;52032:24:::1;:47;:97;;52123:4;28295:7:::0;28322:18;;;:9;:18;;;;;;52032:97:::1;;;52082:20;;52032:97;52010:119;;52160:19;;52146:11;:33;52142:95;;;52196:29;52213:11;52196:16;:29::i;:::-;-1:-1:-1::0;50323:6:0;:14;;-1:-1:-1;;50323:14:0;;;51956:288::o;9840:1420::-;9906:4;10045:19;;;:12;;;:19;;;;;;10081:15;;10077:1176;;10456:21;10480:14;10493:1;10480:10;:14;:::i;:::-;10529:18;;10456:38;;-1:-1:-1;10509:17:0;;10529:22;;10550:1;;10529:22;:::i;:::-;10509:42;;10585:13;10572:9;:26;10568:405;;10619:17;10639:3;:11;;10651:9;10639:22;;;;;;;;:::i;:::-;;;;;;;;;10619:42;;10793:9;10764:3;:11;;10776:13;10764:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;10878:23;;;:12;;;:23;;;;;:36;;;10568:405;11054:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11149:3;:12;;:19;11162:5;11149:19;;;;;;;;;;;11142:26;;;11192:4;11185:11;;;;;;;10077:1176;11236:5;11229:12;;;;;12024:120;12091:7;12118:3;:11;;12130:5;12118:18;;;;;;;;:::i;:::-;;;;;;;;;12111:25;;12024:120;;;;:::o;9250:414::-;9313:4;11443:19;;;:12;;;:19;;;;;;9330:327;;-1:-1:-1;9373:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;9556:18;;9534:19;;;:12;;;:19;;;;;;:40;;;;9589:11;;9330:327;-1:-1:-1;9640:5:0;9633:12;;52252:367;52342:16;;;52356:1;52342:16;;;;;;;;52318:21;;52342:16;;;;;;;;;;-1:-1:-1;52342:16:0;52318:40;;52387:4;52369;52374:1;52369:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52369:23:0;;;:7;;;;;;;;;;:23;;;;52413:15;;:22;;;-1:-1:-1;;;52413:22:0;;;;:15;;;;;:20;;:22;;;;;52369:7;;52413:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52403:4;52408:1;52403:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52403:32:0;;;:7;;;;;;;;;:32;52480:15;;52448:62;;52465:4;;52480:15;52498:11;52448:8;:62::i;:::-;52523:15;;52583:10;;52523:88;;-1:-1:-1;;;52523:88:0;;-1:-1:-1;;;;;52523:15:0;;;;:37;;:88;;52561:11;;52523:15;;52577:4;;52583:10;;;52595:15;;52523:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52523:88:0;;;;;;;;;;;;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2093:247::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2260:9;2247:23;2279:31;2304:5;2279:31;:::i;2742:180::-;2801:6;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;-1:-1:-1;2893:23:1;;2742:180;-1:-1:-1;2742:180:1:o;2927:416::-;2992:6;3000;3053:2;3041:9;3032:7;3028:23;3024:32;3021:52;;;3069:1;3066;3059:12;3021:52;3108:9;3095:23;3127:31;3152:5;3127:31;:::i;:::-;3177:5;-1:-1:-1;3234:2:1;3219:18;;3206:32;3276:15;;3269:23;3257:36;;3247:64;;3307:1;3304;3297:12;3247:64;3330:7;3320:17;;;2927:416;;;;;:::o;3582:388::-;3650:6;3658;3711:2;3699:9;3690:7;3686:23;3682:32;3679:52;;;3727:1;3724;3717:12;3679:52;3766:9;3753:23;3785:31;3810:5;3785:31;:::i;:::-;3835:5;-1:-1:-1;3892:2:1;3877:18;;3864:32;3905:33;3864:32;3905:33;:::i;3975:380::-;4054:1;4050:12;;;;4097;;;4118:61;;4172:4;4164:6;4160:17;4150:27;;4118:61;4225:2;4217:6;4214:14;4194:18;4191:38;4188:161;;4271:10;4266:3;4262:20;4259:1;4252:31;4306:4;4303:1;4296:15;4334:4;4331:1;4324:15;4188:161;;3975:380;;;:::o;5057:127::-;5118:10;5113:3;5109:20;5106:1;5099:31;5149:4;5146:1;5139:15;5173:4;5170:1;5163:15;5189:125;5254:9;;;5275:10;;;5272:36;;;5288:18;;:::i;6435:398::-;6637:2;6619:21;;;6676:2;6656:18;;;6649:30;6715:34;6710:2;6695:18;;6688:62;-1:-1:-1;;;6781:2:1;6766:18;;6759:32;6823:3;6808:19;;6435:398::o;7181:128::-;7248:9;;;7269:11;;;7266:37;;;7283:18;;:::i;11981:168::-;12054:9;;;12085;;12102:15;;;12096:22;;12082:37;12072:71;;12123:18;;:::i;12154:217::-;12194:1;12220;12210:132;;12264:10;12259:3;12255:20;12252:1;12245:31;12299:4;12296:1;12289:15;12327:4;12324:1;12317:15;12210:132;-1:-1:-1;12356:9:1;;12154:217::o;12376:127::-;12437:10;12432:3;12428:20;12425:1;12418:31;12468:4;12465:1;12458:15;12492:4;12489:1;12482:15;12508:127;12569:10;12564:3;12560:20;12557:1;12550:31;12600:4;12597:1;12590:15;12624:4;12621:1;12614:15;12640:127;12701:10;12696:3;12692:20;12689:1;12682:31;12732:4;12729:1;12722:15;12756:4;12753:1;12746:15;12772:251;12842:6;12895:2;12883:9;12874:7;12870:23;12866:32;12863:52;;;12911:1;12908;12901:12;12863:52;12943:9;12937:16;12962:31;12987:5;12962:31;:::i;13028:980::-;13290:4;13338:3;13327:9;13323:19;13369:6;13358:9;13351:25;13395:2;13433:6;13428:2;13417:9;13413:18;13406:34;13476:3;13471:2;13460:9;13456:18;13449:31;13500:6;13535;13529:13;13566:6;13558;13551:22;13604:3;13593:9;13589:19;13582:26;;13643:2;13635:6;13631:15;13617:29;;13664:1;13674:195;13688:6;13685:1;13682:13;13674:195;;;13753:13;;-1:-1:-1;;;;;13749:39:1;13737:52;;13844:15;;;;13809:12;;;;13785:1;13703:9;13674:195;;;-1:-1:-1;;;;;;;13925:32:1;;;;13920:2;13905:18;;13898:60;-1:-1:-1;;;13989:3:1;13974:19;13967:35;13886:3;13028:980;-1:-1:-1;;;13028:980:1:o;14013:1105::-;14108:6;14139:2;14182;14170:9;14161:7;14157:23;14153:32;14150:52;;;14198:1;14195;14188:12;14150:52;14231:9;14225:16;14260:18;14301:2;14293:6;14290:14;14287:34;;;14317:1;14314;14307:12;14287:34;14355:6;14344:9;14340:22;14330:32;;14400:7;14393:4;14389:2;14385:13;14381:27;14371:55;;14422:1;14419;14412:12;14371:55;14451:2;14445:9;14473:2;14469;14466:10;14463:36;;;14479:18;;:::i;:::-;14525:2;14522:1;14518:10;14557:2;14551:9;14620:2;14616:7;14611:2;14607;14603:11;14599:25;14591:6;14587:38;14675:6;14663:10;14660:22;14655:2;14643:10;14640:18;14637:46;14634:72;;;14686:18;;:::i;:::-;14722:2;14715:22;14772:18;;;14806:15;;;;-1:-1:-1;14848:11:1;;;14844:20;;;14876:19;;;14873:39;;;14908:1;14905;14898:12;14873:39;14932:11;;;;14952:135;14968:6;14963:3;14960:15;14952:135;;;15034:10;;15022:23;;14985:12;;;;15065;;;;14952:135;;;15106:6;14013:1105;-1:-1:-1;;;;;;;;14013:1105:1:o
Swarm Source
ipfs://2cc202748b637ad6eea255666c563951f284cdf327e6d9b61b635ceff975a824
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.