ERC-20
MEME
Overview
Max Total Supply
1,000,000,000,000,000 SRWD
Holders
393 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
421,627,285,546,120.926188103596940886 SRWDValue
$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)Audit Report
/** *Submitted for verification at Etherscan.io on 2021-12-15 */ // 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: 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 "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; uint256 public constant VERSION = 1; 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 UpdateDividendTracker( address indexed newAddress, address indexed oldAddress ); event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event LiquidityWalletUpdated( address indexed newLiquidityWallet, address indexed oldLiquidityWallet ); 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" ); 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_.mul(2).div(10**6); // 0.002% // 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 excludeFromFees(owner(), true); excludeFromFees(_marketingWalletAddress, true); excludeFromFees(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 { swapTokensAtAmount = amount; } function updateDividendTracker(address newAddress) public onlyOwner { require( newAddress != address(dividendTracker), "BABYTOKEN: The dividend tracker already has that address" ); BABYTOKENDividendTracker newDividendTracker = BABYTOKENDividendTracker( payable(newAddress) ); require( newDividendTracker.owner() == address(this), "BABYTOKEN: The new dividend tracker must be owned by the BABYTOKEN token contract" ); newDividendTracker.excludeFromDividends(address(newDividendTracker)); newDividendTracker.excludeFromDividends(address(this)); newDividendTracker.excludeFromDividends(owner()); newDividendTracker.excludeFromDividends(address(uniswapV2Router)); emit UpdateDividendTracker(newAddress, address(dividendTracker)); dividendTracker = newDividendTracker; } function updateUniswapV2Router(address newAddress) public onlyOwner { require( newAddress != address(uniswapV2Router), "BABYTOKEN: The router already has that address" ); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; } function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "BABYTOKEN: Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees( address[] calldata accounts, bool excluded ) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setMarketingWallet(address payable wallet) external onlyOwner { _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) public onlyOwner { require( pair != uniswapV2Pair, "BABYTOKEN: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } 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() ) { swapping = true; uint256 marketingTokens = contractTokenBalance .mul(marketingFee) .div(totalFees); swapAndSendToFee(marketingTokens); uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div( totalFees ); swapAndLiquify(swapTokens); uint256 sellTokens = balanceOf(address(this)); 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) { uint256 fees = amount.mul(totalFees).div(100); if (automatedMarketMakerPairs[to]) { fees += amount.mul(1).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(0), 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
- Tech Audit- Dec,16th,2021 - Security Audit Report
[{"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"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"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":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"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":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","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":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","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":"newAddress","type":"address"}],"name":"updateUniswapV2Router","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
60806040526040516200493938038062004939833981016040819052620000269162000ef6565b8751889088906200003f90600390602085019062000d11565b5080516200005590600490602084019062000d11565b505050620000726200006c6200082660201b60201c565b6200082a565b8451600980546001600160a01b03199081166001600160a01b03938416179091556040870151600f805490921692169182179055331415620001115760405162461bcd60e51b815260206004820152602d60248201527f4f776e657220616e64206d61726b6574696e672077616c6c65742063616e6e6f60448201526c74206265207468652073616d6560981b60648201526084015b60405180910390fd5b8460046020020151601380546001600160a01b0319166001600160a01b0390921691821790556318e02bd96200014f6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200019157600080fd5b505af1158015620001a6573d6000803e3d6000fd5b50506013805460ff60a01b1916600160a01b17905550508351600b819055602080860151600c8190556040870151600d81905562000209939092620001f592906200088b811b620020c817901c565b6200088b60201b620020c81790919060201c565b600e81905560191015620002605760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f766572203235250000000000000000000000604482015260640162000108565b62000297620f424062000283600289620008a060201b620020db1790919060201c565b620008ae60201b620020e71790919060201c565b600a55620493e0601055620002be8560036020020151620008bc60201b620020f31760201c565b600880546001600160a01b0319166001600160a01b0392831690811790915560095460405163cd6dc68760e01b815292166004830152602482018590529063cd6dc68790604401600060405180830381600087803b1580156200032057600080fd5b505af115801562000335573d6000803e3d6000fd5b505050506000856001600581106200035d57634e487b7160e01b600052603260045260246000fd5b602002015190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a057600080fd5b505afa158015620003b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003db919062000ed9565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200042457600080fd5b505afa15801562000439573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045f919062000ed9565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004a857600080fd5b505af1158015620004bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e3919062000ed9565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620005228160016200096b565b60085460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b1580156200056957600080fd5b505af11580156200057e573d6000803e3d6000fd5b505060085460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b158015620005c857600080fd5b505af1158015620005dd573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620006076005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200064957600080fd5b505af11580156200065e573d6000803e3d6000fd5b505060085460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b158015620006aa57600080fd5b505af1158015620006bf573d6000803e3d6000fd5b505060085460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b1580156200070b57600080fd5b505af115801562000720573d6000803e3d6000fd5b5050505062000740620007386200087c60201b60201c565b600162000ada565b600f5462000759906001600160a01b0316600162000ada565b6200076630600162000ada565b620007846200077d6005546001600160a01b031690565b8962000c2c565b30620007986005546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260056001604051620007d692919062001007565b60405180910390a36040516001600160a01b0385169084156108fc029085906000818181858888f1935050505015801562000815573d6000803e3d6000fd5b505050505050505050505062001159565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031690565b600062000899828462001092565b9392505050565b6000620008998284620010ce565b6000620008998284620010ad565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b038116620009665760405162461bcd60e51b815260206004820152601660248201527f455243313136373a20637265617465206661696c656400000000000000000000604482015260640162000108565b919050565b6001600160a01b03821660009081526012602052604090205460ff161515811515141562000a0e5760405162461bcd60e51b815260206004820152604360248201527f42414259544f4b454e3a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a40162000108565b6001600160a01b0382166000908152601260205260409020805460ff1916821580159190911790915562000a9e5760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801562000a8457600080fd5b505af115801562000a99573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b0316331462000b365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000108565b6001600160a01b03821660009081526011602052604090205460ff161515811515141562000bcd5760405162461bcd60e51b815260206004820152603560248201527f42414259544f4b454e3a204163636f756e7420697320616c726561647920746860448201527f652076616c7565206f6620276578636c75646564270000000000000000000000606482015260840162000108565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821662000c845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000108565b806002600082825462000c98919062001092565b90915550506001600160a01b0382166000908152602081905260408120805483929062000cc790849062001092565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000d1f90620010f0565b90600052602060002090601f01602090048101928262000d43576000855562000d8e565b82601f1062000d5e57805160ff191683800117855562000d8e565b8280016001018555821562000d8e579182015b8281111562000d8e57825182559160200191906001019062000d71565b5062000d9c92915062000da0565b5090565b5b8082111562000d9c576000815560010162000da1565b80516001600160a01b03811681146200096657600080fd5b600082601f83011262000de0578081fd5b604051606081016001600160401b038111828210171562000e055762000e0562001143565b60405280836060810186101562000e1a578384fd5b835b600381101562000e3d57815183526020928301929091019060010162000e1c565b509195945050505050565b600082601f83011262000e59578081fd5b81516001600160401b0381111562000e755762000e7562001143565b602062000e8b601f8301601f191682016200105f565b828152858284870101111562000e9f578384fd5b835b8381101562000ebe57858101830151828201840152820162000ea1565b8381111562000ecf57848385840101525b5095945050505050565b60006020828403121562000eeb578081fd5b620008998262000db7565b6000806000806000806000806101c0898b03121562000f13578384fd5b88516001600160401b038082111562000f2a578586fd5b62000f388c838d0162000e48565b995060209150818b01518181111562000f4f578687fd5b62000f5d8d828e0162000e48565b9950505060408a015196508a607f8b011262000f77578485fd5b62000f8162001034565b8060608c016101008d018e81111562000f98578889fd5b885b600581101562000fc25762000faf8362000db7565b8552938501939185019160010162000f9a565b5082995062000fd28f8262000dcf565b98505050505050610160890151925062000ff06101808a0162000db7565b91506101a089015190509295985092959890939650565b60408101600884106200102a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60405160a081016001600160401b038111828210171562001059576200105962001143565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200108a576200108a62001143565b604052919050565b60008219821115620010a857620010a86200112d565b500190565b600082620010c957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620010eb57620010eb6200112d565b500290565b600181811c908216806200110557607f821691505b602082108114156200112757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6137d080620011696000396000f3fe60806040526004361061037a5760003560e01c8063715018a6116101d1578063afa4f3b211610102578063e2f45605116100a0578063f27fd2541161006f578063f27fd25414610a6f578063f2fde38b14610a8f578063f7c618c114610aaf578063ffa1ad7414610acf57600080fd5b8063e2f4560514610a0e578063e708a0f914610a24578063e7841ec014610a3a578063e98030c714610a4f57600080fd5b8063c0246668116100dc578063c024666814610968578063c492f04614610988578063c705c569146109a8578063dd62ed3e146109c857600080fd5b8063afa4f3b214610903578063b62496f514610923578063bdd4f29f1461095357600080fd5b80639c1b8af51161016f578063a8b9d24011610149578063a8b9d2401461083e578063a9059cbb1461085e578063ad56c13c1461087e578063adefd90c146108e357600080fd5b80639c1b8af5146107f3578063a26579ad14610809578063a457c2d71461081e57600080fd5b80638da5cb5b116101ab5780638da5cb5b1461078a57806395d89b41146107a857806398118cb4146107bd5780639a7a23d6146107d357600080fd5b8063715018a614610735578063871c128d1461074a57806388bdd9be1461076a57600080fd5b8063407133d2116102ab578063625e764c116102495780636843cd84116102235780636843cd84146106a95780636b67c4df146106c9578063700bb191146106df57806370a08231146106ff57600080fd5b8063625e764c1461065457806364b0f6531461067457806365b8dbc01461068957600080fd5b80634e71d92d116102855780634e71d92d146105c65780634ed080c7146105db5780634fbee193146105fb5780635d098b381461063457600080fd5b8063407133d2146105665780634144d9e41461058657806349bd5a5e146105a657600080fd5b806323b872dd1161031857806330bb4cff116102f257806330bb4cff146104f5578063313ce5671461050a57806331e79db014610526578063395093511461054657600080fd5b806323b872dd14610494578063241ec3be146104b45780632c1f5216146104d557600080fd5b806313114a9d1161035457806313114a9d146104035780631694505e1461042757806318160ddd1461045f5780631f46b1c61461047457600080fd5b806306fdde0314610386578063095ea7b3146103b15780630dcb2e89146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610ae4565b6040516103a8919061351d565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004613383565b610b76565b60405190151581526020016103a8565b3480156103ed57600080fd5b506104016103fc366004613467565b610b8c565b005b34801561040f57600080fd5b50610419600e5481565b6040519081526020016103a8565b34801561043357600080fd5b50600654610447906001600160a01b031681565b6040516001600160a01b0390911681526020016103a8565b34801561046b57600080fd5b50600254610419565b34801561048057600080fd5b5061040161048f36600461342f565b610c21565b3480156104a057600080fd5b506103d16104af3660046132ad565b610c69565b3480156104c057600080fd5b506013546103d190600160a01b900460ff1681565b3480156104e157600080fd5b50600854610447906001600160a01b031681565b34801561050157600080fd5b50610419610d13565b34801561051657600080fd5b50604051601281526020016103a8565b34801561053257600080fd5b5061040161054136600461323d565b610d95565b34801561055257600080fd5b506103d1610561366004613383565b610df1565b34801561057257600080fd5b50601354610447906001600160a01b031681565b34801561059257600080fd5b50600f54610447906001600160a01b031681565b3480156105b257600080fd5b50600754610447906001600160a01b031681565b3480156105d257600080fd5b50610401610e2d565b3480156105e757600080fd5b506104016105f6366004613467565b610eb4565b34801561060757600080fd5b506103d161061636600461323d565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561064057600080fd5b5061040161064f36600461323d565b610f4c565b34801561066057600080fd5b5061040161066f366004613467565b610f98565b34801561068057600080fd5b50610419610fdc565b34801561069557600080fd5b506104016106a436600461323d565b611021565b3480156106b557600080fd5b506104196106c436600461323d565b6112c3565b3480156106d557600080fd5b50610419600d5481565b3480156106eb57600080fd5b506104016106fa366004613467565b611348565b34801561070b57600080fd5b5061041961071a36600461323d565b6001600160a01b031660009081526020819052604090205490565b34801561074157600080fd5b5061040161142a565b34801561075657600080fd5b50610401610765366004613467565b611460565b34801561077657600080fd5b5061040161078536600461323d565b6115bd565b34801561079657600080fd5b506005546001600160a01b0316610447565b3480156107b457600080fd5b5061039b61196c565b3480156107c957600080fd5b50610419600c5481565b3480156107df57600080fd5b506104016107ee3660046132ed565b61197b565b3480156107ff57600080fd5b5061041960105481565b34801561081557600080fd5b50610419611a50565b34801561082a57600080fd5b506103d1610839366004613383565b611a95565b34801561084a57600080fd5b5061041961085936600461323d565b611b2e565b34801561086a57600080fd5b506103d1610879366004613383565b611b61565b34801561088a57600080fd5b5061089e61089936600461323d565b611b6e565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103a8565b3480156108ef57600080fd5b506104016108fe366004613467565b611c18565b34801561090f57600080fd5b5061040161091e366004613467565b611c5c565b34801561092f57600080fd5b506103d161093e36600461323d565b60126020526000908152604090205460ff1681565b34801561095f57600080fd5b50610419611c8b565b34801561097457600080fd5b506104016109833660046132ed565b611cd0565b34801561099457600080fd5b506104016109a33660046133ae565b611de6565b3480156109b457600080fd5b506103d16109c336600461323d565b611ed0565b3480156109d457600080fd5b506104196109e3366004613275565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a1a57600080fd5b50610419600a5481565b348015610a3057600080fd5b50610419600b5481565b348015610a4657600080fd5b50610419611f4e565b348015610a5b57600080fd5b50610401610a6a366004613467565b611f93565b348015610a7b57600080fd5b5061089e610a8a366004613467565b611fee565b348015610a9b57600080fd5b50610401610aaa36600461323d565b612030565b348015610abb57600080fd5b50600954610447906001600160a01b031681565b348015610adb57600080fd5b50610419600181565b606060038054610af39061370b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f9061370b565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b6000610b83338484612190565b50600192915050565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b8152600401610bb6906135b3565b60405180910390fd5b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e89906024015b600060405180830381600087803b158015610c0657600080fd5b505af1158015610c1a573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b8152600401610bb6906135b3565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000610c768484846122b4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cfb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb6565b610d088533858403612190565b506001949350505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610d5857600080fd5b505afa158015610d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d90919061347f565b905090565b6005546001600160a01b03163314610dbf5760405162461bcd60e51b8152600401610bb6906135b3565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401610bec565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b83918590610e2890869061369d565b612190565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610e7957600080fd5b505af1158015610e8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb1919061344b565b50565b6005546001600160a01b03163314610ede5760405162461bcd60e51b8152600401610bb6906135b3565b600b819055600d54600c54610eff9190610ef99084906120c8565b906120c8565b600e81905560191015610eb15760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610bb6565b6005546001600160a01b03163314610f765760405162461bcd60e51b8152600401610bb6906135b3565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610bb6906135b3565b600d819055600c54600b54610eff918391610ef9916120c8565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610d5857600080fd5b6005546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610bb6906135b3565b6006546001600160a01b03828116911614156110c05760405162461bcd60e51b815260206004820152602e60248201527f42414259544f4b454e3a2054686520726f7574657220616c726561647920686160448201526d732074686174206164647265737360901b6064820152608401610bb6565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b15801561115257600080fd5b505afa158015611166573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118a9190613259565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156111e757600080fd5b505afa1580156111fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121f9190613259565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561126757600080fd5b505af115801561127b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129f9190613259565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561130a57600080fd5b505afa15801561131e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611342919061347f565b92915050565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561139657600080fd5b505af11580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190613497565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b031633146114545760405162461bcd60e51b8152600401610bb6906135b3565b61145e6000612792565b565b6005546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610bb6906135b3565b62030d4081101580156114a057506207a1208111155b6115125760405162461bcd60e51b815260206004820152603f60248201527f42414259544f4b454e3a20676173466f7250726f63657373696e67206d75737460448201527f206265206265747765656e203230302c30303020616e64203530302c303030006064820152608401610bb6565b60105481141561158a5760405162461bcd60e51b815260206004820152603760248201527f42414259544f4b454e3a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610bb6565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b6005546001600160a01b031633146115e75760405162461bcd60e51b8152600401610bb6906135b3565b6008546001600160a01b038281169116141561166b5760405162461bcd60e51b815260206004820152603860248201527f42414259544f4b454e3a20546865206469766964656e6420747261636b65722060448201527f616c7265616479206861732074686174206164647265737300000000000000006064820152608401610bb6565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156116b357600080fd5b505afa1580156116c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116eb9190613259565b6001600160a01b0316146117815760405162461bcd60e51b815260206004820152605160248201527f42414259544f4b454e3a20546865206e6577206469766964656e64207472616360448201527f6b6572206d757374206265206f776e6564206279207468652042414259544f4b6064820152701153881d1bdad95b8818dbdb9d1c9858dd607a1b608482015260a401610bb6565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b1580156117c357600080fd5b505af11580156117d7573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b15801561181c57600080fd5b505af1158015611830573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db06118556005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561189657600080fd5b505af11580156118aa573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156118f557600080fd5b505af1158015611909573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610af39061370b565b6005546001600160a01b031633146119a55760405162461bcd60e51b8152600401610bb6906135b3565b6007546001600160a01b0383811691161415611a425760405162461bcd60e51b815260206004820152605060248201527f42414259544f4b454e3a205468652050616e63616b655377617020706169722060448201527f63616e6e6f742062652072656d6f7665642066726f6d206175746f6d6174656460648201526f4d61726b65744d616b6572506169727360801b608482015260a401610bb6565b611a4c82826127e4565b5050565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610d5857600080fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb6565b611b243385858403612190565b5060019392505050565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016112f2565b6000610b833384846122b4565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b158015611bc557600080fd5b505afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd919061331a565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611c425760405162461bcd60e51b8152600401610bb6906135b3565b600c819055600d54600b54610eff9190610ef990846120c8565b6005546001600160a01b03163314611c865760405162461bcd60e51b8152600401610bb6906135b3565b600a55565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b158015610d5857600080fd5b6005546001600160a01b03163314611cfa5760405162461bcd60e51b8152600401610bb6906135b3565b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611d875760405162461bcd60e51b815260206004820152603560248201527f42414259544f4b454e3a204163636f756e7420697320616c7265616479207468604482015274652076616c7565206f6620276578636c756465642760581b6064820152608401610bb6565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611e105760405162461bcd60e51b8152600401610bb6906135b3565b60005b82811015611e8f578160116000868685818110611e4057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e55919061323d565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e8781613746565b915050611e13565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611ec3939291906134c4565b60405180910390a1505050565b60085460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c5699060240160206040518083038186803b158015611f1657600080fd5b505afa158015611f2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611342919061344b565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610d5857600080fd5b6005546001600160a01b03163314611fbd5760405162461bcd60e51b8152600401610bb6906135b3565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610bec565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611bac565b6005546001600160a01b0316331461205a5760405162461bcd60e51b8152600401610bb6906135b3565b6001600160a01b0381166120bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb6565b610eb181612792565b60006120d4828461369d565b9392505050565b60006120d482846136d5565b60006120d482846136b5565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b03811661218b5760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610bb6565b919050565b6001600160a01b0383166121f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb6565b6001600160a01b0382166122535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166122da5760405162461bcd60e51b8152600401610bb6906135e8565b6001600160a01b0382166123005760405162461bcd60e51b8152600401610bb690613570565b601354600160a01b900460ff16156123815760135460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b15801561236857600080fd5b505af115801561237c573d6000803e3d6000fd5b505050505b80612397576123928383600061294e565b505050565b30600090815260208190526040902054600a54811080159081906123c55750600754600160a01b900460ff16155b80156123ea57506001600160a01b03851660009081526012602052604090205460ff16155b801561240457506005546001600160a01b03868116911614155b801561241e57506005546001600160a01b03858116911614155b156124b1576007805460ff60a01b1916600160a01b179055600e54600d546000916124549161244e9086906120db565b906120e7565b905061245f81612a9b565b600061247c600e5461244e600c54876120db90919063ffffffff16565b905061248781612c34565b306000908152602081905260409020546124a081612cbb565b50506007805460ff60a01b19169055505b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b9092048216159116806124ff57506001600160a01b03851660009081526011602052604090205460ff165b15612508575060005b801561258457600061252a606461244e600e54886120db90919063ffffffff16565b6001600160a01b03871660009081526012602052604090205490915060ff161561256b5761255e606461244e8760016120db565b612568908261369d565b90505b6125758582612e6b565b945061258287308361294e565b505b61258f86868661294e565b6008546001600160a01b031663e30443bc876125c0816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561260657600080fd5b505af1925050508015612617575060015b506008546001600160a01b031663e30443bc86612649816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561268f57600080fd5b505af19250505080156126a0575060015b50600754600160a01b900460ff1661278a576010546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b1580156126fe57600080fd5b505af192505050801561272e575060408051601f3d908101601f1916820190925261272b91810190613497565b60015b61273757612788565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156128855760405162461bcd60e51b815260206004820152604360248201527f42414259544f4b454e3a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a401610bb6565b6001600160a01b0382166000908152601260205260409020805460ff191682158015919091179091556129125760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156128f957600080fd5b505af115801561290d573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129745760405162461bcd60e51b8152600401610bb6906135e8565b6001600160a01b03821661299a5760405162461bcd60e51b8152600401610bb690613570565b6001600160a01b03831660009081526020819052604090205481811015612a125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a4990849061369d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161141c91815260200190565b50505050565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612adf57600080fd5b505afa158015612af3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b17919061347f565b9050612b2282612e77565b6009546040516370a0823160e01b8152306004820152600091612baa9184916001600160a01b0316906370a082319060240160206040518083038186803b158015612b6c57600080fd5b505afa158015612b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba4919061347f565b90612e6b565b600954600f5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb90604401602060405180830381600087803b158015612bfc57600080fd5b505af1158015612c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a95919061344b565b6000612c418260026120e7565b90506000612c4f8383612e6b565b905047612c5b83613035565b6000612c674783612e6b565b9050612c738382613184565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b612cc481612e77565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612d0857600080fd5b505afa158015612d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d40919061347f565b60095460085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b158015612d9657600080fd5b505af1158015612daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dce919061344b565b905080156123925760085460405163ba72a95560e01b8152600481018490526001600160a01b039091169063ba72a95590602401600060405180830381600087803b158015612e1c57600080fd5b505af1158015612e30573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39350019050611ec3565b60006120d482846136f4565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612ebc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612f1057600080fd5b505afa158015612f24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f489190613259565b81600181518110612f6957634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600954825191169082906002908110612fa857634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612fce9130911684612190565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d7959061300790859060009086903090429060040161362d565b600060405180830381600087803b15801561302157600080fd5b505af115801561278a573d6000803e3d6000fd5b604080516002808252606082018352600092602083019080368337019050509050308160008151811061307857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156130cc57600080fd5b505afa1580156130e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131049190613259565b8160018151811061312557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260065461314b9130911684612190565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061300790859060009086903090429060040161362d565b60065461319c9030906001600160a01b031684612190565b60065460405163f305d71960e01b8152306004820152602481018490526000604482018190526064820181905260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b15801561320457600080fd5b505af1158015613218573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c1a9190613497565b60006020828403121561324e578081fd5b81356120d481613777565b60006020828403121561326a578081fd5b81516120d481613777565b60008060408385031215613287578081fd5b823561329281613777565b915060208301356132a281613777565b809150509250929050565b6000806000606084860312156132c1578081fd5b83356132cc81613777565b925060208401356132dc81613777565b929592945050506040919091013590565b600080604083850312156132ff578182fd5b823561330a81613777565b915060208301356132a28161378c565b600080600080600080600080610100898b031215613336578384fd5b885161334181613777565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215613395578182fd5b82356133a081613777565b946020939093013593505050565b6000806000604084860312156133c2578283fd5b833567ffffffffffffffff808211156133d9578485fd5b818601915086601f8301126133ec578485fd5b8135818111156133fa578586fd5b8760208260051b850101111561340e578586fd5b602092830195509350508401356134248161378c565b809150509250925092565b600060208284031215613440578081fd5b81356120d48161378c565b60006020828403121561345c578081fd5b81516120d48161378c565b600060208284031215613478578081fd5b5035919050565b600060208284031215613490578081fd5b5051919050565b6000806000606084860312156134ab578283fd5b8351925060208401519150604084015190509250925092565b6040808252810183905260008460608301825b868110156135075782356134ea81613777565b6001600160a01b03168252602092830192909101906001016134d7565b5080925050508215156020830152949350505050565b6000602080835283518082850152825b818110156135495785810183015185820160400152820161352d565b8181111561355a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561367c5784516001600160a01b031683529383019391830191600101613657565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156136b0576136b0613761565b500190565b6000826136d057634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156136ef576136ef613761565b500290565b60008282101561370657613706613761565b500390565b600181811c9082168061371f57607f821691505b6020821081141561374057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561375a5761375a613761565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610eb157600080fd5b8015158114610eb157600080fdfea26469706673582212204d04db5e96f81b8f14894694a2ff645a2e7718d25055b74141acad79a2e6aa3e64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000314dc6448d9338c15b0a0000000000000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c5b265b6c8d51a821db80651dbb737ecf28bae080000000000000000000000000e1757b9d6501e60b2e4ca0d000e49532948cf6c000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000007536869625257440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045352574400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061037a5760003560e01c8063715018a6116101d1578063afa4f3b211610102578063e2f45605116100a0578063f27fd2541161006f578063f27fd25414610a6f578063f2fde38b14610a8f578063f7c618c114610aaf578063ffa1ad7414610acf57600080fd5b8063e2f4560514610a0e578063e708a0f914610a24578063e7841ec014610a3a578063e98030c714610a4f57600080fd5b8063c0246668116100dc578063c024666814610968578063c492f04614610988578063c705c569146109a8578063dd62ed3e146109c857600080fd5b8063afa4f3b214610903578063b62496f514610923578063bdd4f29f1461095357600080fd5b80639c1b8af51161016f578063a8b9d24011610149578063a8b9d2401461083e578063a9059cbb1461085e578063ad56c13c1461087e578063adefd90c146108e357600080fd5b80639c1b8af5146107f3578063a26579ad14610809578063a457c2d71461081e57600080fd5b80638da5cb5b116101ab5780638da5cb5b1461078a57806395d89b41146107a857806398118cb4146107bd5780639a7a23d6146107d357600080fd5b8063715018a614610735578063871c128d1461074a57806388bdd9be1461076a57600080fd5b8063407133d2116102ab578063625e764c116102495780636843cd84116102235780636843cd84146106a95780636b67c4df146106c9578063700bb191146106df57806370a08231146106ff57600080fd5b8063625e764c1461065457806364b0f6531461067457806365b8dbc01461068957600080fd5b80634e71d92d116102855780634e71d92d146105c65780634ed080c7146105db5780634fbee193146105fb5780635d098b381461063457600080fd5b8063407133d2146105665780634144d9e41461058657806349bd5a5e146105a657600080fd5b806323b872dd1161031857806330bb4cff116102f257806330bb4cff146104f5578063313ce5671461050a57806331e79db014610526578063395093511461054657600080fd5b806323b872dd14610494578063241ec3be146104b45780632c1f5216146104d557600080fd5b806313114a9d1161035457806313114a9d146104035780631694505e1461042757806318160ddd1461045f5780631f46b1c61461047457600080fd5b806306fdde0314610386578063095ea7b3146103b15780630dcb2e89146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610ae4565b6040516103a8919061351d565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004613383565b610b76565b60405190151581526020016103a8565b3480156103ed57600080fd5b506104016103fc366004613467565b610b8c565b005b34801561040f57600080fd5b50610419600e5481565b6040519081526020016103a8565b34801561043357600080fd5b50600654610447906001600160a01b031681565b6040516001600160a01b0390911681526020016103a8565b34801561046b57600080fd5b50600254610419565b34801561048057600080fd5b5061040161048f36600461342f565b610c21565b3480156104a057600080fd5b506103d16104af3660046132ad565b610c69565b3480156104c057600080fd5b506013546103d190600160a01b900460ff1681565b3480156104e157600080fd5b50600854610447906001600160a01b031681565b34801561050157600080fd5b50610419610d13565b34801561051657600080fd5b50604051601281526020016103a8565b34801561053257600080fd5b5061040161054136600461323d565b610d95565b34801561055257600080fd5b506103d1610561366004613383565b610df1565b34801561057257600080fd5b50601354610447906001600160a01b031681565b34801561059257600080fd5b50600f54610447906001600160a01b031681565b3480156105b257600080fd5b50600754610447906001600160a01b031681565b3480156105d257600080fd5b50610401610e2d565b3480156105e757600080fd5b506104016105f6366004613467565b610eb4565b34801561060757600080fd5b506103d161061636600461323d565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561064057600080fd5b5061040161064f36600461323d565b610f4c565b34801561066057600080fd5b5061040161066f366004613467565b610f98565b34801561068057600080fd5b50610419610fdc565b34801561069557600080fd5b506104016106a436600461323d565b611021565b3480156106b557600080fd5b506104196106c436600461323d565b6112c3565b3480156106d557600080fd5b50610419600d5481565b3480156106eb57600080fd5b506104016106fa366004613467565b611348565b34801561070b57600080fd5b5061041961071a36600461323d565b6001600160a01b031660009081526020819052604090205490565b34801561074157600080fd5b5061040161142a565b34801561075657600080fd5b50610401610765366004613467565b611460565b34801561077657600080fd5b5061040161078536600461323d565b6115bd565b34801561079657600080fd5b506005546001600160a01b0316610447565b3480156107b457600080fd5b5061039b61196c565b3480156107c957600080fd5b50610419600c5481565b3480156107df57600080fd5b506104016107ee3660046132ed565b61197b565b3480156107ff57600080fd5b5061041960105481565b34801561081557600080fd5b50610419611a50565b34801561082a57600080fd5b506103d1610839366004613383565b611a95565b34801561084a57600080fd5b5061041961085936600461323d565b611b2e565b34801561086a57600080fd5b506103d1610879366004613383565b611b61565b34801561088a57600080fd5b5061089e61089936600461323d565b611b6e565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016103a8565b3480156108ef57600080fd5b506104016108fe366004613467565b611c18565b34801561090f57600080fd5b5061040161091e366004613467565b611c5c565b34801561092f57600080fd5b506103d161093e36600461323d565b60126020526000908152604090205460ff1681565b34801561095f57600080fd5b50610419611c8b565b34801561097457600080fd5b506104016109833660046132ed565b611cd0565b34801561099457600080fd5b506104016109a33660046133ae565b611de6565b3480156109b457600080fd5b506103d16109c336600461323d565b611ed0565b3480156109d457600080fd5b506104196109e3366004613275565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a1a57600080fd5b50610419600a5481565b348015610a3057600080fd5b50610419600b5481565b348015610a4657600080fd5b50610419611f4e565b348015610a5b57600080fd5b50610401610a6a366004613467565b611f93565b348015610a7b57600080fd5b5061089e610a8a366004613467565b611fee565b348015610a9b57600080fd5b50610401610aaa36600461323d565b612030565b348015610abb57600080fd5b50600954610447906001600160a01b031681565b348015610adb57600080fd5b50610419600181565b606060038054610af39061370b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f9061370b565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b6000610b83338484612190565b50600192915050565b6005546001600160a01b03163314610bbf5760405162461bcd60e51b8152600401610bb6906135b3565b60405180910390fd5b600854604051630dcb2e8960e01b8152600481018390526001600160a01b0390911690630dcb2e89906024015b600060405180830381600087803b158015610c0657600080fd5b505af1158015610c1a573d6000803e3d6000fd5b5050505050565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b8152600401610bb6906135b3565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000610c768484846122b4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cfb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb6565b610d088533858403612190565b506001949350505050565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610d5857600080fd5b505afa158015610d6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d90919061347f565b905090565b6005546001600160a01b03163314610dbf5760405162461bcd60e51b8152600401610bb6906135b3565b60085460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db090602401610bec565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b83918590610e2890869061369d565b612190565b60085460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610e7957600080fd5b505af1158015610e8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb1919061344b565b50565b6005546001600160a01b03163314610ede5760405162461bcd60e51b8152600401610bb6906135b3565b600b819055600d54600c54610eff9190610ef99084906120c8565b906120c8565b600e81905560191015610eb15760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610bb6565b6005546001600160a01b03163314610f765760405162461bcd60e51b8152600401610bb6906135b3565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610bb6906135b3565b600d819055600c54600b54610eff918391610ef9916120c8565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610d5857600080fd5b6005546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610bb6906135b3565b6006546001600160a01b03828116911614156110c05760405162461bcd60e51b815260206004820152602e60248201527f42414259544f4b454e3a2054686520726f7574657220616c726561647920686160448201526d732074686174206164647265737360901b6064820152608401610bb6565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b15801561115257600080fd5b505afa158015611166573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118a9190613259565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156111e757600080fd5b505afa1580156111fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121f9190613259565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561126757600080fd5b505af115801561127b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129f9190613259565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b15801561130a57600080fd5b505afa15801561131e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611342919061347f565b92915050565b6008546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b15801561139657600080fd5b505af11580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190613497565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b031633146114545760405162461bcd60e51b8152600401610bb6906135b3565b61145e6000612792565b565b6005546001600160a01b0316331461148a5760405162461bcd60e51b8152600401610bb6906135b3565b62030d4081101580156114a057506207a1208111155b6115125760405162461bcd60e51b815260206004820152603f60248201527f42414259544f4b454e3a20676173466f7250726f63657373696e67206d75737460448201527f206265206265747765656e203230302c30303020616e64203530302c303030006064820152608401610bb6565b60105481141561158a5760405162461bcd60e51b815260206004820152603760248201527f42414259544f4b454e3a2043616e6e6f742075706461746520676173466f725060448201527f726f63657373696e6720746f2073616d652076616c75650000000000000000006064820152608401610bb6565b60105460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601055565b6005546001600160a01b031633146115e75760405162461bcd60e51b8152600401610bb6906135b3565b6008546001600160a01b038281169116141561166b5760405162461bcd60e51b815260206004820152603860248201527f42414259544f4b454e3a20546865206469766964656e6420747261636b65722060448201527f616c7265616479206861732074686174206164647265737300000000000000006064820152608401610bb6565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156116b357600080fd5b505afa1580156116c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116eb9190613259565b6001600160a01b0316146117815760405162461bcd60e51b815260206004820152605160248201527f42414259544f4b454e3a20546865206e6577206469766964656e64207472616360448201527f6b6572206d757374206265206f776e6564206279207468652042414259544f4b6064820152701153881d1bdad95b8818dbdb9d1c9858dd607a1b608482015260a401610bb6565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b1580156117c357600080fd5b505af11580156117d7573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b15801561181c57600080fd5b505af1158015611830573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db06118556005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561189657600080fd5b505af11580156118aa573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156118f557600080fd5b505af1158015611909573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b606060048054610af39061370b565b6005546001600160a01b031633146119a55760405162461bcd60e51b8152600401610bb6906135b3565b6007546001600160a01b0383811691161415611a425760405162461bcd60e51b815260206004820152605060248201527f42414259544f4b454e3a205468652050616e63616b655377617020706169722060448201527f63616e6e6f742062652072656d6f7665642066726f6d206175746f6d6174656460648201526f4d61726b65744d616b6572506169727360801b608482015260a401610bb6565b611a4c82826127e4565b5050565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610d5857600080fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb6565b611b243385858403612190565b5060019392505050565b6008546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016112f2565b6000610b833384846122b4565b60085460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b158015611bc557600080fd5b505afa158015611bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfd919061331a565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b03163314611c425760405162461bcd60e51b8152600401610bb6906135b3565b600c819055600d54600b54610eff9190610ef990846120c8565b6005546001600160a01b03163314611c865760405162461bcd60e51b8152600401610bb6906135b3565b600a55565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b158015610d5857600080fd5b6005546001600160a01b03163314611cfa5760405162461bcd60e51b8152600401610bb6906135b3565b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611d875760405162461bcd60e51b815260206004820152603560248201527f42414259544f4b454e3a204163636f756e7420697320616c7265616479207468604482015274652076616c7565206f6620276578636c756465642760581b6064820152608401610bb6565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611e105760405162461bcd60e51b8152600401610bb6906135b3565b60005b82811015611e8f578160116000868685818110611e4057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e55919061323d565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e8781613746565b915050611e13565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611ec3939291906134c4565b60405180910390a1505050565b60085460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c5699060240160206040518083038186803b158015611f1657600080fd5b505afa158015611f2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611342919061344b565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610d5857600080fd5b6005546001600160a01b03163314611fbd5760405162461bcd60e51b8152600401610bb6906135b3565b60085460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610bec565b600854604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611bac565b6005546001600160a01b0316331461205a5760405162461bcd60e51b8152600401610bb6906135b3565b6001600160a01b0381166120bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb6565b610eb181612792565b60006120d4828461369d565b9392505050565b60006120d482846136d5565b60006120d482846136b5565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b03811661218b5760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610bb6565b919050565b6001600160a01b0383166121f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb6565b6001600160a01b0382166122535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166122da5760405162461bcd60e51b8152600401610bb6906135e8565b6001600160a01b0382166123005760405162461bcd60e51b8152600401610bb690613570565b601354600160a01b900460ff16156123815760135460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b15801561236857600080fd5b505af115801561237c573d6000803e3d6000fd5b505050505b80612397576123928383600061294e565b505050565b30600090815260208190526040902054600a54811080159081906123c55750600754600160a01b900460ff16155b80156123ea57506001600160a01b03851660009081526012602052604090205460ff16155b801561240457506005546001600160a01b03868116911614155b801561241e57506005546001600160a01b03858116911614155b156124b1576007805460ff60a01b1916600160a01b179055600e54600d546000916124549161244e9086906120db565b906120e7565b905061245f81612a9b565b600061247c600e5461244e600c54876120db90919063ffffffff16565b905061248781612c34565b306000908152602081905260409020546124a081612cbb565b50506007805460ff60a01b19169055505b6007546001600160a01b03861660009081526011602052604090205460ff600160a01b9092048216159116806124ff57506001600160a01b03851660009081526011602052604090205460ff165b15612508575060005b801561258457600061252a606461244e600e54886120db90919063ffffffff16565b6001600160a01b03871660009081526012602052604090205490915060ff161561256b5761255e606461244e8760016120db565b612568908261369d565b90505b6125758582612e6b565b945061258287308361294e565b505b61258f86868661294e565b6008546001600160a01b031663e30443bc876125c0816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561260657600080fd5b505af1925050508015612617575060015b506008546001600160a01b031663e30443bc86612649816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561268f57600080fd5b505af19250505080156126a0575060015b50600754600160a01b900460ff1661278a576010546008546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b1580156126fe57600080fd5b505af192505050801561272e575060408051601f3d908101601f1916820190925261272b91810190613497565b60015b61273757612788565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156128855760405162461bcd60e51b815260206004820152604360248201527f42414259544f4b454e3a204175746f6d61746564206d61726b6574206d616b6560448201527f72207061697220697320616c72656164792073657420746f20746861742076616064820152626c756560e81b608482015260a401610bb6565b6001600160a01b0382166000908152601260205260409020805460ff191682158015919091179091556129125760085460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156128f957600080fd5b505af115801561290d573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129745760405162461bcd60e51b8152600401610bb6906135e8565b6001600160a01b03821661299a5760405162461bcd60e51b8152600401610bb690613570565b6001600160a01b03831660009081526020819052604090205481811015612a125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612a4990849061369d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161141c91815260200190565b50505050565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612adf57600080fd5b505afa158015612af3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b17919061347f565b9050612b2282612e77565b6009546040516370a0823160e01b8152306004820152600091612baa9184916001600160a01b0316906370a082319060240160206040518083038186803b158015612b6c57600080fd5b505afa158015612b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba4919061347f565b90612e6b565b600954600f5460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb90604401602060405180830381600087803b158015612bfc57600080fd5b505af1158015612c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a95919061344b565b6000612c418260026120e7565b90506000612c4f8383612e6b565b905047612c5b83613035565b6000612c674783612e6b565b9050612c738382613184565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b612cc481612e77565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015612d0857600080fd5b505afa158015612d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d40919061347f565b60095460085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292935060009291169063a9059cbb90604401602060405180830381600087803b158015612d9657600080fd5b505af1158015612daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dce919061344b565b905080156123925760085460405163ba72a95560e01b8152600481018490526001600160a01b039091169063ba72a95590602401600060405180830381600087803b158015612e1c57600080fd5b505af1158015612e30573d6000803e3d6000fd5b505060408051868152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39350019050611ec3565b60006120d482846136f4565b60408051600380825260808201909252600091602082016060803683370190505090503081600081518110612ebc57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612f1057600080fd5b505afa158015612f24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f489190613259565b81600181518110612f6957634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600954825191169082906002908110612fa857634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152600654612fce9130911684612190565b600654604051635c11d79560e01b81526001600160a01b0390911690635c11d7959061300790859060009086903090429060040161362d565b600060405180830381600087803b15801561302157600080fd5b505af115801561278a573d6000803e3d6000fd5b604080516002808252606082018352600092602083019080368337019050509050308160008151811061307857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156130cc57600080fd5b505afa1580156130e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131049190613259565b8160018151811061312557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260065461314b9130911684612190565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061300790859060009086903090429060040161362d565b60065461319c9030906001600160a01b031684612190565b60065460405163f305d71960e01b8152306004820152602481018490526000604482018190526064820181905260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b15801561320457600080fd5b505af1158015613218573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c1a9190613497565b60006020828403121561324e578081fd5b81356120d481613777565b60006020828403121561326a578081fd5b81516120d481613777565b60008060408385031215613287578081fd5b823561329281613777565b915060208301356132a281613777565b809150509250929050565b6000806000606084860312156132c1578081fd5b83356132cc81613777565b925060208401356132dc81613777565b929592945050506040919091013590565b600080604083850312156132ff578182fd5b823561330a81613777565b915060208301356132a28161378c565b600080600080600080600080610100898b031215613336578384fd5b885161334181613777565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215613395578182fd5b82356133a081613777565b946020939093013593505050565b6000806000604084860312156133c2578283fd5b833567ffffffffffffffff808211156133d9578485fd5b818601915086601f8301126133ec578485fd5b8135818111156133fa578586fd5b8760208260051b850101111561340e578586fd5b602092830195509350508401356134248161378c565b809150509250925092565b600060208284031215613440578081fd5b81356120d48161378c565b60006020828403121561345c578081fd5b81516120d48161378c565b600060208284031215613478578081fd5b5035919050565b600060208284031215613490578081fd5b5051919050565b6000806000606084860312156134ab578283fd5b8351925060208401519150604084015190509250925092565b6040808252810183905260008460608301825b868110156135075782356134ea81613777565b6001600160a01b03168252602092830192909101906001016134d7565b5080925050508215156020830152949350505050565b6000602080835283518082850152825b818110156135495785810183015185820160400152820161352d565b8181111561355a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561367c5784516001600160a01b031683529383019391830191600101613657565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156136b0576136b0613761565b500190565b6000826136d057634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156136ef576136ef613761565b500290565b60008282101561370657613706613761565b500390565b600181811c9082168061371f57607f821691505b6020821081141561374057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561375a5761375a613761565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610eb157600080fd5b8015158114610eb157600080fdfea26469706673582212204d04db5e96f81b8f14894694a2ff645a2e7718d25055b74141acad79a2e6aa3e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000314dc6448d9338c15b0a0000000000000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c5b265b6c8d51a821db80651dbb737ecf28bae080000000000000000000000000e1757b9d6501e60b2e4ca0d000e49532948cf6c000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000007536869625257440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045352574400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): ShibRWD
Arg [1] : symbol_ (string): SRWD
Arg [2] : totalSupply_ (uint256): 1000000000000000000000000000000000
Arg [3] : addrs (address[5]): 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE,0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,0xc5B265B6c8d51A821db80651DbB737ECf28BAE08,0x0E1757b9d6501e60B2e4Ca0D000e49532948CF6c,0xf4f071EB637b64fC78C9eA87DaCE4445D119CA35
Arg [4] : feeSettings (uint256[3]): 4,4,4
Arg [5] : minimumTokenBalanceForDividends_ (uint256): 10000000000000000000000000
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] : 000000000000000000000000c5b265b6c8d51a821db80651dbb737ecf28bae08
Arg [6] : 0000000000000000000000000e1757b9d6501e60b2e4ca0d000e49532948cf6c
Arg [7] : 000000000000000000000000f4f071eb637b64fc78c9ea87dace4445d119ca35
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [12] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [13] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [15] : 5368696252574400000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [17] : 5352574400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
86341:18961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8914:169;;;;;;;;;;-1:-1:-1;8914:169:0;;;;;:::i;:::-;;:::i;:::-;;;9206:14:1;;9199:22;9181:41;;9169:2;9154:18;8914:169:0;9136:92:1;96243:185:0;;;;;;;;;;-1:-1:-1;96243:185:0;;;;;:::i;:::-;;:::i;:::-;;86835:24;;;;;;;;;;;;;;;;;;;18574:25:1;;;18562:2;18547:18;86835:24:0;18529:76:1;86482:41:0;;;;;;;;;;-1:-1:-1;86482:41:0;;;;-1:-1:-1;;;;;86482:41:0;;;;;;-1:-1:-1;;;;;5309:32:1;;;5291:51;;5279:2;5264:18;86482:41:0;5246:102:1;7867:108:0;;;;;;;;;;-1:-1:-1;7955:12:0;;7867:108;;91393:101;;;;;;;;;;-1:-1:-1;91393:101:0;;;;;:::i;:::-;;:::i;9565:492::-;;;;;;;;;;-1:-1:-1;9565:492:0;;;;;:::i;:::-;;:::i;87322:25::-;;;;;;;;;;-1:-1:-1;87322:25:0;;;;-1:-1:-1;;;87322:25:0;;;;;;86597:47;;;;;;;;;;-1:-1:-1;86597:47:0;;;;-1:-1:-1;;;;;86597:47:0;;;96629:141;;;;;;;;;;;;;:::i;7709:93::-;;;;;;;;;;-1:-1:-1;7709:93:0;;7792:2;20713:36:1;;20701:2;20686:18;7709:93:0;20668:87:1;97283:130:0;;;;;;;;;;-1:-1:-1;97283:130:0;;;;;:::i;:::-;;:::i;10466:215::-;;;;;;;;;;-1:-1:-1;10466:215:0;;;;;:::i;:::-;;:::i;87284:31::-;;;;;;;;;;-1:-1:-1;87284:31:0;;;;-1:-1:-1;;;;;87284:31:0;;;86868:38;;;;;;;;;;-1:-1:-1;86868:38:0;;;;-1:-1:-1;;;;;86868:38:0;;;86530:28;;;;;;;;;;-1:-1:-1;86530:28:0;;;;-1:-1:-1;;;;;86530:28:0;;;98758:103;;;;;;;;;;;;;:::i;93982:238::-;;;;;;;;;;-1:-1:-1;93982:238:0;;;;;:::i;:::-;;:::i;96778:126::-;;;;;;;;;;-1:-1:-1;96778:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;96868:28:0;96844:4;96868:28;;;:19;:28;;;;;;;;;96778:126;93852:122;;;;;;;;;;-1:-1:-1;93852:122:0;;;;;:::i;:::-;;:::i;94467:232::-;;;;;;;;;;-1:-1:-1;94467:232:0;;;;;:::i;:::-;;:::i;99007:142::-;;;;;;;;;;;;;:::i;92620:540::-;;;;;;;;;;-1:-1:-1;92620:540:0;;;;;:::i;:::-;;:::i;97104:171::-;;;;;;;;;;-1:-1:-1;97104:171:0;;;;;:::i;:::-;;:::i;86801:27::-;;;;;;;;;;;;;;;;98340:410;;;;;;;;;;-1:-1:-1;98340: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;95498:488::-;;;;;;;;;;-1:-1:-1;95498:488:0;;;;;:::i;:::-;;:::i;91659:953::-;;;;;;;;;;-1:-1:-1;91659:953:0;;;;;:::i;:::-;;:::i;17776:87::-;;;;;;;;;;-1:-1:-1;17849:6:0;;-1:-1:-1;;;;;17849:6:0;17776:87;;6966:104;;;;;;;;;;;;;:::i;86767:27::-;;;;;;;;;;;;;;;;94707:327;;;;;;;;;;-1:-1:-1;94707:327:0;;;;;:::i;:::-;;:::i;86915:31::-;;;;;;;;;;;;;;;;96126:109;;;;;;;;;;;;;:::i;11184:413::-;;;;;;;;;;-1:-1:-1;11184:413:0;;;;;:::i;:::-;;:::i;96912:184::-;;;;;;;;;;-1:-1:-1;96912:184:0;;;;;:::i;:::-;;:::i;8378:175::-;;;;;;;;;;-1:-1:-1;8378:175:0;;;;;:::i;:::-;;:::i;97612:351::-;;;;;;;;;;-1:-1:-1;97612:351:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6999:32:1;;;6981:51;;7063:2;7048:18;;7041:34;;;;7091:18;;;7084:34;;;;7149:2;7134:18;;7127:34;;;;7192:3;7177:19;;7170:35;7019:3;7221:19;;7214:35;7280:3;7265:19;;7258:35;7324:3;7309:19;;7302:35;6968:3;6953:19;97612:351:0;6935:408:1;94228:231:0;;;;;;;;;;-1:-1:-1;94228:231:0;;;;;:::i;:::-;;:::i;91539:112::-;;;;;;;;;;-1:-1:-1;91539:112:0;;;;;:::i;:::-;;:::i;87218:57::-;;;;;;;;;;-1:-1:-1;87218:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;96436:185;;;;;;;;;;;;;:::i;93168:338::-;;;;;;;;;;-1:-1:-1;93168:338:0;;;;;:::i;:::-;;:::i;93514:330::-;;;;;;;;;;-1:-1:-1;93514:330:0;;;;;:::i;:::-;;:::i;97421:183::-;;;;;;;;;;-1:-1:-1;97421: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;86688:33;;;;;;;;;;;;;;;;86730:30;;;;;;;;;;;;;;;;98869:130;;;;;;;;;;;;;:::i;95994:124::-;;;;;;;;;;-1:-1:-1;95994:124:0;;;;;:::i;:::-;;:::i;97971:361::-;;;;;;;;;;-1:-1:-1;97971:361:0;;;;;:::i;:::-;;:::i;18676:192::-;;;;;;;;;;-1:-1:-1;18676:192:0;;;;;:::i;:::-;;:::i;86653:26::-;;;;;;;;;;-1:-1:-1;86653:26:0;;;;-1:-1:-1;;;;;86653:26:0;;;86438:35;;;;;;;;;;;;86472:1;86438: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;96243:185::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;;;;;;;;;96359:15:::1;::::0;:61:::1;::::0;-1:-1:-1;;;96359:61:0;;::::1;::::0;::::1;18574:25:1::0;;;-1:-1:-1;;;;;96359:15:0;;::::1;::::0;:53:::1;::::0;18547:18:1;;96359:61:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;96243:185:::0;:::o;91393:101::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;91463:13:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;91463:23:0::1;-1:-1:-1::0;;;;91463:23:0;;::::1;::::0;;;::::1;::::0;;91393: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;;14892:2:1;9842:79:0;;;14874:21:1;14931:2;14911:18;;;14904:30;14970:34;14950:18;;;14943:62;-1:-1:-1;;;15021:18:1;;;15014:38;15069:19;;9842:79:0;14864: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;96629:141::-;96719:15;;:43;;;-1:-1:-1;;;96719:43:0;;;;96692:7;;-1:-1:-1;;;;;96719:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;96712:50;;96629:141;:::o;97283:130::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;97360:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;97360:45:0;;-1:-1:-1;;;;;5309:32:1;;;97360:45:0::1;::::0;::::1;5291:51:1::0;97360:15:0;;::::1;::::0;:36:::1;::::0;5264:18:1;;97360:45:0::1;5246: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;98758:103::-;98795:15;;:58;;-1:-1:-1;;;98795:58:0;;98834:10;98795:58;;;5537:51:1;98795:15:0;5604:18:1;;;5597:50;-1:-1:-1;;;;;98795:15:0;;;;:30;;5510:18:1;;98795:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;98758:103::o;93982:238::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;94055:15:::1;:23:::0;;;94139:12:::1;::::0;94121::::1;::::0;94101:51:::1;::::0;94139:12;94101:33:::1;::::0;94073:5;;94101:19:::1;:33::i;:::-;:37:::0;::::1;:51::i;:::-;94089:9;:63:::0;;;94184:2:::1;-1:-1:-1::0;94171:15:0::1;94163:49;;;::::0;-1:-1:-1;;;94163:49:0;;13277:2:1;94163:49:0::1;::::0;::::1;13259:21:1::0;13316:2;13296:18;;;13289:30;-1:-1:-1;;;13335:18:1;;;13328:51;13396:18;;94163:49:0::1;13249:171:1::0;93852:122:0;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;93934:23:::1;:32:::0;;-1:-1:-1;;;;;;93934:32:0::1;-1:-1:-1::0;;;;;93934:32:0;;;::::1;::::0;;;::::1;::::0;;93852:122::o;94467:232::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;94537:12:::1;:20:::0;;;94600:12:::1;::::0;94580:15:::1;::::0;:51:::1;::::0;94552:5;;94580:33:::1;::::0;:19:::1;:33::i;99007:142::-:0;99100:15;;:41;;;-1:-1:-1;;;99100:41:0;;;;99073:7;;-1:-1:-1;;;;;99100:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;92620:540;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;92743:15:::1;::::0;-1:-1:-1;;;;;92721:38:0;;::::1;92743:15:::0;::::1;92721:38;;92699:134;;;::::0;-1:-1:-1;;;92699:134:0;;16084:2:1;92699:134:0::1;::::0;::::1;16066:21:1::0;16123:2;16103:18;;;16096:30;16162:34;16142:18;;;16135:62;-1:-1:-1;;;16213:18:1;;;16206:44;16267:19;;92699:134:0::1;16056:236:1::0;92699:134:0::1;92891:15;::::0;92849:59:::1;::::0;-1:-1:-1;;;;;92891:15:0;;::::1;::::0;92849:59;::::1;::::0;::::1;::::0;92891:15:::1;::::0;92849:59:::1;92919:15;:48:::0;;-1:-1:-1;;;;;;92919:48:0::1;-1:-1:-1::0;;;;;92919:48:0;::::1;::::0;;::::1;::::0;;;93021:25:::1;::::0;;-1:-1:-1;;;93021:25:0;;;;-1:-1:-1;;92919:48:0;93021:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;92919:48;93021:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;93003:69:0::1;;93081:4;93088:15;;;;;;;;;-1:-1:-1::0;;;;;93088:15:0::1;-1:-1:-1::0;;;;;93088:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;93003:108;::::0;-1:-1:-1;;;;;;93003:108:0::1;::::0;;;;;;-1:-1:-1;;;;;6183:15:1;;;93003:108:0::1;::::0;::::1;6165:34:1::0;6235:15;;6215:18;;;6208:43;6100:18;;93003:108:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;93122:13;:30:::0;;-1:-1:-1;;;;;;93122:30:0::1;-1:-1:-1::0;;;;;93122:30:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;92620:540:0:o;97104:171::-;97233:15;;:34;;-1:-1:-1;;;97233:34:0;;-1:-1:-1;;;;;5309:32:1;;;97233:34:0;;;5291:51:1;97201:7:0;;97233:15;;:25;;5264:18:1;;97233:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;97226:41;97104:171;-1:-1:-1;;97104:171:0:o;98340:410::-;98522:15;;:28;;-1:-1:-1;;;;;;98522:28:0;;;;;18574:25:1;;;98420:18:0;;;;;;-1:-1:-1;;;;;98522:15:0;;:23;;18547:18:1;;98522:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;98566:176;;;20406:25:1;;;20462:2;20447:18;;20440:34;;;20490:18;;;20483:34;;;20548:2;20533:18;;20526:34;;;98405:145:0;;-1:-1:-1;98405:145:0;;-1:-1:-1;98405:145:0;-1:-1:-1;98722:9:0;;98684:5;;98566:176;;20393:3:1;20378:19;98566:176:0;;;;;;;;98340: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;95498:488::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;95610:6:::1;95598:8;:18;;:40;;;;;95632:6;95620:8;:18;;95598:40;95576:153;;;::::0;-1:-1:-1;;;95576:153:0;;11628:2:1;95576:153:0::1;::::0;::::1;11610:21:1::0;11667:2;11647:18;;;11640:30;11706:34;11686:18;;;11679:62;11777:33;11757:18;;;11750:61;11828:19;;95576:153:0::1;11600:253:1::0;95576:153:0::1;95774:16;;95762:8;:28;;95740:133;;;::::0;-1:-1:-1;;;95740:133:0;;17800:2:1;95740:133:0::1;::::0;::::1;17782:21:1::0;17839:2;17819:18;;;17812:30;17878:34;17858:18;;;17851:62;17949:25;17929:18;;;17922:53;17992:19;;95740:133:0::1;17772:245:1::0;95740:133:0::1;95923:16;::::0;95889:51:::1;::::0;95913:8;;95889:51:::1;::::0;;;::::1;95951:16;:27:::0;95498:488::o;91659:953::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;91782:15:::1;::::0;-1:-1:-1;;;;;91760:38:0;;::::1;91782:15:::0;::::1;91760:38;;91738:144;;;::::0;-1:-1:-1;;;91738:144:0;;13978:2:1;91738:144:0::1;::::0;::::1;13960:21:1::0;14017:2;13997:18;;;13990:30;14056:34;14036:18;;;14029:62;14127:26;14107:18;;;14100:54;14171:19;;91738:144:0::1;13950:246:1::0;91738:144:0::1;91895:43;91988:10;91895:115;;92083:4;-1:-1:-1::0;;;;;92045:43:0::1;:18;-1:-1:-1::0;;;;;92045:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;92045:43:0::1;;92023:174;;;::::0;-1:-1:-1;;;92023:174:0;;17310:2:1;92023:174:0::1;::::0;::::1;17292:21:1::0;17349:2;17329:18;;;17322:30;17388:34;17368:18;;;17361:62;17459:34;17439:18;;;17432:62;-1:-1:-1;;;17510:19:1;;;17503:48;17568:19;;92023:174:0::1;17282:311:1::0;92023:174:0::1;92210:68;::::0;-1:-1:-1;;;92210:68:0;;-1:-1:-1;;;;;92210:39:0;::::1;:68;::::0;::::1;5291:51:1::0;;;92210:39:0;::::1;::::0;5264:18:1;;92210:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;92289:54:0::1;::::0;-1:-1:-1;;;92289:54:0;;92337:4:::1;92289:54;::::0;::::1;5291:51:1::0;-1:-1:-1;;;;;92289:39:0;::::1;::::0;-1:-1:-1;92289:39:0::1;::::0;-1:-1:-1;5264:18:1;;92289:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;92354:18;-1:-1:-1::0;;;;;92354:39:0::1;;92394:7;17849:6:::0;;-1:-1:-1;;;;;17849:6:0;;17776:87;92394:7:::1;92354:48;::::0;-1:-1:-1;;;;;;92354:48:0::1;::::0;;;;;;-1:-1:-1;;;;;5309:32:1;;;92354:48:0::1;::::0;::::1;5291:51:1::0;5264:18;;92354:48:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;92461:15:0::1;::::0;92413:65:::1;::::0;-1:-1:-1;;;92413:65:0;;-1:-1:-1;;;;;92461:15:0;;::::1;92413:65;::::0;::::1;5291:51:1::0;92413:39:0;;::::1;::::0;-1:-1:-1;92413:39:0::1;::::0;-1:-1:-1;5264:18:1;;92413:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;92538:15:0::1;::::0;92496:59:::1;::::0;-1:-1:-1;;;;;92538:15:0;;::::1;::::0;-1:-1:-1;92496:59:0;;::::1;::::0;-1:-1:-1;92496:59:0::1;::::0;92538:15:::1;::::0;92496:59:::1;92568:15;:36:::0;;-1:-1:-1;;;;;;92568:36:0::1;-1:-1:-1::0;;;;;92568:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;91659:953:0:o;6966:104::-;7022:13;7055:7;7048:14;;;;;:::i;94707:327::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;94851:13:::1;::::0;-1:-1:-1;;;;;94843:21:0;;::::1;94851:13:::0;::::1;94843:21;;94821:151;;;::::0;-1:-1:-1;;;94821:151:0;;14403:2:1;94821:151:0::1;::::0;::::1;14385:21:1::0;14442:2;14422:18;;;14415:30;14481:34;14461:18;;;14454:62;14552:34;14532:18;;;14525:62;-1:-1:-1;;;14603:19:1;;;14596:47;14660:19;;94821:151:0::1;14375:310:1::0;94821:151:0::1;94985:41;95014:4;95020:5;94985:28;:41::i;:::-;94707:327:::0;;:::o;96126:109::-;96200:15;;:27;;;-1:-1:-1;;;96200:27:0;;;;96173:7;;-1:-1:-1;;;;;96200: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;;18224:2:1;11366:85:0;;;18206:21:1;18263:2;18243:18;;;18236:30;18302:34;18282:18;;;18275:62;-1:-1:-1;;;18353:18:1;;;18346:35;18398:19;;11366:85:0;18196: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;96912:184::-;97041:15;;:47;;-1:-1:-1;;;97041:47:0;;-1:-1:-1;;;;;5309:32:1;;;97041:47:0;;;5291:51:1;97009:7:0;;97041:15;;:38;;5264:18:1;;97041:47:0;5246:102:1;8378:175:0;8464:4;8481:42;4333:10;8505:9;8516:6;8481:9;:42::i;97612:351::-;97920:15;;:35;;-1:-1:-1;;;97920:35:0;;-1:-1:-1;;;;;5309:32:1;;;97920:35:0;;;5291:51:1;97726:7:0;;;;;;;;;;;;;;;;97920:15;;;:26;;5264:18:1;;97920:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;97913:42;;;;;;;;;;;;;;;;97612:351;;;;;;;;;:::o;94228:231::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;94297:12:::1;:20:::0;;;94378:12:::1;::::0;94340:15:::1;::::0;:51:::1;::::0;94378:12;94340:33:::1;::::0;94312:5;94340:19:::1;:33::i;91539:112::-:0;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;91616:18:::1;:27:::0;91539:112::o;96436:185::-;96564:15;;:49;;;-1:-1:-1;;;96564:49:0;;;;96532:7;;-1:-1:-1;;;;;96564:15:0;;:47;;:49;;;;;;;;;;;;;;:15;:49;;;;;;;;;;93168:338;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;93275:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;93253:143;;;::::0;-1:-1:-1;;;93253:143:0;;15662:2:1;93253:143:0::1;::::0;::::1;15644:21:1::0;15701:2;15681:18;;;15674:30;15740:34;15720:18;;;15713:62;-1:-1:-1;;;15791:18:1;;;15784:51;15852:19;;93253:143:0::1;15634:243:1::0;93253:143:0::1;-1:-1:-1::0;;;;;93407:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;93407:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;93464:34;;9181:41:1;;;93464:34:0::1;::::0;9154:18:1;93464:34:0::1;;;;;;;93168:338:::0;;:::o;93514:330::-;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;93657:9:::1;93652:116;93672:19:::0;;::::1;93652:116;;;93748:8;93713:19;:32;93733:8;;93742:1;93733:11;;;;;-1:-1:-1::0;;;93733:11:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;93713:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;93713:32:0;:43;;-1:-1:-1;;93713:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;93693:3;::::1;::::0;::::1;:::i;:::-;;;;93652:116;;;;93785:51;93817:8;;93827;93785:51;;;;;;;;:::i;:::-;;;;;;;;93514:330:::0;;;:::o;97421:183::-;97548:15;;:48;;-1:-1:-1;;;97548:48:0;;-1:-1:-1;;;;;5309:32:1;;;97548:48:0;;;5291:51:1;97519:4:0;;97548:15;;:39;;5264:18:1;;97548:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;98869:130::-;98952:15;;:39;;;-1:-1:-1;;;98952:39:0;;;;98925:7;;-1:-1:-1;;;;;98952:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;95994:124;17849:6;;-1:-1:-1;;;;;17849:6:0;4333:10;17996:23;17988:68;;;;-1:-1:-1;;;17988:68:0;;;;;;;:::i;:::-;96068:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;96068:42:0;;::::1;::::0;::::1;18574:25:1::0;;;-1:-1:-1;;;;;96068:15:0;;::::1;::::0;:31:::1;::::0;18547:18:1;;96068:42:0::1;18529:76:1::0;97971:361:0;98284:15;;:40;;-1:-1:-1;;;98284:40:0;;;;;18574:25:1;;;98090:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;98284:15:0;;;;:33;;18547:18:1;;98284:40:0;18529: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;;12060:2:1;18757:73:0::1;::::0;::::1;12042:21:1::0;12099:2;12079:18;;;12072:30;12138:34;12118:18;;;12111:62;-1:-1:-1;;;12189:18:1;;;12182:36;12235:19;;18757:73:0::1;12032:228:1::0;18757:73:0::1;18841:19;18851:8;18841:9;:19::i;21862:98::-:0;21920:7;21947:5;21951:1;21947;:5;:::i;:::-;21940:12;21862:98;-1:-1:-1;;;21862:98:0:o;22600:::-;22658:7;22685:5;22689:1;22685;:5;:::i;22999:98::-;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;;13627:2:1;27451:57:0;;;13609:21:1;13666:2;13646:18;;;13639:30;-1:-1:-1;;;13685:18:1;;;13678:52;13747:18;;27451:57:0;13599:172:1;27451:57:0;26992:524;;;:::o;14868:380::-;-1:-1:-1;;;;;15004:19:0;;14996:68;;;;-1:-1:-1;;;14996:68:0;;16905:2:1;14996:68:0;;;16887:21:1;16944:2;16924:18;;;16917:30;16983:34;16963:18;;;16956:62;-1:-1:-1;;;17034:18:1;;;17027:34;17078:19;;14996:68:0;16877:226:1;14996:68:0;-1:-1:-1;;;;;15083:21:0;;15075:68;;;;-1:-1:-1;;;15075:68:0;;12467:2:1;15075:68:0;;;12449:21:1;12506:2;12486:18;;;12479:30;12545:34;12525:18;;;12518:62;-1:-1:-1;;;12596:18:1;;;12589:32;12638:19;;15075:68:0;12439:224:1;15075:68:0;-1:-1:-1;;;;;15156:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15208:32;;18574:25:1;;;15208:32:0;;18547:18:1;15208:32:0;;;;;;;14868:380;;;:::o;99157:2668::-;-1:-1:-1;;;;;99289:18:0;;99281:68;;;;-1:-1:-1;;;99281:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;99368:16:0;;99360:64;;;;-1:-1:-1;;;99360:64:0;;;;;;;:::i;:::-;99441:13;;-1:-1:-1;;;99441:13:0;;;;99437:94;;;99471:11;;:48;;-1:-1:-1;;;99471:48:0;;-1:-1:-1;;;;;6520:15:1;;;99471:48:0;;;6502:34:1;6572:15;;;6552:18;;;6545:43;6604:18;;;6597:34;;;99471:11:0;;;;:30;;6437:18:1;;99471:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99437:94;99547:11;99543:93;;99575:28;99591:4;99597:2;99601:1;99575:15;:28::i;:::-;99157:2668;;;:::o;99543:93::-;99697:4;99648:28;8139:18;;;;;;;;;;;99755;;99731:42;;;;;;;99804:33;;-1:-1:-1;99829:8:0;;-1:-1:-1;;;99829:8:0;;;;99828:9;99804:33;:82;;;;-1:-1:-1;;;;;;99855:31:0;;;;;;:25;:31;;;;;;;;99854:32;99804:82;:114;;;;-1:-1:-1;17849:6:0;;-1:-1:-1;;;;;99903:15:0;;;17849:6;;99903:15;;99804:114;:144;;;;-1:-1:-1;17849:6:0;;-1:-1:-1;;;;;99935:13:0;;;17849:6;;99935:13;;99804:144;99786:702;;;99975:8;:15;;-1:-1:-1;;;;99975:15:0;-1:-1:-1;;;99975:15:0;;;100112:9;;100076:12;;99975:15;;100033:89;;:56;;:20;;:42;:56::i;:::-;:78;;:89::i;:::-;100007:115;;100137:33;100154:15;100137:16;:33::i;:::-;100187:18;100208:85;100269:9;;100208:38;100233:12;;100208:20;:24;;:38;;;;:::i;:85::-;100187:106;;100308:26;100323:10;100308:14;:26::i;:::-;100390:4;100351:18;8139;;;;;;;;;;;100411:32;8139:18;100411:20;:32::i;:::-;-1:-1:-1;;100460:8:0;:16;;-1:-1:-1;;;;100460:16:0;;;-1:-1:-1;99786:702:0;100516:8;;-1:-1:-1;;;;;100626:25:0;;100500:12;100626:25;;;:19;:25;;;;;;100516:8;-1:-1:-1;;;100516:8:0;;;;;100515:9;;100626:25;;:52;;-1:-1:-1;;;;;;100655:23:0;;;;;;:19;:23;;;;;;;;100626:52;100622:100;;;-1:-1:-1;100705:5:0;100622:100;100738:7;100734:298;;;100762:12;100777:30;100803:3;100777:21;100788:9;;100777:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;100826:29:0;;;;;;:25;:29;;;;;;100762:45;;-1:-1:-1;100826:29:0;;100822:100;;;100884:22;100902:3;100884:13;:6;100895:1;100884:10;:13::i;:22::-;100876:30;;;;:::i;:::-;;;100822:100;100945:16;:6;100956:4;100945:10;:16::i;:::-;100936:25;;100978:42;100994:4;101008;101015;100978:15;:42::i;:::-;100734:298;;101044:33;101060:4;101066:2;101070:6;101044:15;:33::i;:::-;101107:15;;-1:-1:-1;;;;;101107:15:0;:26;101142:4;101149:15;101142:4;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;101149:15;101107:58;;-1:-1:-1;;;;;;101107:58:0;;;;;;;-1:-1:-1;;;;;5866:32:1;;;101107:58:0;;;5848:51:1;5915:18;;;5908:34;5821:18;;101107:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101090:96;101200:15;;-1:-1:-1;;;;;101200:15:0;:26;101235:2;101240:13;101235:2;-1:-1:-1;;;;;8139:18:0;8112:7;8139:18;;;;;;;;;;;;8038:127;101240:13;101200:54;;-1:-1:-1;;;;;;101200:54:0;;;;;;;-1:-1:-1;;;;;5866:32:1;;;101200:54:0;;;5848:51:1;5915:18;;;5908:34;5821:18;;101200:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101196:70;101283:8;;-1:-1:-1;;;101283:8:0;;;;101278:540;;101322:16;;101359:15;;:28;;-1:-1:-1;;;;;;101359:28:0;;;;;18574:25:1;;;-1:-1:-1;;;;;101359:15:0;;;;:23;;18547:18:1;;101359:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;101359:28:0;;;;;;;;-1:-1:-1;;101359:28:0;;;;;;;;;;;;:::i;:::-;;;101355:452;;;;;101551:231;;;20406:25:1;;;20462:2;20447:18;;20440:34;;;20490:18;;;20483:34;;;20548:2;20533:18;;20526:34;;;101754:9:0;;101701:4;;101551:231;;20393:3:1;20378:19;101551:231:0;;;;;;;101388:410;;;101355:452;101278:540;;99157:2668;;;;;;:::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;95042:448::-;-1:-1:-1;;;;;95147:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;95125:157;;;;-1:-1:-1;;;95125:157:0;;11152:2:1;95125:157:0;;;11134:21:1;11191:2;11171:18;;;11164:30;11230:34;11210:18;;;11203:62;11301:34;11281:18;;;11274:62;-1:-1:-1;;;11352:19:1;;;11345:34;11396:19;;95125:157:0;11124:297:1;95125:157:0;-1:-1:-1;;;;;95293:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;95293:39:0;;;;;;;;;;;;95345:80;;95371:15;;:42;;-1:-1:-1;;;95371:42:0;;-1:-1:-1;;;;;5309:32:1;;;95371:42:0;;;5291:51:1;95371:15:0;;;;:36;;5264:18:1;;95371:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95345:80;95442:40;;;;;;-1:-1:-1;;;;;95442:40:0;;;;;;;;95042:448;;:::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;;12870:2:1;12496:74:0;;;12852:21:1;12909:2;12889:18;;;12882:30;12948:34;12928:18;;;12921:62;-1:-1:-1;;;12999:18:1;;;12992:36;13045:19;;12496:74:0;12842: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;;;;18574:25:1;;18562:2;18547:18;;18529:76;12766:46:0;12087:733;;;;:::o;101833:406::-;101930:11;;101923:68;;-1:-1:-1;;;101923:68:0;;101975:4;101923:68;;;5291:51:1;101894:26:0;;-1:-1:-1;;;;;101930:11:0;;101923:29;;5264:18:1;;101923:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;101894:97;;102004:25;102022:6;102004:17;:25::i;:::-;102069:11;;102062:44;;-1:-1:-1;;;102062:44:0;;102100:4;102062:44;;;5291:51:1;102040:18:0;;102061:94;;102126:18;;-1:-1:-1;;;;;102069:11:0;;102062:29;;5264:18:1;;102062:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;102061:50;;:94::i;:::-;102173:11;;102195:23;;102166:65;;-1:-1:-1;;;102166:65:0;;-1:-1:-1;;;;;102195:23:0;;;102166:65;;;5848:51:1;5915:18;;;5908:34;;;102040:115:0;;-1:-1:-1;102173:11:0;;102166:28;;5821:18:1;;102166:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;102247:923::-;102357:12;102372:13;:6;102383:1;102372:10;:13::i;:::-;102357:28;-1:-1:-1;102396:17:0;102416:16;:6;102357:28;102416:10;:16::i;:::-;102396:36;-1:-1:-1;102735:21:0;102801:22;102818:4;102801:16;:22::i;:::-;102954:18;102975:41;:21;103001:14;102975:25;:41::i;:::-;102954:62;;103066:35;103079:9;103090:10;103066:12;:35::i;:::-;103119:43;;;20053:25:1;;;20109:2;20094:18;;20087:34;;;20137:18;;;20130:34;;;103119:43:0;;20041:2:1;20026:18;103119:43:0;;;;;;;102247:923;;;;;:::o;104844:455::-;104909:25;104927:6;104909:17;:25::i;:::-;104972:11;;104965:44;;-1:-1:-1;;;104965:44:0;;105003:4;104965:44;;;5291:51:1;104945:17:0;;-1:-1:-1;;;;;104972:11:0;;104965:29;;5264:18:1;;104965:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;105042:11;;105086:15;;105035:102;;-1:-1:-1;;;105035:102:0;;-1:-1:-1;;;;;105086:15:0;;;105035:102;;;5848:51:1;5915:18;;;5908:34;;;104945:64:0;;-1:-1:-1;105020:12:0;;105042:11;;;105035:28;;5821:18:1;;105035:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;105020:117;;105154:7;105150:142;;;105178:15;;:50;;-1:-1:-1;;;105178:50:0;;;;;18574:25:1;;;-1:-1:-1;;;;;105178:15:0;;;;:39;;18547:18:1;;105178:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;105248:32:0;;;19772:25:1;;;19828:2;19813:18;;19806:34;;;105248:32:0;;-1:-1:-1;19745:18:1;;-1:-1:-1;105248:32:0;19727:119:1;22243:98:0;22301:7;22328:5;22332:1;22328;:5;:::i;103775:537::-;103866:16;;;103880:1;103866:16;;;;;;;;;103842:21;;103866:16;;;;;;;;;;-1:-1:-1;103866:16:0;103842:40;;103911:4;103893;103898:1;103893:7;;;;;;-1:-1:-1;;;103893:7:0;;;;;;;;;-1:-1:-1;;;;;103893:23:0;;;:7;;;;;;;;;;:23;;;;103937:15;;:22;;;-1:-1:-1;;;103937:22:0;;;;:15;;;;;:20;;:22;;;;;103893:7;;103937:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103927:4;103932:1;103927:7;;;;;;-1:-1:-1;;;103927:7:0;;;;;;;;;-1:-1:-1;;;;;103927:32:0;;;:7;;;;;;;;;:32;103980:11;;103970:7;;103980:11;;;103970:4;;103975:1;;103970:7;;;;-1:-1:-1;;;103970:7:0;;;;;;;;;-1:-1:-1;;;;;103970:21:0;;;:7;;;;;;;;;:21;104036:15;;104004:62;;104021:4;;104036:15;104054:11;104004:8;:62::i;:::-;104105:15;;:199;;-1:-1:-1;;;104105:199:0;;-1:-1:-1;;;;;104105:15:0;;;;:69;;:199;;104189:11;;104105:15;;104231:4;;104258;;104278:15;;104105:199;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103178:589;103328:16;;;103342:1;103328:16;;;;;;;;103304:21;;103328:16;;;;;;;;;;-1:-1:-1;103328:16:0;103304:40;;103373:4;103355;103360:1;103355:7;;;;;;-1:-1:-1;;;103355:7:0;;;;;;;;;-1:-1:-1;;;;;103355:23:0;;;:7;;;;;;;;;;:23;;;;103399:15;;:22;;;-1:-1:-1;;;103399:22:0;;;;:15;;;;;:20;;:22;;;;;103355:7;;103399:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103389:4;103394:1;103389:7;;;;;;-1:-1:-1;;;103389:7:0;;;;;;;;;-1:-1:-1;;;;;103389:32:0;;;:7;;;;;;;;;:32;103466:15;;103434:62;;103451:4;;103466:15;103484:11;103434:8;:62::i;:::-;103535:15;;:224;;-1:-1:-1;;;103535:224:0;;-1:-1:-1;;;;;103535:15:0;;;;:66;;:224;;103616:11;;103535:15;;103686:4;;103713;;103733:15;;103535:224;;;:::i;104320:516::-;104500:15;;104468:62;;104485:4;;-1:-1:-1;;;;;104500:15:0;104518:11;104468:8;:62::i;:::-;104573:15;;:255;;-1:-1:-1;;;104573:255:0;;104645:4;104573:255;;;7968:34:1;8018:18;;;8011:34;;;104573:15:0;8061:18:1;;;8054:34;;;8104:18;;;8097:34;;;8147:19;;;8140:44;104802:15:0;8200:19:1;;;8193:35;-1:-1:-1;;;;;104573:15:0;;;;:31;;104612:9;;7902:19:1;;104573:255: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:392::-;1751:6;1759;1812:2;1800:9;1791:7;1787:23;1783:32;1780:2;;;1833:6;1825;1818:22;1780:2;1877:9;1864:23;1896:31;1921:5;1896:31;:::i;:::-;1946:5;-1:-1:-1;2003:2:1;1988:18;;1975:32;2016:30;1975:32;2016:30;:::i;2083:691::-;2214:6;2222;2230;2238;2246;2254;2262;2270;2323:3;2311:9;2302:7;2298:23;2294:33;2291:2;;;2345:6;2337;2330:22;2291:2;2382:9;2376:16;2401:31;2426:5;2401:31;:::i;:::-;2451:5;2441:15;;;2496:2;2485:9;2481:18;2475:25;2465:35;;2540:2;2529:9;2525:18;2519:25;2509:35;;2584:2;2573:9;2569:18;2563:25;2553:35;;2628:3;2617:9;2613:19;2607:26;2597:36;;2673:3;2662:9;2658:19;2652:26;2642:36;;2718:3;2707:9;2703:19;2697:26;2687:36;;2763:3;2752:9;2748:19;2742:26;2732:36;;2281:493;;;;;;;;;;;:::o;2779:325::-;2847:6;2855;2908:2;2896:9;2887:7;2883:23;2879:32;2876:2;;;2929:6;2921;2914:22;2876:2;2973:9;2960:23;2992:31;3017:5;2992:31;:::i;:::-;3042:5;3094:2;3079:18;;;;3066:32;;-1:-1:-1;;;2866:238:1:o;3109:800::-;3201:6;3209;3217;3270:2;3258:9;3249:7;3245:23;3241:32;3238:2;;;3291:6;3283;3276:22;3238:2;3336:9;3323:23;3365:18;3406:2;3398:6;3395:14;3392:2;;;3427:6;3419;3412:22;3392:2;3470:6;3459:9;3455:22;3445:32;;3515:7;3508:4;3504:2;3500:13;3496:27;3486:2;;3542:6;3534;3527:22;3486:2;3587;3574:16;3613:2;3605:6;3602:14;3599:2;;;3634:6;3626;3619:22;3599:2;3694:7;3687:4;3677:6;3674:1;3670:14;3666:2;3662:23;3658:34;3655:47;3652:2;;;3720:6;3712;3705:22;3652:2;3756:4;3748:13;;;;-1:-1:-1;3780:6:1;-1:-1:-1;;3821:20:1;;3808:34;3851:28;3808:34;3851:28;:::i;:::-;3898:5;3888:15;;;3228:681;;;;;:::o;3914:251::-;3970:6;4023:2;4011:9;4002:7;3998:23;3994:32;3991:2;;;4044:6;4036;4029:22;3991:2;4088:9;4075:23;4107:28;4129:5;4107:28;:::i;4170:255::-;4237:6;4290:2;4278:9;4269:7;4265:23;4261:32;4258:2;;;4311:6;4303;4296:22;4258:2;4348:9;4342:16;4367:28;4389:5;4367:28;:::i;4430:190::-;4489:6;4542:2;4530:9;4521:7;4517:23;4513:32;4510:2;;;4563:6;4555;4548:22;4510:2;-1:-1:-1;4591:23:1;;4500:120;-1:-1:-1;4500:120:1:o;4625:194::-;4695:6;4748:2;4736:9;4727:7;4723:23;4719:32;4716:2;;;4769:6;4761;4754:22;4716:2;-1:-1:-1;4797:16:1;;4706:113;-1:-1:-1;4706:113:1:o;4824:316::-;4912:6;4920;4928;4981:2;4969:9;4960:7;4956:23;4952:32;4949:2;;;5002:6;4994;4987:22;4949:2;5036:9;5030:16;5020:26;;5086:2;5075:9;5071:18;5065:25;5055:35;;5130:2;5119:9;5115:18;5109:25;5099:35;;4939:201;;;;;:::o;8239:797::-;8461:2;8473:21;;;8446:18;;8529:22;;;8413:4;8608:6;8582:2;8567:18;;8413:4;8645:304;8659:6;8656:1;8653:13;8645:304;;;8734:6;8721:20;8754:31;8779:5;8754:31;:::i;:::-;-1:-1:-1;;;;;8810:31:1;8798:44;;8865:4;8924:15;;;;8889:12;;;;8838:1;8674:9;8645:304;;;8649:3;8966;8958:11;;;;9021:6;9014:14;9007:22;9000:4;8989:9;8985:20;8978:52;8422:614;;;;;;:::o;9938:603::-;10050:4;10079:2;10108;10097:9;10090:21;10140:6;10134:13;10183:6;10178:2;10167:9;10163:18;10156:34;10208:4;10221:140;10235:6;10232:1;10229:13;10221:140;;;10330:14;;;10326:23;;10320:30;10296:17;;;10315:2;10292:26;10285:66;10250:10;;10221:140;;;10379:6;10376:1;10373:13;10370:2;;;10449:4;10444:2;10435:6;10424:9;10420:22;10416:31;10409:45;10370:2;-1:-1:-1;10525:2:1;10504:15;-1:-1:-1;;10500:29:1;10485:45;;;;10532:2;10481:54;;10059:482;-1:-1:-1;;;10059:482:1:o;10546:399::-;10748:2;10730:21;;;10787:2;10767:18;;;10760:30;10826:34;10821:2;10806:18;;10799:62;-1:-1:-1;;;10892:2:1;10877:18;;10870:33;10935:3;10920:19;;10720:225::o;15099:356::-;15301:2;15283:21;;;15320:18;;;15313:30;15379:34;15374:2;15359:18;;15352:62;15446:2;15431:18;;15273:182::o;16297:401::-;16499:2;16481:21;;;16538:2;16518:18;;;16511:30;16577:34;16572:2;16557:18;;16550:62;-1:-1:-1;;;16643:2:1;16628:18;;16621:35;16688:3;16673:19;;16471:227::o;18610:983::-;18872:4;18920:3;18909:9;18905:19;18951:6;18940:9;18933:25;18977:2;19015:6;19010:2;18999:9;18995:18;18988:34;19058:3;19053:2;19042:9;19038:18;19031:31;19082:6;19117;19111:13;19148:6;19140;19133:22;19186:3;19175:9;19171:19;19164:26;;19225:2;19217:6;19213:15;19199:29;;19246:4;19259:195;19273:6;19270:1;19267:13;19259:195;;;19338:13;;-1:-1:-1;;;;;19334:39:1;19322:52;;19429:15;;;;19394:12;;;;19370:1;19288:9;19259:195;;;-1:-1:-1;;;;;;;19510:32:1;;;;19505:2;19490:18;;19483:60;-1:-1:-1;;;19574:3:1;19559:19;19552:35;19471:3;18881:712;-1:-1:-1;;;18881:712:1:o;20760:128::-;20800:3;20831:1;20827:6;20824:1;20821:13;20818:2;;;20837:18;;:::i;:::-;-1:-1:-1;20873:9:1;;20808:80::o;20893:217::-;20933:1;20959;20949:2;;-1:-1:-1;;;20984:31:1;;21038:4;21035:1;21028:15;21066:4;20991:1;21056:15;20949:2;-1:-1:-1;21095:9:1;;20939:171::o;21115:168::-;21155:7;21221:1;21217;21213:6;21209:14;21206:1;21203:21;21198:1;21191:9;21184:17;21180:45;21177:2;;;21228:18;;:::i;:::-;-1:-1:-1;21268:9:1;;21167:116::o;21288:125::-;21328:4;21356:1;21353;21350:8;21347:2;;;21361:18;;:::i;:::-;-1:-1:-1;21398:9:1;;21337:76::o;21418:380::-;21497:1;21493:12;;;;21540;;;21561:2;;21615:4;21607:6;21603:17;21593:27;;21561:2;21668;21660:6;21657:14;21637:18;21634:38;21631:2;;;21714:10;21709:3;21705:20;21702:1;21695:31;21749:4;21746:1;21739:15;21777:4;21774:1;21767:15;21631:2;;21473:325;;;:::o;21803:135::-;21842:3;-1:-1:-1;;21863:17:1;;21860:2;;;21883:18;;:::i;:::-;-1:-1:-1;21930:1:1;21919:13;;21850:88::o;21943:127::-;22004:10;21999:3;21995:20;21992:1;21985:31;22035:4;22032:1;22025:15;22059:4;22056:1;22049:15;22075:131;-1:-1:-1;;;;;22150:31:1;;22140:42;;22130:2;;22196:1;22193;22186:12;22211:118;22297:5;22290:13;22283:21;22276:5;22273:32;22263:2;;22319:1;22316;22309:12
Swarm Source
ipfs://4d04db5e96f81b8f14894694a2ff645a2e7718d25055b74141acad79a2e6aa3e
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.