ERC-20
MEME
Overview
Max Total Supply
1,000,000,000,000,000 BKBY
Holders
622 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
47,574,334,635.012822599435058316 BKBYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
AntiBotBABYTOKEN
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-28 */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // Dependency file: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // Dependency file: @openzeppelin/contracts/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; } } // Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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 substraction 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; } } } // Dependency file: @openzeppelin/contracts/proxy/Clones.sol // pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for * deploying minimal proxy contracts, also known as "clones". * * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies * > a minimal bytecode implementation that delegates all calls to a known, fixed address. * * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the * deterministic method. * * _Available since v3.4._ */ library Clones { /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create opcode, which should never revert. */ function clone(address implementation) internal returns (address instance) { assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create(0, ptr, 0x37) } require(instance != address(0), "ERC1167: create failed"); } /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create2 opcode and a `salt` to deterministically deploy * the clone. Using the same `implementation` and `salt` multiple time will revert, since * the clones cannot be deployed twice at the same address. */ function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) { assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create2(0, ptr, 0x37, salt) } require(instance != address(0), "ERC1167: create2 failed"); } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress( address implementation, bytes32 salt, address deployer ) internal pure returns (address predicted) { assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) mstore(add(ptr, 0x38), shl(0x60, deployer)) mstore(add(ptr, 0x4c), salt) mstore(add(ptr, 0x6c), keccak256(ptr, 0x37)) predicted := keccak256(add(ptr, 0x37), 0x55) } } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address implementation, bytes32 salt) internal view returns (address predicted) { return predictDeterministicAddress(implementation, salt, address(this)); } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // Dependency file: contracts/interfaces/IUniswapV2Factory.sol // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // Dependency file: contracts/interfaces/IUniswapV2Router02.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, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // Dependency file: contracts/interfaces/IPinkAntiBot.sol // pragma solidity >=0.5.0; interface IPinkAntiBot { function setTokenOwner(address owner) external; function onPreTransferCheck( address from, address to, uint256 amount ) external; } // Dependency file: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // Dependency file: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @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); } // Dependency file: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol // pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // Dependency file: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; } // Dependency file: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; // import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol"; // import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; // import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} uint256[45] private __gap; } // Dependency file: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; // import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; } // Dependency file: contracts/interfaces/IUniswapV2Pair.sol // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // Dependency file: contracts/libs/SafeMathInt.sol // pragma solidity =0.8.4; /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } // Dependency file: contracts/libs/SafeMathUint.sol // pragma solidity =0.8.4; /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } // Dependency file: contracts/baby/IterableMapping.sol // pragma solidity =0.8.4; library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint256) values; mapping(address => uint256) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint256) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int256) { if (!map.inserted[key]) { return -1; } return int256(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint256 index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint256) { return map.keys.length; } function set( Map storage map, address key, uint256 val ) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint256 index = map.indexOf[key]; uint256 lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } // Dependency file: contracts/baby/BabyTokenDividendTracker.sol // pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/interfaces/IUniswapV2Factory.sol"; // import "contracts/interfaces/IUniswapV2Router02.sol"; // import "contracts/interfaces/IUniswapV2Pair.sol"; // import "contracts/libs/SafeMathInt.sol"; // import "contracts/libs/SafeMathUint.sol"; // import "contracts/baby/IterableMapping.sol"; /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns (uint256); /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed(address indexed from, uint256 weiAmount); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn(address indexed to, uint256 weiAmount); } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns (uint256); } /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20Upgradeable, OwnableUpgradeable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; address public rewardToken; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 internal constant magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; function __DividendPayingToken_init( address _rewardToken, string memory _name, string memory _symbol ) internal initializer { __Ownable_init(); __ERC20_init(_name, _symbol); rewardToken = _rewardToken; } function distributeCAKEDividends(uint256 amount) public onlyOwner { require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add( _withdrawableDividend ); emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(rewardToken).transfer( user, _withdrawableDividend ); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub( _withdrawableDividend ); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns (uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns (uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns (uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns (uint256) { return magnifiedDividendPerShare .mul(balanceOf(_owner)) .toInt256Safe() .add(magnifiedDividendCorrections[_owner]) .toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer( address from, address to, uint256 value ) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare .mul(value) .toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from] .add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub( _magCorrection ); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if (newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if (newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract BABYTOKENDividendTracker is OwnableUpgradeable, DividendPayingToken { using SafeMath for uint256; using SafeMathInt for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping(address => bool) public excludedFromDividends; mapping(address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim( address indexed account, uint256 amount, bool indexed automatic ); function initialize( address rewardToken_, uint256 minimumTokenBalanceForDividends_ ) external initializer { DividendPayingToken.__DividendPayingToken_init( rewardToken_, "DIVIDEND_TRACKER", "DIVIDEND_TRACKER" ); claimWait = 3600; minimumTokenBalanceForDividends = minimumTokenBalanceForDividends_; } function _transfer( address, address, uint256 ) internal pure override { require(false, "Dividend_Tracker: No transfers allowed"); } function withdrawDividend() public pure override { require( false, "Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main BABYTOKEN contract." ); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account]); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function isExcludedFromDividends(address account) public view returns (bool) { return excludedFromDividends[account]; } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require( newClaimWait >= 3600 && newClaimWait <= 86400, "Dividend_Tracker: claimWait must be updated to between 1 and 24 hours" ); require( newClaimWait != claimWait, "Dividend_Tracker: Cannot update claimWait to same value" ); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function updateMinimumTokenBalanceForDividends(uint256 amount) external onlyOwner { minimumTokenBalanceForDividends = amount; } function getLastProcessedIndex() external view returns (uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns (uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable ) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if (index >= 0) { if (uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub( int256(lastProcessedIndex) ); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add( int256(processesUntilEndOfArray) ); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256 ) { if (index >= tokenHoldersMap.size()) { return (address(0), -1, -1, 0, 0, 0, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if (lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if (excludedFromDividends[account]) { return; } if (newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } processAccount(account, true); } function process(uint256 gas) public returns ( uint256, uint256, uint256 ) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if (numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while (gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if (_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if (canAutoClaim(lastClaimTimes[account])) { if (processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if (gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/baby/AntiBotBabyToken.sol pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "@openzeppelin/contracts/proxy/Clones.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "contracts/interfaces/IUniswapV2Factory.sol"; // import "contracts/interfaces/IUniswapV2Router02.sol"; // import "contracts/interfaces/IPinkAntiBot.sol"; // import "contracts/baby/BabyTokenDividendTracker.sol"; // import "contracts/BaseToken.sol"; contract AntiBotBABYTOKEN is ERC20, Ownable, BaseToken { using SafeMath for uint256; using Address for address; using Address for address payable; uint256 public constant VERSION = 3; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; BABYTOKENDividendTracker public dividendTracker; address public rewardToken; uint256 public swapTokensAtAmount; uint256 public tokenRewardsFee; uint256 public liquidityFee; uint256 public marketingFee; uint256 public totalFees; address public _marketingWalletAddress; uint256 public gasForProcessing; // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; IPinkAntiBot public pinkAntiBot; bool public enableAntiBot; event ExcludeFromFees(address indexed account); event ExcludeMultipleAccountsFromFees(address[] accounts); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated( uint256 indexed newValue, uint256 indexed oldValue ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SendDividends(uint256 tokensSwapped, uint256 amount); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); constructor( string memory name_, string memory symbol_, uint256 totalSupply_, address[5] memory addrs, // reward, router, marketing wallet, dividendTracker, anti bot uint256[3] memory feeSettings, // rewards, liquidity, marketing uint256 minimumTokenBalanceForDividends_, address serviceFeeReceiver_, uint256 serviceFee_ ) payable ERC20(name_, symbol_) { rewardToken = addrs[0]; _marketingWalletAddress = addrs[2]; require( msg.sender != _marketingWalletAddress, "Owner and marketing wallet cannot be the same" ); require( !_marketingWalletAddress.isContract(), "Marketing wallet cannot be a contract" ); pinkAntiBot = IPinkAntiBot(addrs[4]); pinkAntiBot.setTokenOwner(owner()); enableAntiBot = true; tokenRewardsFee = feeSettings[0]; liquidityFee = feeSettings[1]; marketingFee = feeSettings[2]; totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee); require(totalFees <= 25, "Total fee is over 25%"); swapTokensAtAmount = totalSupply_.div(1000); // 0.1% // use by default 300,000 gas to process auto-claiming dividends gasForProcessing = 300000; dividendTracker = BABYTOKENDividendTracker( payable(Clones.clone(addrs[3])) ); dividendTracker.initialize( rewardToken, minimumTokenBalanceForDividends_ ); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(addrs[1]); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(address(0xdead)); dividendTracker.excludeFromDividends(address(_uniswapV2Router)); // exclude from paying fees or having max transaction amount _isExcludedFromFees[owner()] = true; _isExcludedFromFees[_marketingWalletAddress] = true; _isExcludedFromFees[address(this)] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), totalSupply_); emit TokenCreated( owner(), address(this), TokenType.antiBotBaby, VERSION ); payable(serviceFeeReceiver_).transfer(serviceFee_); } function setEnableAntiBot(bool _enable) external onlyOwner { enableAntiBot = _enable; } receive() external payable {} function setSwapTokensAtAmount(uint256 amount) external onlyOwner { require( amount > totalSupply() / 10**5, "BABYTOKEN: Amount must be greater than 0.001% of total supply" ); swapTokensAtAmount = amount; } function excludeFromFees(address account) external onlyOwner { require( !_isExcludedFromFees[account], "BABYTOKEN: Account is already excluded" ); _isExcludedFromFees[account] = true; emit ExcludeFromFees(account); } function excludeMultipleAccountsFromFees(address[] calldata accounts) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = true; } emit ExcludeMultipleAccountsFromFees(accounts); } function setMarketingWallet(address payable wallet) external onlyOwner { require( wallet != address(0), "BABYTOKEN: The marketing wallet cannot be the value of zero" ); require(!wallet.isContract(), "Marketing wallet cannot be a contract"); _marketingWalletAddress = wallet; } function setTokenRewardsFee(uint256 value) external onlyOwner { tokenRewardsFee = value; totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee); require(totalFees <= 25, "Total fee is over 25%"); } function setLiquiditFee(uint256 value) external onlyOwner { liquidityFee = value; totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee); require(totalFees <= 25, "Total fee is over 25%"); } function setMarketingFee(uint256 value) external onlyOwner { marketingFee = value; totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee); require(totalFees <= 25, "Total fee is over 25%"); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "BABYTOKEN: Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; if (value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function updateGasForProcessing(uint256 newValue) public onlyOwner { require( newValue >= 200000 && newValue <= 500000, "BABYTOKEN: gasForProcessing must be between 200,000 and 500,000" ); require( newValue != gasForProcessing, "BABYTOKEN: Cannot update gasForProcessing to same value" ); emit GasForProcessingUpdated(newValue, gasForProcessing); gasForProcessing = newValue; } function updateClaimWait(uint256 claimWait) external onlyOwner { dividendTracker.updateClaimWait(claimWait); } function getClaimWait() external view returns (uint256) { return dividendTracker.claimWait(); } function updateMinimumTokenBalanceForDividends(uint256 amount) external onlyOwner { dividendTracker.updateMinimumTokenBalanceForDividends(amount); } function getMinimumTokenBalanceForDividends() external view returns (uint256) { return dividendTracker.minimumTokenBalanceForDividends(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function excludeFromDividends(address account) external onlyOwner { dividendTracker.excludeFromDividends(account); } function isExcludedFromDividends(address account) public view returns (bool) { return dividendTracker.isExcludedFromDividends(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccountAtIndex(index); } function processDividendTracker(uint256 gas) external { ( uint256 iterations, uint256 claims, uint256 lastProcessedIndex ) = dividendTracker.process(gas); emit ProcessedDividendTracker( iterations, claims, lastProcessedIndex, false, gas, tx.origin ); } function claim() external { dividendTracker.processAccount(payable(msg.sender), false); } function getLastProcessedIndex() external view returns (uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns (uint256) { return dividendTracker.getNumberOfTokenHolders(); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (enableAntiBot) { pinkAntiBot.onPreTransferCheck(from, to, amount); } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner() && totalFees > 0 ) { swapping = true; if (marketingFee > 0) { uint256 marketingTokens = contractTokenBalance .mul(marketingFee) .div(totalFees); swapAndSendToFee(marketingTokens); } if (liquidityFee > 0) { uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div( totalFees ); swapAndLiquify(swapTokens); } uint256 sellTokens = balanceOf(address(this)); if (sellTokens > 0) { swapAndSendDividends(sellTokens); } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (takeFee && totalFees > 0) { uint256 fees = amount.mul(totalFees).div(100); amount = amount.sub(fees); super._transfer(from, address(this), fees); } super._transfer(from, to, amount); try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {} try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {} if (!swapping) { uint256 gas = gasForProcessing; try dividendTracker.process(gas) returns ( uint256 iterations, uint256 claims, uint256 lastProcessedIndex ) { emit ProcessedDividendTracker( iterations, claims, lastProcessedIndex, true, gas, tx.origin ); } catch {} } } function swapAndSendToFee(uint256 tokens) private { uint256 initialCAKEBalance = IERC20(rewardToken).balanceOf( address(this) ); swapTokensForCake(tokens); uint256 newBalance = (IERC20(rewardToken).balanceOf(address(this))).sub( initialCAKEBalance ); IERC20(rewardToken).transfer(_marketingWalletAddress, newBalance); } function swapAndLiquify(uint256 tokens) private { // split the contract balance into halves uint256 half = tokens.div(2); uint256 otherHalf = tokens.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapTokensForCake(uint256 tokenAmount) private { address[] memory path = new address[](3); path[0] = address(this); path[1] = uniswapV2Router.WETH(); path[2] = rewardToken; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdead), block.timestamp ); } function swapAndSendDividends(uint256 tokens) private { swapTokensForCake(tokens); uint256 dividends = IERC20(rewardToken).balanceOf(address(this)); bool success = IERC20(rewardToken).transfer( address(dividendTracker), dividends ); if (success) { dividendTracker.distributeCAKEDividends(dividends); emit SendDividends(tokens, dividends); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address[5]","name":"addrs","type":"address[5]"},{"internalType":"uint256[3]","name":"feeSettings","type":"uint256[3]"},{"internalType":"uint256","name":"minimumTokenBalanceForDividends_","type":"uint256"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","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":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract BABYTOKENDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinimumTokenBalanceForDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","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":"pinkAntiBot","outputs":[{"internalType":"contract IPinkAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLiquiditFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTokenRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMinimumTokenBalanceForDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526040516200401338038062004013833981016040819052620000269162000e2c565b8751889088906200003f90600390602085019062000c47565b5080516200005590600490602084019062000c47565b505050620000726200006c620008b660201b60201c565b620008ba565b8451600980546001600160a01b03199081166001600160a01b03938416179091556040870151600f805490921692169182179055331415620001115760405162461bcd60e51b815260206004820152602d60248201527f4f776e657220616e64206d61726b6574696e672077616c6c65742063616e6e6f60448201526c74206265207468652073616d6560981b60648201526084015b60405180910390fd5b600f5462000134906001600160a01b03166200090c602090811b62001a4417901c565b15620001915760405162461bcd60e51b815260206004820152602560248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e6044820152641d1c9858dd60da1b606482015260840162000108565b8460046020020151601380546001600160a01b0319166001600160a01b0390921691821790556318e02bd9620001cf6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200021157600080fd5b505af115801562000226573d6000803e3d6000fd5b50506013805460ff60a01b1916600160a01b17905550508351600b819055602080860151600c8190556040870151600d8190556200028993909262000275929062000921811b62001a4a17901c565b6200092160201b62001a4a1790919060201c565b600e81905560191015620002e05760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f766572203235250000000000000000000000604482015260640162000108565b620002fc6103e8876200093660201b62001a5d1790919060201c565b600a55620493e06010556200032385600360200201516200094460201b62001a691760201c565b600880546001600160a01b0319166001600160a01b0392831690811790915560095460405163cd6dc68760e01b815292166004830152602482018590529063cd6dc68790604401600060405180830381600087803b1580156200038557600080fd5b505af11580156200039a573d6000803e3d6000fd5b50505050600085600160058110620003c257634e487b7160e01b600052603260045260246000fd5b602002015190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040557600080fd5b505afa1580156200041a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000440919062000e0f565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200048957600080fd5b505afa1580156200049e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c4919062000e0f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200050d57600080fd5b505af115801562000522573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000548919062000e0f565b600680546001600160a01b038086166001600160a01b0319928316179092556007805492841692909116919091179055905062000587816001620009f3565b60085460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620005ce57600080fd5b505af1158015620005e3573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200062d57600080fd5b505af115801562000642573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db090506200066c6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b158015620006ae57600080fd5b505af1158015620006c3573d6000803e3d6000fd5b505060085460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200070f57600080fd5b505af115801562000724573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200077057600080fd5b505af115801562000785573d6000803e3d6000fd5b505050506001601160006200079f6200091260201b60201c565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600f549091168152601190925280822080548416600190811790915530835291208054909216179055620008146200080d6005546001600160a01b031690565b8962000b62565b30620008286005546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600560036040516200086692919062000f3d565b60405180910390a36040516001600160a01b0385169084156108fc029085906000818181858888f19350505050158015620008a5573d6000803e3d6000fd5b505050505050505050505062001061565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3b151590565b6005546001600160a01b031690565b60006200092f828462000fc8565b9392505050565b60006200092f828462000fed565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116620009ee5760405162461bcd60e51b815260206004820152601660248201527f455243313136373a20637265617465206661696c656400000000000000000000604482015260640162000108565b919050565b6001600160a01b03821660009081526012602052604090205460ff161515811515141562000a965760405162461bcd60e51b815260206004820152604360248201527f42414259544f4b454e3a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a40162000108565b6001600160a01b0382166000908152601260205260409020805460ff1916821580159190911790915562000b265760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801562000b0c57600080fd5b505af115801562000b21573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03821662000bba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000108565b806002600082825462000bce919062000fc8565b90915550506001600160a01b0382166000908152602081905260408120805483929062000bfd90849062000fc8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000c55906200100e565b90600052602060002090601f01602090048101928262000c79576000855562000cc4565b82601f1062000c9457805160ff191683800117855562000cc4565b8280016001018555821562000cc4579182015b8281111562000cc457825182559160200191906001019062000ca7565b5062000cd292915062000cd6565b5090565b5b8082111562000cd2576000815560010162000cd7565b80516001600160a01b0381168114620009ee57600080fd5b600082601f83011262000d16578081fd5b604051606081016001600160401b038111828210171562000d3b5762000d3b6200104b565b60405280836060810186101562000d50578384fd5b835b600381101562000d7357815183526020928301929091019060010162000d52565b509195945050505050565b600082601f83011262000d8f578081fd5b81516001600160401b0381111562000dab5762000dab6200104b565b602062000dc1601f8301601f1916820162000f95565b828152858284870101111562000dd5578384fd5b835b8381101562000df457858101830151828201840152820162000dd7565b8381111562000e0557848385840101525b5095945050505050565b60006020828403121562000e21578081fd5b6200092f8262000ced565b6000806000806000806000806101c0898b03121562000e49578384fd5b88516001600160401b038082111562000e60578586fd5b62000e6e8c838d0162000d7e565b995060209150818b01518181111562000e85578687fd5b62000e938d828e0162000d7e565b9950505060408a015196508a607f8b011262000ead578485fd5b62000eb762000f6a565b8060608c016101008d018e81111562000ece578889fd5b885b600581101562000ef85762000ee58362000ced565b8552938501939185019160010162000ed0565b5082995062000f088f8262000d05565b98505050505050610160890151925062000f266101808a0162000ced565b91506101a089015190509295985092959890939650565b604081016008841062000f6057634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60405160a081016001600160401b038111828210171562000f8f5762000f8f6200104b565b60405290565b604051601f8201601f191681016001600160401b038111828210171562000fc05762000fc06200104b565b604052919050565b6000821982111562000fe857634e487b7160e01b81526011600452602481fd5b500190565b6000826200100957634e487b7160e01b81526012600452602481fd5b500490565b600181811c908216806200102357607f821691505b602082108114156200104557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612fa280620010716000396000f3fe6080604052600436106103395760003560e01c806370a08231116101ab578063afa4f3b2116100f7578063e708a0f911610095578063f27fd2541161006f578063f27fd254146109ce578063f2fde38b146109ee578063f7c618c114610a0e578063ffa1ad7414610a2e57600080fd5b8063e708a0f914610983578063e7841ec014610999578063e98030c7146109ae57600080fd5b8063c705c569116100d1578063c705c569146108e7578063dd62ed3e14610907578063e2f456051461094d578063e57f14e11461096357600080fd5b8063afa4f3b214610882578063b62496f5146108a2578063bdd4f29f146108d257600080fd5b80639c1b8af511610164578063a8b9d2401161013e578063a8b9d240146107bd578063a9059cbb146107dd578063ad56c13c146107fd578063adefd90c1461086257600080fd5b80639c1b8af514610772578063a26579ad14610788578063a457c2d71461079d57600080fd5b806370a08231146106be578063715018a6146106f4578063871c128d146107095780638da5cb5b1461072957806395d89b411461074757806398118cb41461075c57600080fd5b806331e79db0116102855780634fbee1931161022357806364b0f653116101fd57806364b0f653146106535780636843cd84146106685780636b67c4df14610688578063700bb1911461069e57600080fd5b80634fbee193146105da5780635d098b3814610613578063625e764c1461063357600080fd5b80634144d9e41161025f5780634144d9e41461056557806349bd5a5e146105855780634e71d92d146105a55780634ed080c7146105ba57600080fd5b806331e79db0146105055780633950935114610525578063407133d21461054557600080fd5b806318160ddd116102f2578063241ec3be116102cc578063241ec3be146104935780632c1f5216146104b457806330bb4cff146104d4578063313ce567146104e957600080fd5b806318160ddd1461043e5780631f46b1c61461045357806323b872dd1461047357600080fd5b806306fdde0314610345578063095ea7b3146103705780630c43c79b146103a05780630dcb2e89146103c257806313114a9d146103e25780631694505e1461040657600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a43565b6040516103679190612cef565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612b71565b610ad5565b6040519015158152602001610367565b3480156103ac57600080fd5b506103c06103bb366004612b9c565b610aeb565b005b3480156103ce57600080fd5b506103c06103dd366004612c44565b610bdc565b3480156103ee57600080fd5b506103f8600e5481565b604051908152602001610367565b34801561041257600080fd5b50600654610426906001600160a01b031681565b6040516001600160a01b039091168152602001610367565b34801561044a57600080fd5b506002546103f8565b34801561045f57600080fd5b506103c061046e366004612c0c565b610c68565b34801561047f57600080fd5b5061039061048e366004612ac8565b610cb0565b34801561049f57600080fd5b5060135461039090600160a01b900460ff1681565b3480156104c057600080fd5b50600854610426906001600160a01b031681565b3480156104e057600080fd5b506103f8610d5a565b3480156104f557600080fd5b5060405160128152602001610367565b34801561051157600080fd5b506103c0610520366004612a58565b610ddc565b34801561053157600080fd5b50610390610540366004612b71565b610e38565b34801561055157600080fd5b50601354610426906001600160a01b031681565b34801561057157600080fd5b50600f54610426906001600160a01b031681565b34801561059157600080fd5b50600754610426906001600160a01b031681565b3480156105b157600080fd5b506103c0610e74565b3480156105c657600080fd5b506103c06105d5366004612c44565b610efb565b3480156105e657600080fd5b506103906105f5366004612a58565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561061f57600080fd5b506103c061062e366004612a58565b610f93565b34801561063f57600080fd5b506103c061064e366004612c44565b6110c1565b34801561065f57600080fd5b506103f8611105565b34801561067457600080fd5b506103f8610683366004612a58565b61114a565b34801561069457600080fd5b506103f8600d5481565b3480156106aa57600080fd5b506103c06106b9366004612c44565b6111cf565b3480156106ca57600080fd5b506103f86106d9366004612a58565b6001600160a01b031660009081526020819052604090205490565b34801561070057600080fd5b506103c06112b1565b34801561071557600080fd5b506103c0610724366004612c44565b6112e7565b34801561073557600080fd5b506005546001600160a01b0316610426565b34801561075357600080fd5b5061035a611444565b34801561076857600080fd5b506103f8600c5481565b34801561077e57600080fd5b506103f860105481565b34801561079457600080fd5b506103f8611453565b3480156107a957600080fd5b506103906107b8366004612b71565b611498565b3480156107c957600080fd5b506103f86107d8366004612a58565b611531565b3480156107e957600080fd5b506103906107f8366004612b71565b611564565b34801561080957600080fd5b5061081d610818366004612a58565b611571565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610367565b34801561086e57600080fd5b506103c061087d366004612c44565b61161b565b34801561088e57600080fd5b506103c061089d366004612c44565b61165f565b3480156108ae57600080fd5b506103906108bd366004612a58565b60126020526000908152604090205460ff1681565b3480156108de57600080fd5b506103f8611719565b3480156108f357600080fd5b50610390610902366004612a58565b61175e565b34801561091357600080fd5b506103f8610922366004612a90565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095957600080fd5b506103f8600a5481565b34801561096f57600080fd5b506103c061097e366004612a58565b6117dc565b34801561098f57600080fd5b506103f8600b5481565b3480156109a557600080fd5b506103f86118ca565b3480156109ba57600080fd5b506103c06109c9366004612c44565b61190f565b3480156109da57600080fd5b5061081d6109e9366004612c44565b61196a565b3480156109fa57600080fd5b506103c0610a09366004612a58565b6119ac565b348015610a1a57600080fd5b50600954610426906001600160a01b031681565b348015610a3a57600080fd5b506103f8600381565b606060038054610a5290612edd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90612edd565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b6000610ae2338484611b06565b50600192915050565b6005546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610b1590612d85565b60405180910390fd5b60005b81811015610b9e57600160116000858585818110610b4f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b649190612a58565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b9681612f18565b915050610b21565b507f6f058e77d614a1061fc197c99cdde12f5fa414c92529bbe8f48b02f8d9f4f95d8282604051610bd0929190612ca1565b60405180910390a15050565b6005546001600160a01b03163314610c065760405162461bcd60e51b8152600401610b1590612d85565b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e89906024015b600060405180830381600087803b158015610c4d57600080fd5b505af1158015610c61573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c925760405162461bcd60e51b8152600401610b1590612d85565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000610cbd848484611c2a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d425760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b15565b610d4f8533858403611b06565b506001949350505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610d9f57600080fd5b505afa158015610db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd79190612c5c565b905090565b6005546001600160a01b03163314610e065760405162461bcd60e51b8152600401610b1590612d85565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401610c33565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ae2918590610e6f908690612e6f565b611b06565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610ec057600080fd5b505af1158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef89190612c28565b50565b6005546001600160a01b03163314610f255760405162461bcd60e51b8152600401610b1590612d85565b600b819055600d54600c54610f469190610f40908490611a4a565b90611a4a565b600e81905560191015610ef85760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610b15565b6005546001600160a01b03163314610fbd5760405162461bcd60e51b8152600401610b1590612d85565b6001600160a01b0381166110395760405162461bcd60e51b815260206004820152603b60248201527f42414259544f4b454e3a20546865206d61726b6574696e672077616c6c65742060448201527f63616e6e6f74206265207468652076616c7565206f66207a65726f00000000006064820152608401610b15565b6001600160a01b0381163b1561109f5760405162461bcd60e51b815260206004820152602560248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e6044820152641d1c9858dd60da1b6064820152608401610b15565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110eb5760405162461bcd60e51b8152600401610b1590612d85565b600d819055600c54600b54610f46918391610f4091611a4a565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610d9f57600080fd5b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561119157600080fd5b505afa1580156111a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190612c5c565b92915050565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561121d57600080fd5b505af1158015611231573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112559190612c74565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b031633146112db5760405162461bcd60e51b8152600401610b1590612d85565b6112e56000612102565b565b6005546001600160a01b031633146113115760405162461bcd60e51b8152600401610b1590612d85565b62030d40811015801561132757506207a1208111155b6113995760405162461bcd60e51b815260206004820152603f60248201527f42414259544f4b454e3a20676173466f7250726f63657373696e67206d75737460448201527f206265206265747765656e203230302c30303020616e64203530302c303030006064820152608401610b15565b6010548114156114115760405162461bcd60e51b815260206004820152603760248201527f42414259544f4b454e3a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610b15565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b606060048054610a5290612edd565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610d9f57600080fd5b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561151a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b15565b6115273385858403611b06565b5060019392505050565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611179565b6000610ae2338484611c2a565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156115c857600080fd5b505afa1580156115dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116009190612b08565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b031633146116455760405162461bcd60e51b8152600401610b1590612d85565b600c819055600d54600b54610f469190610f409084611a4a565b6005546001600160a01b031633146116895760405162461bcd60e51b8152600401610b1590612d85565b620186a061169660025490565b6116a09190612e87565b81116117145760405162461bcd60e51b815260206004820152603d60248201527f42414259544f4b454e3a20416d6f756e74206d7573742062652067726561746560448201527f72207468616e20302e30303125206f6620746f74616c20737570706c790000006064820152608401610b15565b600a55565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b158015610d9f57600080fd5b60085460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c5699060240160206040518083038186803b1580156117a457600080fd5b505afa1580156117b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190612c28565b6005546001600160a01b031633146118065760405162461bcd60e51b8152600401610b1590612d85565b6001600160a01b03811660009081526011602052604090205460ff161561187e5760405162461bcd60e51b815260206004820152602660248201527f42414259544f4b454e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401610b15565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369190a250565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610d9f57600080fd5b6005546001600160a01b031633146119395760405162461bcd60e51b8152600401610b1590612d85565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610c33565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016115af565b6005546001600160a01b031633146119d65760405162461bcd60e51b8152600401610b1590612d85565b6001600160a01b038116611a3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b15565b610ef881612102565b3b151590565b6000611a568284612e6f565b9392505050565b6000611a568284612e87565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116611b015760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610b15565b919050565b6001600160a01b038316611b685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b15565b6001600160a01b038216611bc95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b15565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c505760405162461bcd60e51b8152600401610b1590612dba565b6001600160a01b038216611c765760405162461bcd60e51b8152600401610b1590612d42565b601354600160a01b900460ff1615611cf75760135460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b158015611cde57600080fd5b505af1158015611cf2573d6000803e3d6000fd5b505050505b80611d0d57611d0883836000612154565b505050565b30600090815260208190526040902054600a5481108015908190611d3b5750600754600160a01b900460ff16155b8015611d6057506001600160a01b03851660009081526012602052604090205460ff16155b8015611d7a57506005546001600160a01b03868116911614155b8015611d9457506005546001600160a01b03858116911614155b8015611da257506000600e54115b15611e52576007805460ff60a01b1916600160a01b179055600d5415611df2576000611de5600e54611ddf600d54866122a190919063ffffffff16565b90611a5d565b9050611df0816122ad565b505b600c5415611e24576000611e17600e54611ddf600c54866122a190919063ffffffff16565b9050611e2281612446565b505b306000908152602081905260409020548015611e4357611e43816124cd565b506007805460ff60a01b191690555b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611ea057506001600160a01b03851660009081526011602052604090205460ff165b15611ea9575060005b808015611eb857506000600e54115b15611ef4576000611ed96064611ddf600e54886122a190919063ffffffff16565b9050611ee58582612685565b9450611ef2873083612154565b505b611eff868686612154565b6008546001600160a01b031663e30443bc87611f30816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611f7657600080fd5b505af1925050508015611f87575060015b506008546001600160a01b031663e30443bc86611fb9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611fff57600080fd5b505af1925050508015612010575060015b50600754600160a01b900460ff166120fa576010546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561206e57600080fd5b505af192505050801561209e575060408051601f3d908101601f1916820190925261209b91810190612c74565b60015b6120a7576120f8565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661217a5760405162461bcd60e51b8152600401610b1590612dba565b6001600160a01b0382166121a05760405162461bcd60e51b8152600401610b1590612d42565b6001600160a01b038316600090815260208190526040902054818110156122185760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b15565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061224f908490612e6f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a391815260200190565b50505050565b6000611a568284612ea7565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156122f157600080fd5b505afa158015612305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123299190612c5c565b905061233482612691565b6009546040516370a0823160e01b81523060048201526000916123bc9184916001600160a01b0316906370a082319060240160206040518083038186803b15801561237e57600080fd5b505afa158015612392573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b69190612c5c565b90612685565b600954600f5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb90604401602060405180830381600087803b15801561240e57600080fd5b505af1158015612422573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229b9190612c28565b6000612453826002611a5d565b905060006124618383612685565b90504761246d8361284f565b60006124794783612685565b9050612485838261299e565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b6124d681612691565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561251a57600080fd5b505afa15801561252e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125529190612c5c565b60095460085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b1580156125a857600080fd5b505af11580156125bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e09190612c28565b90508015611d085760085460405163ba72a95560e01b8152600481018490526001600160a01b039091169063ba72a95590602401600060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a1505050565b6000611a568284612ec6565b604080516003808252608082019092526000916020820160608036833701905050905030816000815181106126d657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561272a57600080fd5b505afa15801561273e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127629190612a74565b8160018151811061278357634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526009548251911690829060029081106127c257634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526006546127e89130911684611b06565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612821908590600090869030904290600401612dff565b600060405180830381600087803b15801561283b57600080fd5b505af11580156120fa573d6000803e3d6000fd5b604080516002808252606082018352600092602083019080368337019050509050308160008151811061289257634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156128e657600080fd5b505afa1580156128fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291e9190612a74565b8160018151811061293f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526006546129659130911684611b06565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612821908590600090869030904290600401612dff565b6006546129b69030906001600160a01b031684611b06565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612a1f57600080fd5b505af1158015612a33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c619190612c74565b600060208284031215612a69578081fd5b8135611a5681612f49565b600060208284031215612a85578081fd5b8151611a5681612f49565b60008060408385031215612aa2578081fd5b8235612aad81612f49565b91506020830135612abd81612f49565b809150509250929050565b600080600060608486031215612adc578081fd5b8335612ae781612f49565b92506020840135612af781612f49565b929592945050506040919091013590565b600080600080600080600080610100898b031215612b24578384fd5b8851612b2f81612f49565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612b83578182fd5b8235612b8e81612f49565b946020939093013593505050565b60008060208385031215612bae578182fd5b823567ffffffffffffffff80821115612bc5578384fd5b818501915085601f830112612bd8578384fd5b813581811115612be6578485fd5b8660208260051b8501011115612bfa578485fd5b60209290920196919550909350505050565b600060208284031215612c1d578081fd5b8135611a5681612f5e565b600060208284031215612c39578081fd5b8151611a5681612f5e565b600060208284031215612c55578081fd5b5035919050565b600060208284031215612c6d578081fd5b5051919050565b600080600060608486031215612c88578283fd5b8351925060208401519150604084015190509250925092565b60208082528181018390526000908460408401835b86811015612ce4578235612cc981612f49565b6001600160a01b031682529183019190830190600101612cb6565b509695505050505050565b6000602080835283518082850152825b81811015612d1b57858101830151858201604001528201612cff565b81811115612d2c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612e4e5784516001600160a01b031683529383019391830191600101612e29565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612e8257612e82612f33565b500190565b600082612ea257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612ec157612ec1612f33565b500290565b600082821015612ed857612ed8612f33565b500390565b600181811c90821680612ef157607f821691505b60208210811415612f1257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f2c57612f2c612f33565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ef857600080fd5b8015158114610ef857600080fdfea264697066735822122060279abb2e4a3990012d13ca4d23a2dead66d9e64b3868724840daa7324e0d8e64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000314dc6448d9338c15b0a0000000000000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000047ff2d6de99f7bf38802c16230ae76e75a89fe290000000000000000000000000e1757b9d6501e60b2e4ca0d000e49532948cf6c000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca350000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000e426c61636b626572727920496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424b425900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103395760003560e01c806370a08231116101ab578063afa4f3b2116100f7578063e708a0f911610095578063f27fd2541161006f578063f27fd254146109ce578063f2fde38b146109ee578063f7c618c114610a0e578063ffa1ad7414610a2e57600080fd5b8063e708a0f914610983578063e7841ec014610999578063e98030c7146109ae57600080fd5b8063c705c569116100d1578063c705c569146108e7578063dd62ed3e14610907578063e2f456051461094d578063e57f14e11461096357600080fd5b8063afa4f3b214610882578063b62496f5146108a2578063bdd4f29f146108d257600080fd5b80639c1b8af511610164578063a8b9d2401161013e578063a8b9d240146107bd578063a9059cbb146107dd578063ad56c13c146107fd578063adefd90c1461086257600080fd5b80639c1b8af514610772578063a26579ad14610788578063a457c2d71461079d57600080fd5b806370a08231146106be578063715018a6146106f4578063871c128d146107095780638da5cb5b1461072957806395d89b411461074757806398118cb41461075c57600080fd5b806331e79db0116102855780634fbee1931161022357806364b0f653116101fd57806364b0f653146106535780636843cd84146106685780636b67c4df14610688578063700bb1911461069e57600080fd5b80634fbee193146105da5780635d098b3814610613578063625e764c1461063357600080fd5b80634144d9e41161025f5780634144d9e41461056557806349bd5a5e146105855780634e71d92d146105a55780634ed080c7146105ba57600080fd5b806331e79db0146105055780633950935114610525578063407133d21461054557600080fd5b806318160ddd116102f2578063241ec3be116102cc578063241ec3be146104935780632c1f5216146104b457806330bb4cff146104d4578063313ce567146104e957600080fd5b806318160ddd1461043e5780631f46b1c61461045357806323b872dd1461047357600080fd5b806306fdde0314610345578063095ea7b3146103705780630c43c79b146103a05780630dcb2e89146103c257806313114a9d146103e25780631694505e1461040657600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a43565b6040516103679190612cef565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612b71565b610ad5565b6040519015158152602001610367565b3480156103ac57600080fd5b506103c06103bb366004612b9c565b610aeb565b005b3480156103ce57600080fd5b506103c06103dd366004612c44565b610bdc565b3480156103ee57600080fd5b506103f8600e5481565b604051908152602001610367565b34801561041257600080fd5b50600654610426906001600160a01b031681565b6040516001600160a01b039091168152602001610367565b34801561044a57600080fd5b506002546103f8565b34801561045f57600080fd5b506103c061046e366004612c0c565b610c68565b34801561047f57600080fd5b5061039061048e366004612ac8565b610cb0565b34801561049f57600080fd5b5060135461039090600160a01b900460ff1681565b3480156104c057600080fd5b50600854610426906001600160a01b031681565b3480156104e057600080fd5b506103f8610d5a565b3480156104f557600080fd5b5060405160128152602001610367565b34801561051157600080fd5b506103c0610520366004612a58565b610ddc565b34801561053157600080fd5b50610390610540366004612b71565b610e38565b34801561055157600080fd5b50601354610426906001600160a01b031681565b34801561057157600080fd5b50600f54610426906001600160a01b031681565b34801561059157600080fd5b50600754610426906001600160a01b031681565b3480156105b157600080fd5b506103c0610e74565b3480156105c657600080fd5b506103c06105d5366004612c44565b610efb565b3480156105e657600080fd5b506103906105f5366004612a58565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561061f57600080fd5b506103c061062e366004612a58565b610f93565b34801561063f57600080fd5b506103c061064e366004612c44565b6110c1565b34801561065f57600080fd5b506103f8611105565b34801561067457600080fd5b506103f8610683366004612a58565b61114a565b34801561069457600080fd5b506103f8600d5481565b3480156106aa57600080fd5b506103c06106b9366004612c44565b6111cf565b3480156106ca57600080fd5b506103f86106d9366004612a58565b6001600160a01b031660009081526020819052604090205490565b34801561070057600080fd5b506103c06112b1565b34801561071557600080fd5b506103c0610724366004612c44565b6112e7565b34801561073557600080fd5b506005546001600160a01b0316610426565b34801561075357600080fd5b5061035a611444565b34801561076857600080fd5b506103f8600c5481565b34801561077e57600080fd5b506103f860105481565b34801561079457600080fd5b506103f8611453565b3480156107a957600080fd5b506103906107b8366004612b71565b611498565b3480156107c957600080fd5b506103f86107d8366004612a58565b611531565b3480156107e957600080fd5b506103906107f8366004612b71565b611564565b34801561080957600080fd5b5061081d610818366004612a58565b611571565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610367565b34801561086e57600080fd5b506103c061087d366004612c44565b61161b565b34801561088e57600080fd5b506103c061089d366004612c44565b61165f565b3480156108ae57600080fd5b506103906108bd366004612a58565b60126020526000908152604090205460ff1681565b3480156108de57600080fd5b506103f8611719565b3480156108f357600080fd5b50610390610902366004612a58565b61175e565b34801561091357600080fd5b506103f8610922366004612a90565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561095957600080fd5b506103f8600a5481565b34801561096f57600080fd5b506103c061097e366004612a58565b6117dc565b34801561098f57600080fd5b506103f8600b5481565b3480156109a557600080fd5b506103f86118ca565b3480156109ba57600080fd5b506103c06109c9366004612c44565b61190f565b3480156109da57600080fd5b5061081d6109e9366004612c44565b61196a565b3480156109fa57600080fd5b506103c0610a09366004612a58565b6119ac565b348015610a1a57600080fd5b50600954610426906001600160a01b031681565b348015610a3a57600080fd5b506103f8600381565b606060038054610a5290612edd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90612edd565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b6000610ae2338484611b06565b50600192915050565b6005546001600160a01b03163314610b1e5760405162461bcd60e51b8152600401610b1590612d85565b60405180910390fd5b60005b81811015610b9e57600160116000858585818110610b4f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b649190612a58565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b9681612f18565b915050610b21565b507f6f058e77d614a1061fc197c99cdde12f5fa414c92529bbe8f48b02f8d9f4f95d8282604051610bd0929190612ca1565b60405180910390a15050565b6005546001600160a01b03163314610c065760405162461bcd60e51b8152600401610b1590612d85565b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e89906024015b600060405180830381600087803b158015610c4d57600080fd5b505af1158015610c61573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c925760405162461bcd60e51b8152600401610b1590612d85565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000610cbd848484611c2a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d425760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b15565b610d4f8533858403611b06565b506001949350505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610d9f57600080fd5b505afa158015610db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd79190612c5c565b905090565b6005546001600160a01b03163314610e065760405162461bcd60e51b8152600401610b1590612d85565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401610c33565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ae2918590610e6f908690612e6f565b611b06565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610ec057600080fd5b505af1158015610ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef89190612c28565b50565b6005546001600160a01b03163314610f255760405162461bcd60e51b8152600401610b1590612d85565b600b819055600d54600c54610f469190610f40908490611a4a565b90611a4a565b600e81905560191015610ef85760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610b15565b6005546001600160a01b03163314610fbd5760405162461bcd60e51b8152600401610b1590612d85565b6001600160a01b0381166110395760405162461bcd60e51b815260206004820152603b60248201527f42414259544f4b454e3a20546865206d61726b6574696e672077616c6c65742060448201527f63616e6e6f74206265207468652076616c7565206f66207a65726f00000000006064820152608401610b15565b6001600160a01b0381163b1561109f5760405162461bcd60e51b815260206004820152602560248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e6044820152641d1c9858dd60da1b6064820152608401610b15565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110eb5760405162461bcd60e51b8152600401610b1590612d85565b600d819055600c54600b54610f46918391610f4091611a4a565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610d9f57600080fd5b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561119157600080fd5b505afa1580156111a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190612c5c565b92915050565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561121d57600080fd5b505af1158015611231573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112559190612c74565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b031633146112db5760405162461bcd60e51b8152600401610b1590612d85565b6112e56000612102565b565b6005546001600160a01b031633146113115760405162461bcd60e51b8152600401610b1590612d85565b62030d40811015801561132757506207a1208111155b6113995760405162461bcd60e51b815260206004820152603f60248201527f42414259544f4b454e3a20676173466f7250726f63657373696e67206d75737460448201527f206265206265747765656e203230302c30303020616e64203530302c303030006064820152608401610b15565b6010548114156114115760405162461bcd60e51b815260206004820152603760248201527f42414259544f4b454e3a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610b15565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b606060048054610a5290612edd565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610d9f57600080fd5b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561151a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b15565b6115273385858403611b06565b5060019392505050565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611179565b6000610ae2338484611c2a565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b1580156115c857600080fd5b505afa1580156115dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116009190612b08565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b031633146116455760405162461bcd60e51b8152600401610b1590612d85565b600c819055600d54600b54610f469190610f409084611a4a565b6005546001600160a01b031633146116895760405162461bcd60e51b8152600401610b1590612d85565b620186a061169660025490565b6116a09190612e87565b81116117145760405162461bcd60e51b815260206004820152603d60248201527f42414259544f4b454e3a20416d6f756e74206d7573742062652067726561746560448201527f72207468616e20302e30303125206f6620746f74616c20737570706c790000006064820152608401610b15565b600a55565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b158015610d9f57600080fd5b60085460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c5699060240160206040518083038186803b1580156117a457600080fd5b505afa1580156117b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190612c28565b6005546001600160a01b031633146118065760405162461bcd60e51b8152600401610b1590612d85565b6001600160a01b03811660009081526011602052604090205460ff161561187e5760405162461bcd60e51b815260206004820152602660248201527f42414259544f4b454e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401610b15565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369190a250565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610d9f57600080fd5b6005546001600160a01b031633146119395760405162461bcd60e51b8152600401610b1590612d85565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610c33565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd906024016115af565b6005546001600160a01b031633146119d65760405162461bcd60e51b8152600401610b1590612d85565b6001600160a01b038116611a3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b15565b610ef881612102565b3b151590565b6000611a568284612e6f565b9392505050565b6000611a568284612e87565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116611b015760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610b15565b919050565b6001600160a01b038316611b685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b15565b6001600160a01b038216611bc95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b15565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c505760405162461bcd60e51b8152600401610b1590612dba565b6001600160a01b038216611c765760405162461bcd60e51b8152600401610b1590612d42565b601354600160a01b900460ff1615611cf75760135460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b158015611cde57600080fd5b505af1158015611cf2573d6000803e3d6000fd5b505050505b80611d0d57611d0883836000612154565b505050565b30600090815260208190526040902054600a5481108015908190611d3b5750600754600160a01b900460ff16155b8015611d6057506001600160a01b03851660009081526012602052604090205460ff16155b8015611d7a57506005546001600160a01b03868116911614155b8015611d9457506005546001600160a01b03858116911614155b8015611da257506000600e54115b15611e52576007805460ff60a01b1916600160a01b179055600d5415611df2576000611de5600e54611ddf600d54866122a190919063ffffffff16565b90611a5d565b9050611df0816122ad565b505b600c5415611e24576000611e17600e54611ddf600c54866122a190919063ffffffff16565b9050611e2281612446565b505b306000908152602081905260409020548015611e4357611e43816124cd565b506007805460ff60a01b191690555b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611ea057506001600160a01b03851660009081526011602052604090205460ff165b15611ea9575060005b808015611eb857506000600e54115b15611ef4576000611ed96064611ddf600e54886122a190919063ffffffff16565b9050611ee58582612685565b9450611ef2873083612154565b505b611eff868686612154565b6008546001600160a01b031663e30443bc87611f30816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611f7657600080fd5b505af1925050508015611f87575060015b506008546001600160a01b031663e30443bc86611fb9816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611fff57600080fd5b505af1925050508015612010575060015b50600754600160a01b900460ff166120fa576010546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b15801561206e57600080fd5b505af192505050801561209e575060408051601f3d908101601f1916820190925261209b91810190612c74565b60015b6120a7576120f8565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661217a5760405162461bcd60e51b8152600401610b1590612dba565b6001600160a01b0382166121a05760405162461bcd60e51b8152600401610b1590612d42565b6001600160a01b038316600090815260208190526040902054818110156122185760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b15565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061224f908490612e6f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a391815260200190565b50505050565b6000611a568284612ea7565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156122f157600080fd5b505afa158015612305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123299190612c5c565b905061233482612691565b6009546040516370a0823160e01b81523060048201526000916123bc9184916001600160a01b0316906370a082319060240160206040518083038186803b15801561237e57600080fd5b505afa158015612392573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b69190612c5c565b90612685565b600954600f5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb90604401602060405180830381600087803b15801561240e57600080fd5b505af1158015612422573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229b9190612c28565b6000612453826002611a5d565b905060006124618383612685565b90504761246d8361284f565b60006124794783612685565b9050612485838261299e565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b6124d681612691565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561251a57600080fd5b505afa15801561252e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125529190612c5c565b60095460085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b1580156125a857600080fd5b505af11580156125bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e09190612c28565b90508015611d085760085460405163ba72a95560e01b8152600481018490526001600160a01b039091169063ba72a95590602401600060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a1505050565b6000611a568284612ec6565b604080516003808252608082019092526000916020820160608036833701905050905030816000815181106126d657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561272a57600080fd5b505afa15801561273e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127629190612a74565b8160018151811061278357634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526009548251911690829060029081106127c257634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526006546127e89130911684611b06565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d79590612821908590600090869030904290600401612dff565b600060405180830381600087803b15801561283b57600080fd5b505af11580156120fa573d6000803e3d6000fd5b604080516002808252606082018352600092602083019080368337019050509050308160008151811061289257634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156128e657600080fd5b505afa1580156128fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291e9190612a74565b8160018151811061293f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526006546129659130911684611b06565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612821908590600090869030904290600401612dff565b6006546129b69030906001600160a01b031684611b06565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612a1f57600080fd5b505af1158015612a33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c619190612c74565b600060208284031215612a69578081fd5b8135611a5681612f49565b600060208284031215612a85578081fd5b8151611a5681612f49565b60008060408385031215612aa2578081fd5b8235612aad81612f49565b91506020830135612abd81612f49565b809150509250929050565b600080600060608486031215612adc578081fd5b8335612ae781612f49565b92506020840135612af781612f49565b929592945050506040919091013590565b600080600080600080600080610100898b031215612b24578384fd5b8851612b2f81612f49565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612b83578182fd5b8235612b8e81612f49565b946020939093013593505050565b60008060208385031215612bae578182fd5b823567ffffffffffffffff80821115612bc5578384fd5b818501915085601f830112612bd8578384fd5b813581811115612be6578485fd5b8660208260051b8501011115612bfa578485fd5b60209290920196919550909350505050565b600060208284031215612c1d578081fd5b8135611a5681612f5e565b600060208284031215612c39578081fd5b8151611a5681612f5e565b600060208284031215612c55578081fd5b5035919050565b600060208284031215612c6d578081fd5b5051919050565b600080600060608486031215612c88578283fd5b8351925060208401519150604084015190509250925092565b60208082528181018390526000908460408401835b86811015612ce4578235612cc981612f49565b6001600160a01b031682529183019190830190600101612cb6565b509695505050505050565b6000602080835283518082850152825b81811015612d1b57858101830151858201604001528201612cff565b81811115612d2c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612e4e5784516001600160a01b031683529383019391830191600101612e29565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612e8257612e82612f33565b500190565b600082612ea257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612ec157612ec1612f33565b500290565b600082821015612ed857612ed8612f33565b500390565b600181811c90821680612ef157607f821691505b60208210811415612f1257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f2c57612f2c612f33565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ef857600080fd5b8015158114610ef857600080fdfea264697066735822122060279abb2e4a3990012d13ca4d23a2dead66d9e64b3868724840daa7324e0d8e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000314dc6448d9338c15b0a0000000000000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000047ff2d6de99f7bf38802c16230ae76e75a89fe290000000000000000000000000e1757b9d6501e60b2e4ca0d000e49532948cf6c000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca350000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000000e426c61636b626572727920496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424b425900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Blackberry Inu
Arg [1] : symbol_ (string): BKBY
Arg [2] : totalSupply_ (uint256): 1000000000000000000000000000000000
Arg [3] : addrs (address[5]): 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE,0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,0x47fF2d6de99f7bf38802c16230aE76e75a89fe29,0x0E1757b9d6501e60B2e4Ca0D000e49532948CF6c,0xf4f071EB637b64fC78C9eA87DaCE4445D119CA35
Arg [4] : feeSettings (uint256[3]): 2,1,2
Arg [5] : minimumTokenBalanceForDividends_ (uint256): 100000000000000000000
Arg [6] : serviceFeeReceiver_ (address): 0x4B04213C2774f77e60702880654206B116D00508
Arg [7] : serviceFee_ (uint256): 10000000000000000
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [2] : 000000000000000000000000000000000000314dc6448d9338c15b0a00000000
Arg [3] : 00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 00000000000000000000000047ff2d6de99f7bf38802c16230ae76e75a89fe29
Arg [6] : 0000000000000000000000000e1757b9d6501e60b2e4ca0d000e49532948cf6c
Arg [7] : 000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [12] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [13] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [15] : 426c61636b626572727920496e75000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [17] : 424b425900000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
94510:17346:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8914:169;;;;;;;;;;-1:-1:-1;8914:169:0;;;;;:::i;:::-;;:::i;:::-;;;8276:14:1;;8269:22;8251:41;;8239:2;8224:18;8914:169:0;8206:92:1;100083:301:0;;;;;;;;;;-1:-1:-1;100083:301:0;;;;;:::i;:::-;;:::i;:::-;;102669:185;;;;;;;;;;-1:-1:-1;102669:185:0;;;;;:::i;:::-;;:::i;95076:24::-;;;;;;;;;;;;;;;;;;;16598:25:1;;;16586:2;16571:18;95076:24:0;16553:76:1;94723:41:0;;;;;;;;;;-1:-1:-1;94723:41:0;;;;-1:-1:-1;;;;;94723:41:0;;;;;;-1:-1:-1;;;;;4777:32:1;;;4759:51;;4747:2;4732:18;94723:41:0;4714:102:1;7867:108:0;;;;;;;;;;-1:-1:-1;7955:12:0;;7867:108;;99372:101;;;;;;;;;;-1:-1:-1;99372:101:0;;;;;:::i;:::-;;:::i;9565:492::-;;;;;;;;;;-1:-1:-1;9565:492:0;;;;;:::i;:::-;;:::i;95563:25::-;;;;;;;;;;-1:-1:-1;95563:25:0;;;;-1:-1:-1;;;95563:25:0;;;;;;94838:47;;;;;;;;;;-1:-1:-1;94838:47:0;;;;-1:-1:-1;;;;;94838:47:0;;;103055:141;;;;;;;;;;;;;:::i;7709:93::-;;;;;;;;;;-1:-1:-1;7709:93:0;;7792:2;18737:36:1;;18725:2;18710:18;7709:93:0;18692:87:1;103709:130:0;;;;;;;;;;-1:-1:-1;103709:130:0;;;;;:::i;:::-;;:::i;10466:215::-;;;;;;;;;;-1:-1:-1;10466:215:0;;;;;:::i;:::-;;:::i;95525:31::-;;;;;;;;;;-1:-1:-1;95525:31:0;;;;-1:-1:-1;;;;;95525:31:0;;;95109:38;;;;;;;;;;-1:-1:-1;95109:38:0;;;;-1:-1:-1;;;;;95109:38:0;;;94771:28;;;;;;;;;;-1:-1:-1;94771:28:0;;;;-1:-1:-1;;;;;94771:28:0;;;105184:103;;;;;;;;;;;;;:::i;100743:238::-;;;;;;;;;;-1:-1:-1;100743:238:0;;;;;:::i;:::-;;:::i;103204:126::-;;;;;;;;;;-1:-1:-1;103204:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;103294:28:0;103270:4;103294:28;;;:19;:28;;;;;;;;;103204:126;100392:343;;;;;;;;;;-1:-1:-1;100392:343:0;;;;;:::i;:::-;;:::i;101228:232::-;;;;;;;;;;-1:-1:-1;101228:232:0;;;;;:::i;:::-;;:::i;105433:142::-;;;;;;;;;;;;;:::i;103530:171::-;;;;;;;;;;-1:-1:-1;103530:171:0;;;;;:::i;:::-;;:::i;95042:27::-;;;;;;;;;;;;;;;;104766:410;;;;;;;;;;-1:-1:-1;104766:410:0;;;;;:::i;:::-;;:::i;8038:127::-;;;;;;;;;;-1:-1:-1;8038:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;18427:94;;;;;;;;;;;;;:::i;101924:488::-;;;;;;;;;;-1:-1:-1;101924:488:0;;;;;:::i;:::-;;:::i;17776:87::-;;;;;;;;;;-1:-1:-1;17849:6:0;;-1:-1:-1;;;;;17849:6:0;17776:87;;6966:104;;;;;;;;;;;;;:::i;95008:27::-;;;;;;;;;;;;;;;;95156:31;;;;;;;;;;;;;;;;102552:109;;;;;;;;;;;;;:::i;11184:413::-;;;;;;;;;;-1:-1:-1;11184:413:0;;;;;:::i;:::-;;:::i;103338:184::-;;;;;;;;;;-1:-1:-1;103338:184:0;;;;;:::i;:::-;;:::i;8378:175::-;;;;;;;;;;-1:-1:-1;8378:175:0;;;;;:::i;:::-;;:::i;104038:351::-;;;;;;;;;;-1:-1:-1;104038:351:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6158:32:1;;;6140:51;;6222:2;6207:18;;6200:34;;;;6250:18;;;6243:34;;;;6308:2;6293:18;;6286:34;;;;6351:3;6336:19;;6329:35;6178:3;6380:19;;6373:35;6439:3;6424:19;;6417:35;6483:3;6468:19;;6461:35;6127:3;6112:19;104038:351:0;6094:408:1;100989:231:0;;;;;;;;;;-1:-1:-1;100989:231:0;;;;;:::i;:::-;;:::i;99518:264::-;;;;;;;;;;-1:-1:-1;99518:264:0;;;;;:::i;:::-;;:::i;95459:57::-;;;;;;;;;;-1:-1:-1;95459:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;102862:185;;;;;;;;;;;;;:::i;103847:183::-;;;;;;;;;;-1:-1:-1;103847:183:0;;;;;:::i;:::-;;:::i;8616:151::-;;;;;;;;;;-1:-1:-1;8616:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8732:18:0;;;8705:7;8732:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8616:151;94929:33;;;;;;;;;;;;;;;;99790:285;;;;;;;;;;-1:-1:-1;99790:285:0;;;;;:::i;:::-;;:::i;94971:30::-;;;;;;;;;;;;;;;;105295:130;;;;;;;;;;;;;:::i;102420:124::-;;;;;;;;;;-1:-1:-1;102420:124:0;;;;;:::i;:::-;;:::i;104397:361::-;;;;;;;;;;-1:-1:-1;104397:361:0;;;;;:::i;:::-;;:::i;18676:192::-;;;;;;;;;;-1:-1:-1;18676:192:0;;;;;:::i;:::-;;:::i;94894:26::-;;;;;;;;;;-1:-1:-1;94894:26:0;;;;-1:-1:-1;;;;;94894:26:0;;;94679:35;;;;;;;;;;;;94713:1;94679:35;;6747:100;6801:13;6834:5;6827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747:100;:::o;8914:169::-;8997:4;9014:39;4333:10;9037:7;9046:6;9014:8;:39::i;:::-;-1:-1:-1;9071:4:0;8914:169;;;;:::o;100083:301::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;;;;;;;;;100211:9:::1;100206:112;100226:19:::0;;::::1;100206:112;;;100302:4;100267:19;:32;100287:8;;100296:1;100287:11;;;;;-1:-1:-1::0;;;100287:11:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;100267:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;100267:32:0;:39;;-1:-1:-1;;100267:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;100247:3;::::1;::::0;::::1;:::i;:::-;;;;100206:112;;;;100335:41;100367:8;;100335:41;;;;;;;:::i;:::-;;;;;;;;100083:301:::0;;:::o;102669:185::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;102785:15:::1;::::0;:61:::1;::::0;-1:-1:-1;;;102785:61:0;;::::1;::::0;::::1;16598:25:1::0;;;-1:-1:-1;;;;;102785:15:0;;::::1;::::0;:53:::1;::::0;16571:18:1;;102785:61:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;102669:185:::0;:::o;99372:101::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;99442:13:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;99442:23:0::1;-1:-1:-1::0;;;;99442:23:0;;::::1;::::0;;;::::1;::::0;;99372:101::o;9565:492::-;9705:4;9722:36;9732:6;9740:9;9751:6;9722:9;:36::i;:::-;-1:-1:-1;;;;;9798:19:0;;9771:24;9798:19;;;:11;:19;;;;;;;;4333:10;9798:33;;;;;;;;9850:26;;;;9842:79;;;;-1:-1:-1;;;9842:79:0;;13815:2:1;9842:79:0;;;13797:21:1;13854:2;13834:18;;;13827:30;13893:34;13873:18;;;13866:62;-1:-1:-1;;;13944:18:1;;;13937:38;13992:19;;9842:79:0;13787:230:1;9842:79:0;9957:57;9966:6;4333:10;10007:6;9988:16;:25;9957:8;:57::i;:::-;-1:-1:-1;10045:4:0;;9565:492;-1:-1:-1;;;;9565:492:0:o;103055:141::-;103145:15;;:43;;;-1:-1:-1;;;103145:43:0;;;;103118:7;;-1:-1:-1;;;;;103145:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103138:50;;103055:141;:::o;103709:130::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;103786:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;103786:45:0;;-1:-1:-1;;;;;4777:32:1;;;103786:45:0::1;::::0;::::1;4759:51:1::0;103786:15:0;;::::1;::::0;:36:::1;::::0;4732:18:1;;103786:45:0::1;4714:102:1::0;10466:215:0;4333:10;10554:4;10603:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10603:34:0;;;;;;;;;;10554:4;;10571:80;;10594:7;;10603:47;;10640:10;;10603:47;:::i;:::-;10571:8;:80::i;105184:103::-;105221:15;;:58;;-1:-1:-1;;;105221:58:0;;105260:10;105221:58;;;5005:51:1;105221:15:0;5072:18:1;;;5065:50;-1:-1:-1;;;;;105221:15:0;;;;:30;;4978:18:1;;105221:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;105184:103::o;100743:238::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;100816:15:::1;:23:::0;;;100900:12:::1;::::0;100882::::1;::::0;100862:51:::1;::::0;100900:12;100862:33:::1;::::0;100834:5;;100862:19:::1;:33::i;:::-;:37:::0;::::1;:51::i;:::-;100850:9;:63:::0;;;100945:2:::1;-1:-1:-1::0;100932:15:0::1;100924:49;;;::::0;-1:-1:-1;;;100924:49:0;;12684:2:1;100924:49:0::1;::::0;::::1;12666:21:1::0;12723:2;12703:18;;;12696:30;-1:-1:-1;;;12742:18:1;;;12735:51;12803:18;;100924:49:0::1;12656:171:1::0;100392:343:0;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;100496:20:0;::::1;100474:129;;;::::0;-1:-1:-1;;;100474:129:0;;14585:2:1;100474:129:0::1;::::0;::::1;14567:21:1::0;14624:2;14604:18;;;14597:30;14663:34;14643:18;;;14636:62;14734:29;14714:18;;;14707:57;14781:19;;100474:129:0::1;14557:249:1::0;100474:129:0::1;-1:-1:-1::0;;;;;100623:17:0;::::1;30757:20:::0;30805:8;100614:70:::1;;;::::0;-1:-1:-1;;;100614:70:0;;11464:2:1;100614:70:0::1;::::0;::::1;11446:21:1::0;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;-1:-1:-1;;;11593:18:1;;;11586:35;11638:19;;100614:70:0::1;11436:227:1::0;100614:70:0::1;100695:23;:32:::0;;-1:-1:-1;;;;;;100695:32:0::1;-1:-1:-1::0;;;;;100695:32:0;;;::::1;::::0;;;::::1;::::0;;100392:343::o;101228:232::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;101298:12:::1;:20:::0;;;101361:12:::1;::::0;101341:15:::1;::::0;:51:::1;::::0;101313:5;;101341:33:::1;::::0;:19:::1;:33::i;105433:142::-:0;105526:15;;:41;;;-1:-1:-1;;;105526:41:0;;;;105499:7;;-1:-1:-1;;;;;105526:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;103530:171;103659:15;;:34;;-1:-1:-1;;;103659:34:0;;-1:-1:-1;;;;;4777:32:1;;;103659:34:0;;;4759:51:1;103627:7:0;;103659:15;;:25;;4732:18:1;;103659:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103652:41;103530:171;-1:-1:-1;;103530:171:0:o;104766:410::-;104948:15;;:28;;-1:-1:-1;;;;;;104948:28:0;;;;;16598:25:1;;;104846:18:0;;;;;;-1:-1:-1;;;;;104948:15:0;;:23;;16571:18:1;;104948:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;104992:176;;;18430:25:1;;;18486:2;18471:18;;18464:34;;;18514:18;;;18507:34;;;18572:2;18557:18;;18550:34;;;104831:145:0;;-1:-1:-1;104831:145:0;;-1:-1:-1;104831:145:0;-1:-1:-1;105148:9:0;;105110:5;;104992:176;;18417:3:1;18402:19;104992:176:0;;;;;;;;104766:410;;;;:::o;18427:94::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;18492:21:::1;18510:1;18492:9;:21::i;:::-;18427:94::o:0;101924:488::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;102036:6:::1;102024:8;:18;;:40;;;;;102058:6;102046:8;:18;;102024:40;102002:153;;;::::0;-1:-1:-1;;;102002:153:0;;10222:2:1;102002:153:0::1;::::0;::::1;10204:21:1::0;10261:2;10241:18;;;10234:30;10300:34;10280:18;;;10273:62;10371:33;10351:18;;;10344:61;10422:19;;102002:153:0::1;10194:253:1::0;102002:153:0::1;102200:16;;102188:8;:28;;102166:133;;;::::0;-1:-1:-1;;;102166:133:0;;15824:2:1;102166:133:0::1;::::0;::::1;15806:21:1::0;15863:2;15843:18;;;15836:30;15902:34;15882:18;;;15875:62;15973:25;15953:18;;;15946:53;16016:19;;102166:133:0::1;15796:245:1::0;102166:133:0::1;102349:16;::::0;102315:51:::1;::::0;102339:8;;102315:51:::1;::::0;;;::::1;102377:16;:27:::0;101924:488::o;6966:104::-;7022:13;7055:7;7048:14;;;;;:::i;102552:109::-;102626:15;;:27;;;-1:-1:-1;;;102626:27:0;;;;102599:7;;-1:-1:-1;;;;;102626:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;11184:413;4333:10;11277:4;11321:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11321:34:0;;;;;;;;;;11374:35;;;;11366:85;;;;-1:-1:-1;;;11366:85:0;;16248:2:1;11366:85:0;;;16230:21:1;16287:2;16267:18;;;16260:30;16326:34;16306:18;;;16299:62;-1:-1:-1;;;16377:18:1;;;16370:35;16422:19;;11366:85:0;16220:227:1;11366:85:0;11487:67;4333:10;11510:7;11538:15;11519:16;:34;11487:8;:67::i;:::-;-1:-1:-1;11585:4:0;;11184:413;-1:-1:-1;;;11184:413:0:o;103338:184::-;103467:15;;:47;;-1:-1:-1;;;103467:47:0;;-1:-1:-1;;;;;4777:32:1;;;103467:47:0;;;4759:51:1;103435:7:0;;103467:15;;:38;;4732:18:1;;103467:47:0;4714:102:1;8378:175:0;8464:4;8481:42;4333:10;8505:9;8516:6;8481:9;:42::i;104038:351::-;104346:15;;:35;;-1:-1:-1;;;104346:35:0;;-1:-1:-1;;;;;4777:32:1;;;104346:35:0;;;4759:51:1;104152:7:0;;;;;;;;;;;;;;;;104346:15;;;:26;;4732:18:1;;104346:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;104339:42;;;;;;;;;;;;;;;;104038:351;;;;;;;;;:::o;100989:231::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;101058:12:::1;:20:::0;;;101139:12:::1;::::0;101101:15:::1;::::0;:51:::1;::::0;101139:12;101101:33:::1;::::0;101073:5;101101:19:::1;:33::i;99518:264::-:0;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;99642:5:::1;99626:13;7955:12:::0;;;7867:108;99626:13:::1;:21;;;;:::i;:::-;99617:6;:30;99595:141;;;::::0;-1:-1:-1;;;99595:141:0;;13034:2:1;99595:141:0::1;::::0;::::1;13016:21:1::0;13073:2;13053:18;;;13046:30;13112:34;13092:18;;;13085:62;13183:31;13163:18;;;13156:59;13232:19;;99595:141:0::1;13006:251:1::0;99595:141:0::1;99747:18;:27:::0;99518:264::o;102862:185::-;102990:15;;:49;;;-1:-1:-1;;;102990:49:0;;;;102958:7;;-1:-1:-1;;;;;102990:15:0;;:47;;:49;;;;;;;;;;;;;;:15;:49;;;;;;;;;;103847:183;103974:15;;:48;;-1:-1:-1;;;103974:48:0;;-1:-1:-1;;;;;4777:32:1;;;103974:48:0;;;4759:51:1;103945:4:0;;103974:15;;:39;;4732:18:1;;103974:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;99790:285::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;99885:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;99884:29;99862:117;;;::::0;-1:-1:-1;;;99862:117:0;;12277:2:1;99862:117:0::1;::::0;::::1;12259:21:1::0;12316:2;12296:18;;;12289:30;12355:34;12335:18;;;12328:62;-1:-1:-1;;;12406:18:1;;;12399:36;12452:19;;99862:117:0::1;12249:228:1::0;99862:117:0::1;-1:-1:-1::0;;;;;99990:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:35;;-1:-1:-1;;99990:35:0::1;100021:4;99990:35;::::0;;100043:24;::::1;::::0;99990:28;100043:24:::1;99790:285:::0;:::o;105295:130::-;105378:15;;:39;;;-1:-1:-1;;;105378:39:0;;;;105351:7;;-1:-1:-1;;;;;105378:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;102420:124;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;102494:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;102494:42:0;;::::1;::::0;::::1;16598:25:1::0;;;-1:-1:-1;;;;;102494:15:0;;::::1;::::0;:31:::1;::::0;16571:18:1;;102494:42:0::1;16553:76:1::0;104397:361:0;104710:15;;:40;;-1:-1:-1;;;104710:40:0;;;;;16598:25:1;;;104516:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;104710:15:0;;;;:33;;16571:18:1;;104710:40:0;16553:76:1;18676:192:0;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18765:22:0;::::1;18757:73;;;::::0;-1:-1:-1;;;18757:73:0;;10654:2:1;18757:73:0::1;::::0;::::1;10636:21:1::0;10693:2;10673:18;;;10666:30;10732:34;10712:18;;;10705:62;-1:-1:-1;;;10783:18:1;;;10776:36;10829:19;;18757:73:0::1;10626:228:1::0;18757:73:0::1;18841:19;18851:8;18841:9;:19::i;30434:387::-:0;30757:20;30805:8;;;30434:387::o;21862:98::-;21920:7;21947:5;21951:1;21947;:5;:::i;:::-;21940:12;21862:98;-1:-1:-1;;;21862:98:0:o;22999:::-;23057:7;23084:5;23088:1;23084;:5;:::i;26992:524::-;27049:16;27119:4;27113:11;-1:-1:-1;;;27145:3:0;27138:79;27264:14;27258:4;27254:25;27247:4;27242:3;27238:14;27231:49;-1:-1:-1;;;27310:4:0;27305:3;27301:14;27294:90;27425:4;27420:3;27417:1;27410:20;27398:32;-1:-1:-1;;;;;;;27459:22:0;;27451:57;;;;-1:-1:-1;;;27451:57:0;;13464:2:1;27451:57:0;;;13446:21:1;13503:2;13483:18;;;13476:30;-1:-1:-1;;;13522:18:1;;;13515:52;13584:18;;27451:57:0;13436:172:1;27451:57:0;26992:524;;;:::o;14868:380::-;-1:-1:-1;;;;;15004:19:0;;14996:68;;;;-1:-1:-1;;;14996:68:0;;15419:2:1;14996:68:0;;;15401:21:1;15458:2;15438:18;;;15431:30;15497:34;15477:18;;;15470:62;-1:-1:-1;;;15548:18:1;;;15541:34;15592:19;;14996:68:0;15391:226:1;14996:68:0;-1:-1:-1;;;;;15083:21:0;;15075:68;;;;-1:-1:-1;;;15075:68:0;;11061:2:1;15075:68:0;;;11043:21:1;11100:2;11080:18;;;11073:30;11139:34;11119:18;;;11112:62;-1:-1:-1;;;11190:18:1;;;11183:32;11232:19;;15075:68:0;11033:224:1;15075:68:0;-1:-1:-1;;;;;15156:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15208:32;;16598:25:1;;;15208:32:0;;16571:18:1;15208:32:0;;;;;;;14868:380;;;:::o;105583:2791::-;-1:-1:-1;;;;;105715:18:0;;105707:68;;;;-1:-1:-1;;;105707:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;105794:16:0;;105786:64;;;;-1:-1:-1;;;105786:64:0;;;;;;;:::i;:::-;105867:13;;-1:-1:-1;;;105867:13:0;;;;105863:94;;;105897:11;;:48;;-1:-1:-1;;;105897:48:0;;-1:-1:-1;;;;;5679:15:1;;;105897:48:0;;;5661:34:1;5731:15;;;5711:18;;;5704:43;5763:18;;;5756:34;;;105897:11:0;;;;:30;;5596:18:1;;105897:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105863:94;105973:11;105969:93;;106001:28;106017:4;106023:2;106027:1;106001:15;:28::i;:::-;105583:2791;;;:::o;105969:93::-;106123:4;106074:28;8139:18;;;;;;;;;;;106181;;106157:42;;;;;;;106230:33;;-1:-1:-1;106255:8:0;;-1:-1:-1;;;106255:8:0;;;;106254:9;106230:33;:82;;;;-1:-1:-1;;;;;;106281:31:0;;;;;;:25;:31;;;;;;;;106280:32;106230:82;:114;;;;-1:-1:-1;17849:6:0;;-1:-1:-1;;;;;106329:15:0;;;17849:6;;106329:15;;106230:114;:144;;;;-1:-1:-1;17849:6:0;;-1:-1:-1;;;;;106361:13:0;;;17849:6;;106361:13;;106230:144;:174;;;;;106403:1;106391:9;;:13;106230:174;106212:922;;;106431:8;:15;;-1:-1:-1;;;;106431:15:0;-1:-1:-1;;;106431:15:0;;;106467:12;;:16;106463:232;;106504:23;106530:97;106617:9;;106530:60;106577:12;;106530:20;:46;;:60;;;;:::i;:::-;:86;;:97::i;:::-;106504:123;;106646:33;106663:15;106646:16;:33::i;:::-;106463:232;;106715:12;;:16;106711:216;;106752:18;106773:93;106838:9;;106773:38;106798:12;;106773:20;:24;;:38;;;;:::i;:93::-;106752:114;;106885:26;106900:10;106885:14;:26::i;:::-;106711:216;;106982:4;106943:18;8139;;;;;;;;;;;107007:14;;107003:87;;107042:32;107063:10;107042:20;:32::i;:::-;-1:-1:-1;107106:8:0;:16;;-1:-1:-1;;;;107106:16:0;;;106212:922;107162:8;;-1:-1:-1;;;;;107272:25:0;;107146:12;107272:25;;;:19;:25;;;;;;107162:8;-1:-1:-1;;;107162:8:0;;;;;107161:9;;107272:25;;:52;;-1:-1:-1;;;;;;107301:23:0;;;;;;:19;:23;;;;;;;;107272:52;107268:100;;;-1:-1:-1;107351:5:0;107268:100;107384:7;:24;;;;;107407:1;107395:9;;:13;107384:24;107380:201;;;107425:12;107440:30;107466:3;107440:21;107451:9;;107440:6;:10;;:21;;;;:::i;:30::-;107425:45;-1:-1:-1;107494:16:0;:6;107425:45;107494:10;:16::i;:::-;107485:25;;107527:42;107543:4;107557;107564;107527:15;:42::i;:::-;107380:201;;107593:33;107609:4;107615:2;107619:6;107593:15;:33::i;:::-;107656:15;;-1:-1:-1;;;;;107656:15:0;:26;107691:4;107698:15;107691:4;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;107698:15;107656:58;;-1:-1:-1;;;;;;107656:58:0;;;;;;;-1:-1:-1;;;;;5334:32:1;;;107656:58:0;;;5316:51:1;5383:18;;;5376:34;5289:18;;107656:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107639:96;107749:15;;-1:-1:-1;;;;;107749:15:0;:26;107784:2;107789:13;107784:2;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;107789:13;107749:54;;-1:-1:-1;;;;;;107749:54:0;;;;;;;-1:-1:-1;;;;;5334:32:1;;;107749:54:0;;;5316:51:1;5383:18;;;5376:34;5289:18;;107749:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107745:70;107832:8;;-1:-1:-1;;;107832:8:0;;;;107827:540;;107871:16;;107908:15;;:28;;-1:-1:-1;;;;;;107908:28:0;;;;;16598:25:1;;;-1:-1:-1;;;;;107908:15:0;;;;:23;;16571:18:1;;107908:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;107908:28:0;;;;;;;;-1:-1:-1;;107908:28:0;;;;;;;;;;;;:::i;:::-;;;107904:452;;;;;108100:231;;;18430:25:1;;;18486:2;18471:18;;18464:34;;;18514:18;;;18507:34;;;18572:2;18557:18;;18550:34;;;108303:9:0;;108250:4;;108100:231;;18417:3:1;18402:19;108100:231:0;;;;;;;107937:410;;;107904:452;107827:540;;105583:2791;;;;;;:::o;18876:173::-;18951:6;;;-1:-1:-1;;;;;18968:17:0;;;-1:-1:-1;;;;;;18968:17:0;;;;;;;19001:40;;18951:6;;;18968:17;18951:6;;19001:40;;18932:16;;19001:40;18876:173;;:::o;12087:733::-;-1:-1:-1;;;;;12227:20:0;;12219:70;;;;-1:-1:-1;;;12219:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12308:23:0;;12300:71;;;;-1:-1:-1;;;12300:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12468:17:0;;12444:21;12468:17;;;;;;;;;;;12504:23;;;;12496:74;;;;-1:-1:-1;;;12496:74:0;;11870:2:1;12496:74:0;;;11852:21:1;11909:2;11889:18;;;11882:30;11948:34;11928:18;;;11921:62;-1:-1:-1;;;11999:18:1;;;11992:36;12045:19;;12496:74:0;11842:228:1;12496:74:0;-1:-1:-1;;;;;12606:17:0;;;:9;:17;;;;;;;;;;;12626:22;;;12606:42;;12670:20;;;;;;;;:30;;12642:6;;12606:9;12670:30;;12642:6;;12670:30;:::i;:::-;;;;;;;;12735:9;-1:-1:-1;;;;;12718:35:0;12727:6;-1:-1:-1;;;;;12718:35:0;;12746:6;12718:35;;;;16598:25:1;;16586:2;16571:18;;16553:76;12766:46:0;12087:733;;;;:::o;22600:98::-;22658:7;22685:5;22689:1;22685;:5;:::i;108382:406::-;108479:11;;108472:68;;-1:-1:-1;;;108472:68:0;;108524:4;108472:68;;;4759:51:1;108443:26:0;;-1:-1:-1;;;;;108479:11:0;;108472:29;;4732:18:1;;108472:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;108443:97;;108553:25;108571:6;108553:17;:25::i;:::-;108618:11;;108611:44;;-1:-1:-1;;;108611:44:0;;108649:4;108611:44;;;4759:51:1;108589:18:0;;108610:94;;108675:18;;-1:-1:-1;;;;;108618:11:0;;108611:29;;4732:18:1;;108611:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;108610:50;;:94::i;:::-;108722:11;;108744:23;;108715:65;;-1:-1:-1;;;108715:65:0;;-1:-1:-1;;;;;108744:23:0;;;108715:65;;;5316:51:1;5383:18;;;5376:34;;;108589:115:0;;-1:-1:-1;108722:11:0;;108715:28;;5289:18:1;;108715:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;108796:923::-;108906:12;108921:13;:6;108932:1;108921:10;:13::i;:::-;108906:28;-1:-1:-1;108945:17:0;108965:16;:6;108906:28;108965:10;:16::i;:::-;108945:36;-1:-1:-1;109284:21:0;109350:22;109367:4;109350:16;:22::i;:::-;109503:18;109524:41;:21;109550:14;109524:25;:41::i;:::-;109503:62;;109615:35;109628:9;109639:10;109615:12;:35::i;:::-;109668:43;;;18077:25:1;;;18133:2;18118:18;;18111:34;;;18161:18;;;18154:34;;;109668:43:0;;18065:2:1;18050:18;109668:43:0;;;;;;;108796:923;;;;;:::o;111398:455::-;111463:25;111481:6;111463:17;:25::i;:::-;111526:11;;111519:44;;-1:-1:-1;;;111519:44:0;;111557:4;111519:44;;;4759:51:1;111499:17:0;;-1:-1:-1;;;;;111526:11:0;;111519:29;;4732:18:1;;111519:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;111596:11;;111640:15;;111589:102;;-1:-1:-1;;;111589:102:0;;-1:-1:-1;;;;;111640:15:0;;;111589:102;;;5316:51:1;5383:18;;;5376:34;;;111499:64:0;;-1:-1:-1;111574:12:0;;111596:11;;;111589:28;;5289:18:1;;111589:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;111574:117;;111708:7;111704:142;;;111732:15;;:50;;-1:-1:-1;;;111732:50:0;;;;;16598:25:1;;;-1:-1:-1;;;;;111732:15:0;;;;:39;;16571:18:1;;111732:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;111802:32:0;;;17796:25:1;;;17852:2;17837:18;;17830:34;;;111802:32:0;;-1:-1:-1;17769:18:1;;-1:-1:-1;111802:32:0;;;;;;;111398:455;;;:::o;22243:98::-;22301:7;22328:5;22332:1;22328;:5;:::i;110324:537::-;110415:16;;;110429:1;110415:16;;;;;;;;;110391:21;;110415:16;;;;;;;;;;-1:-1:-1;110415:16:0;110391:40;;110460:4;110442;110447:1;110442:7;;;;;;-1:-1:-1;;;110442:7:0;;;;;;;;;-1:-1:-1;;;;;110442:23:0;;;:7;;;;;;;;;;:23;;;;110486:15;;:22;;;-1:-1:-1;;;110486:22:0;;;;:15;;;;;:20;;:22;;;;;110442:7;;110486:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;110476:4;110481:1;110476:7;;;;;;-1:-1:-1;;;110476:7:0;;;;;;;;;-1:-1:-1;;;;;110476:32:0;;;:7;;;;;;;;;:32;110529:11;;110519:7;;110529:11;;;110519:4;;110524:1;;110519:7;;;;-1:-1:-1;;;110519:7:0;;;;;;;;;-1:-1:-1;;;;;110519:21:0;;;:7;;;;;;;;;:21;110585:15;;110553:62;;110570:4;;110585:15;110603:11;110553:8;:62::i;:::-;110654:15;;:199;;-1:-1:-1;;;110654:199:0;;-1:-1:-1;;;;;110654:15:0;;;;:69;;:199;;110738:11;;110654:15;;110780:4;;110807;;110827:15;;110654:199;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109727:589;109877:16;;;109891:1;109877:16;;;;;;;;109853:21;;109877:16;;;;;;;;;;-1:-1:-1;109877:16:0;109853:40;;109922:4;109904;109909:1;109904:7;;;;;;-1:-1:-1;;;109904:7:0;;;;;;;;;-1:-1:-1;;;;;109904:23:0;;;:7;;;;;;;;;;:23;;;;109948:15;;:22;;;-1:-1:-1;;;109948:22:0;;;;:15;;;;;:20;;:22;;;;;109904:7;;109948:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;109938:4;109943:1;109938:7;;;;;;-1:-1:-1;;;109938:7:0;;;;;;;;;-1:-1:-1;;;;;109938:32:0;;;:7;;;;;;;;;:32;110015:15;;109983:62;;110000:4;;110015:15;110033:11;109983:8;:62::i;:::-;110084:15;;:224;;-1:-1:-1;;;110084:224:0;;-1:-1:-1;;;;;110084:15:0;;;;:66;;:224;;110165:11;;110084:15;;110235:4;;110262;;110282:15;;110084:224;;;:::i;110869:521::-;111049:15;;111017:62;;111034:4;;-1:-1:-1;;;;;111049:15:0;111067:11;111017:8;:62::i;:::-;111122:15;;:260;;-1:-1:-1;;;111122:260:0;;111194:4;111122:260;;;7127:34:1;7177:18;;;7170:34;;;111122:15:0;7220:18:1;;;7213:34;;;7263:18;;;7256:34;111334:6:0;7306:19:1;;;7299:44;111356:15:0;7359:19:1;;;7352:35;-1:-1:-1;;;;;111122:15:0;;;;:31;;111161:9;;7061:19:1;;111122:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;812:398::-;880:6;888;941:2;929:9;920:7;916:23;912:32;909:2;;;962:6;954;947:22;909:2;1006:9;993:23;1025:31;1050:5;1025:31;:::i;:::-;1075:5;-1:-1:-1;1132:2:1;1117:18;;1104:32;1145:33;1104:32;1145:33;:::i;:::-;1197:7;1187:17;;;899:311;;;;;:::o;1215:466::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:2;;;1382:6;1374;1367:22;1329:2;1426:9;1413:23;1445:31;1470:5;1445:31;:::i;:::-;1495:5;-1:-1:-1;1552:2:1;1537:18;;1524:32;1565:33;1524:32;1565:33;:::i;:::-;1319:362;;1617:7;;-1:-1:-1;;;1671:2:1;1656:18;;;;1643:32;;1319:362::o;1686:691::-;1817:6;1825;1833;1841;1849;1857;1865;1873;1926:3;1914:9;1905:7;1901:23;1897:33;1894:2;;;1948:6;1940;1933:22;1894:2;1985:9;1979:16;2004:31;2029:5;2004:31;:::i;:::-;2054:5;2044:15;;;2099:2;2088:9;2084:18;2078:25;2068:35;;2143:2;2132:9;2128:18;2122:25;2112:35;;2187:2;2176:9;2172:18;2166:25;2156:35;;2231:3;2220:9;2216:19;2210:26;2200:36;;2276:3;2265:9;2261:19;2255:26;2245:36;;2321:3;2310:9;2306:19;2300:26;2290:36;;2366:3;2355:9;2351:19;2345:26;2335:36;;1884:493;;;;;;;;;;;:::o;2382:325::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:2;;;2532:6;2524;2517:22;2479:2;2576:9;2563:23;2595:31;2620:5;2595:31;:::i;:::-;2645:5;2697:2;2682:18;;;;2669:32;;-1:-1:-1;;;2469:238:1:o;2712:665::-;2798:6;2806;2859:2;2847:9;2838:7;2834:23;2830:32;2827:2;;;2880:6;2872;2865:22;2827:2;2925:9;2912:23;2954:18;2995:2;2987:6;2984:14;2981:2;;;3016:6;3008;3001:22;2981:2;3059:6;3048:9;3044:22;3034:32;;3104:7;3097:4;3093:2;3089:13;3085:27;3075:2;;3131:6;3123;3116:22;3075:2;3176;3163:16;3202:2;3194:6;3191:14;3188:2;;;3223:6;3215;3208:22;3188:2;3281:7;3276:2;3266:6;3263:1;3259:14;3255:2;3251:23;3247:32;3244:45;3241:2;;;3307:6;3299;3292:22;3241:2;3343;3335:11;;;;;3365:6;;-1:-1:-1;2817:560:1;;-1:-1:-1;;;;2817:560:1:o;3382:251::-;3438:6;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;3556:9;3543:23;3575:28;3597:5;3575:28;:::i;3638:255::-;3705:6;3758:2;3746:9;3737:7;3733:23;3729:32;3726:2;;;3779:6;3771;3764:22;3726:2;3816:9;3810:16;3835:28;3857:5;3835:28;:::i;3898:190::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:2;;;4031:6;4023;4016:22;3978:2;-1:-1:-1;4059:23:1;;3968:120;-1:-1:-1;3968:120:1:o;4093:194::-;4163:6;4216:2;4204:9;4195:7;4191:23;4187:32;4184:2;;;4237:6;4229;4222:22;4184:2;-1:-1:-1;4265:16:1;;4174:113;-1:-1:-1;4174:113:1:o;4292:316::-;4380:6;4388;4396;4449:2;4437:9;4428:7;4424:23;4420:32;4417:2;;;4470:6;4462;4455:22;4417:2;4504:9;4498:16;4488:26;;4554:2;4543:9;4539:18;4533:25;4523:35;;4598:2;4587:9;4583:18;4577:25;4567:35;;4407:201;;;;;:::o;7398:708::-;7579:2;7631:21;;;7604:18;;;7687:22;;;7550:4;;7766:6;7740:2;7725:18;;7550:4;7803:277;7817:6;7814:1;7811:13;7803:277;;;7892:6;7879:20;7912:31;7937:5;7912:31;:::i;:::-;-1:-1:-1;;;;;7968:31:1;7956:44;;8055:15;;;;8020:12;;;;7996:1;7832:9;7803:277;;;-1:-1:-1;8097:3:1;7559:547;-1:-1:-1;;;;;;7559:547:1:o;9008:603::-;9120:4;9149:2;9178;9167:9;9160:21;9210:6;9204:13;9253:6;9248:2;9237:9;9233:18;9226:34;9278:4;9291:140;9305:6;9302:1;9299:13;9291:140;;;9400:14;;;9396:23;;9390:30;9366:17;;;9385:2;9362:26;9355:66;9320:10;;9291:140;;;9449:6;9446:1;9443:13;9440:2;;;9519:4;9514:2;9505:6;9494:9;9490:22;9486:31;9479:45;9440:2;-1:-1:-1;9595:2:1;9574:15;-1:-1:-1;;9570:29:1;9555:45;;;;9602:2;9551:54;;9129:482;-1:-1:-1;;;9129:482:1:o;9616:399::-;9818:2;9800:21;;;9857:2;9837:18;;;9830:30;9896:34;9891:2;9876:18;;9869:62;-1:-1:-1;;;9962:2:1;9947:18;;9940:33;10005:3;9990:19;;9790:225::o;14022:356::-;14224:2;14206:21;;;14243:18;;;14236:30;14302:34;14297:2;14282:18;;14275:62;14369:2;14354:18;;14196:182::o;14811:401::-;15013:2;14995:21;;;15052:2;15032:18;;;15025:30;15091:34;15086:2;15071:18;;15064:62;-1:-1:-1;;;15157:2:1;15142:18;;15135:35;15202:3;15187:19;;14985:227::o;16634:983::-;16896:4;16944:3;16933:9;16929:19;16975:6;16964:9;16957:25;17001:2;17039:6;17034:2;17023:9;17019:18;17012:34;17082:3;17077:2;17066:9;17062:18;17055:31;17106:6;17141;17135:13;17172:6;17164;17157:22;17210:3;17199:9;17195:19;17188:26;;17249:2;17241:6;17237:15;17223:29;;17270:4;17283:195;17297:6;17294:1;17291:13;17283:195;;;17362:13;;-1:-1:-1;;;;;17358:39:1;17346:52;;17453:15;;;;17418:12;;;;17394:1;17312:9;17283:195;;;-1:-1:-1;;;;;;;17534:32:1;;;;17529:2;17514:18;;17507:60;-1:-1:-1;;;17598:3:1;17583:19;17576:35;17495:3;16905:712;-1:-1:-1;;;16905:712:1:o;18784:128::-;18824:3;18855:1;18851:6;18848:1;18845:13;18842:2;;;18861:18;;:::i;:::-;-1:-1:-1;18897:9:1;;18832:80::o;18917:217::-;18957:1;18983;18973:2;;-1:-1:-1;;;19008:31:1;;19062:4;19059:1;19052:15;19090:4;19015:1;19080:15;18973:2;-1:-1:-1;19119:9:1;;18963:171::o;19139:168::-;19179:7;19245:1;19241;19237:6;19233:14;19230:1;19227:21;19222:1;19215:9;19208:17;19204:45;19201:2;;;19252:18;;:::i;:::-;-1:-1:-1;19292:9:1;;19191:116::o;19312:125::-;19352:4;19380:1;19377;19374:8;19371:2;;;19385:18;;:::i;:::-;-1:-1:-1;19422:9:1;;19361:76::o;19442:380::-;19521:1;19517:12;;;;19564;;;19585:2;;19639:4;19631:6;19627:17;19617:27;;19585:2;19692;19684:6;19681:14;19661:18;19658:38;19655:2;;;19738:10;19733:3;19729:20;19726:1;19719:31;19773:4;19770:1;19763:15;19801:4;19798:1;19791:15;19655:2;;19497:325;;;:::o;19827:135::-;19866:3;-1:-1:-1;;19887:17:1;;19884:2;;;19907:18;;:::i;:::-;-1:-1:-1;19954:1:1;19943:13;;19874:88::o;19967:127::-;20028:10;20023:3;20019:20;20016:1;20009:31;20059:4;20056:1;20049:15;20083:4;20080:1;20073:15;20099:131;-1:-1:-1;;;;;20174:31:1;;20164:42;;20154:2;;20220:1;20217;20210:12;20235:118;20321:5;20314:13;20307:21;20300:5;20297:32;20287:2;;20343:1;20340;20333:12
Swarm Source
ipfs://60279abb2e4a3990012d13ca4d23a2dead66d9e64b3868724840daa7324e0d8e
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.