ERC-20
Overview
Max Total Supply
267,545,505.662482843527957432 FLOFE_Dividend_Tracker
Holders
124
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,200,000 FLOFE_Dividend_TrackerValue
$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:
FLOFEDividendTracker
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } 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); } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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(); } } interface IFTPAntiBot { // Here we create the interface to interact with AntiBot function scanAddress( address _address, address _safeAddress, address _origin ) external returns (bool); function registerBlock(address _recipient, address _sender) external; } 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; } 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; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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 Distributes ether to token holders as dividends. /// @dev SHOULD distribute the paid ether to token holders as dividends. /// SHOULD NOT directly transfer ether to token holders in this function. /// MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0. function distributeDividends() external payable; /// @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, address received ); } 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); } 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 ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } 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() public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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_) public { _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); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // 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; constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) {} /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public payable override { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add( msg.value ); } } /// @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(msg.sender, 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, address payable to) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add( _withdrawableDividend ); emit DividendWithdrawn(user, _withdrawableDividend, to); (bool success, ) = to.call{value: _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 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); } } function getAccount(address _account) public view returns (uint256 _withdrawableDividends, uint256 _withdrawnDividends) { _withdrawableDividends = withdrawableDividendOf(_account); _withdrawnDividends = withdrawnDividends[_account]; } } contract FLOFEDividendTracker is DividendPayingToken, Ownable { using SafeMath for uint256; using SafeMathInt for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; mapping(address => bool) public excludedFromDividends; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); constructor() public DividendPayingToken( "FLOFE_Dividend_Tracker", "FLOFE_Dividend_Tracker" ) { minimumTokenBalanceForDividends = 200000 * (10**18); //must hold 200000+ tokens } function _approve( address, address, uint256 ) internal override { require(false, "FLOFE_Dividend_Tracker: No approvals allowed"); } function _transfer( address, address, uint256 ) internal override { require(false, "FLOFE_Dividend_Tracker: No transfers allowed"); } function withdrawDividend() public override { require( false, "FLOFE_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main FLOFE contract." ); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account]); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function getNumberOfTokenHolders() external view returns (uint256) { return tokenHoldersMap.keys.length; } 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); } } function processAccount(address payable account, address payable toAccount) public onlyOwner returns (uint256) { uint256 amount = _withdrawDividendOfUser(account, toAccount); return amount; } } contract FLOFE is ERC20, Ownable { using SafeMath for uint256; IFTPAntiBot private antiBot; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; bool private reinvesting; bool public antibotEnabled = false; bool public maxPurchaseEnabled = true; FLOFEDividendTracker public dividendTracker; address payable public devAddress = 0x83989FAD201247446294caCB363220ecfffCB6b0; uint256 public ethFee = 6; uint256 public devFee = 9; uint256 public totalFee = 15; uint256 public tradingStartTime = 1629207000; uint256 minimumTokenBalanceForDividends = 200000 * (10**18); //maximum purchase amount for initial launch uint256 maxPurchaseAmount = 5000000 * (10**18); // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; // addresses that can make transfers before presale is over mapping(address => bool) public canTransferBeforeTradingIsEnabled; // 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; // the last time an address transferred // used to detect if an account can be reinvest inactive funds to the vault mapping(address => uint256) public lastTransfer; 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 SendDividends(uint256 amount); event DividendClaimed( uint256 ethAmount, uint256 tokenAmount, address account ); constructor() public ERC20("Floki Wife", "FLOFE") { IFTPAntiBot _antiBot = IFTPAntiBot( 0x590C2B20f7920A2D21eD32A21B616906b4209A43 ); antiBot = _antiBot; dividendTracker = new FLOFEDividendTracker(); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // 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(_uniswapV2Router)); // exclude from paying fees or having max transaction amount excludeFromFees(address(this), true); excludeFromFees(owner(), true); // enable owner and fixed-sale wallet to send tokens before presales are over canTransferBeforeTradingIsEnabled[owner()] = true; _mint(owner(), 1000000000 * (10**18)); } receive() external payable {} function setTradingStartTime(uint256 newStartTime) public onlyOwner { require( tradingStartTime > block.timestamp, "Trading has already started" ); require( newStartTime > block.timestamp, "Start time must be in the future" ); tradingStartTime = newStartTime; } function updateDividendTracker(address newAddress) public onlyOwner { require( newAddress != address(dividendTracker), "FLOFE: The dividend tracker already has that address" ); FLOFEDividendTracker newDividendTracker = FLOFEDividendTracker( payable(newAddress) ); require( newDividendTracker.owner() == address(this), "FLOFE: The new dividend tracker must be owned by the FLOFE 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), "FLOFE: The router already has that address" ); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); } function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "FLOFE: Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees( address[] memory accounts, bool excluded ) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "FLOFE: The UniSwap pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "FLOFE: Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; if (value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function allowPreTrading(address account, bool allowed) public onlyOwner { // used for owner and pre sale addresses require( canTransferBeforeTradingIsEnabled[account] != allowed, "FLOFE: Pre trading is already the value of 'excluded'" ); canTransferBeforeTradingIsEnabled[account] = allowed; } function setMaxPurchaseEnabled(bool enabled) public onlyOwner { require( maxPurchaseEnabled != enabled, "FLOFE: Max purchase enabled is already the value of 'enabled'" ); maxPurchaseEnabled = enabled; } function setMaxPurchaseAmount(uint256 newAmount) public onlyOwner { maxPurchaseAmount = newAmount; } function updateDevAddress(address payable newAddress) public onlyOwner { devAddress = newAddress; } 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 reinvestInactive(address payable account) public onlyOwner { uint256 tokenBalance = dividendTracker.balanceOf(account); require( tokenBalance <= minimumTokenBalanceForDividends, "FLOFE: Account balance must be less then minimum token balance for dividends" ); uint256 _lastTransfer = lastTransfer[account]; require( block.timestamp.sub(_lastTransfer) > 12 weeks, "FLOFE: Account must have been inactive for at least 12 weeks" ); dividendTracker.processAccount(account, address(this)); uint256 dividends = address(this).balance; (bool success, ) = address(dividendTracker).call{value: dividends}(""); if (success) { emit SendDividends(dividends); try dividendTracker.setBalance(account, 0) {} catch {} } } function claim(bool reinvest, uint256 minTokens) external { _claim(msg.sender, reinvest, minTokens); } function _claim( address payable account, bool reinvest, uint256 minTokens ) private { uint256 withdrawableAmount = dividendTracker.withdrawableDividendOf( account ); require( withdrawableAmount > 0, "FLOFE: Claimer has no withdrawable dividend" ); if (!reinvest) { uint256 ethAmount = dividendTracker.processAccount( account, account ); if (ethAmount > 0) { emit DividendClaimed(ethAmount, 0, account); } return; } uint256 ethAmount = dividendTracker.processAccount( account, address(this) ); if (ethAmount > 0) { reinvesting = true; uint256 tokenAmount = swapEthForTokens( ethAmount, minTokens, account ); reinvesting = false; emit DividendClaimed(ethAmount, tokenAmount, account); } } function getNumberOfDividendTokenHolders() external view returns (uint256) { return dividendTracker.getNumberOfTokenHolders(); } function getAccount(address _account) public view returns ( uint256 withdrawableDividends, uint256 withdrawnDividends, uint256 balance ) { (withdrawableDividends, withdrawnDividends) = dividendTracker .getAccount(_account); return (withdrawableDividends, withdrawnDividends, balanceOf(_account)); } 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"); // address must be permitted to transfer before tradingStartTime if (tradingStartTime > block.timestamp) { require( canTransferBeforeTradingIsEnabled[from], "FLOFE: This account cannot send tokens until trading is enabled" ); } if (amount == 0) { super._transfer(from, to, 0); return; } if (antibotEnabled) { if (automatedMarketMakerPairs[from]) { require( !antiBot.scanAddress(to, from, tx.origin), "Beep Beep Boop, You're a piece of poop" ); } if (automatedMarketMakerPairs[to]) { require( !antiBot.scanAddress(from, to, tx.origin), "Beep Beep Boop, You're a piece of poop" ); } } // make sure amount does not exceed max on a purchase if (maxPurchaseEnabled && automatedMarketMakerPairs[from]) { require( amount <= maxPurchaseAmount, "FLOFE: Exceeds max purchase amount" ); } if ( !swapping && !reinvesting && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapAndDistribute(); swapping = false; } bool takeFee = !swapping && !reinvesting; // if any account belongs to _isExcludedFromFee account then remove the fee // don't take a fee unless it's a buy / sell if ( (_isExcludedFromFees[from] || _isExcludedFromFees[to]) || (!automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) ) { takeFee = false; } if (takeFee) { uint256 fees = amount.mul(totalFee).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 (antibotEnabled) { try antiBot.registerBlock(from, to) {} catch {} } lastTransfer[from] = block.timestamp; lastTransfer[to] = block.timestamp; } 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 swapEthForTokens( uint256 ethAmount, uint256 minTokens, address account ) internal returns (uint256) { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); uint256 balanceBefore = balanceOf(account); uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{ value: ethAmount }(minTokens, path, account, block.timestamp); uint256 tokenAmount = balanceOf(account).sub(balanceBefore); return tokenAmount; } function swapAndDistribute() private { uint256 tokenBalance = balanceOf(address(this)); swapTokensForEth(tokenBalance); uint256 ethBalance = address(this).balance; uint256 devPortion = ethBalance.mul(devFee).div(totalFee); devAddress.transfer(devPortion); uint256 dividends = address(this).balance; (bool success, ) = address(dividendTracker).call{value: dividends}(""); if (success) { emit SendDividends(dividends); } } function assignAntiBot(address _address) external onlyOwner { IFTPAntiBot _antiBot = IFTPAntiBot(_address); antiBot = _antiBot; } function toggleAntiBot() external onlyOwner { if (antibotEnabled) { antibotEnabled = false; } else { antibotEnabled = true; } } function getDay() internal view returns (uint256) { return block.timestamp.div(1 days); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"received","type":"address"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"distributeDividends","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAccount","outputs":[{"internalType":"uint256","name":"_withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"_withdrawnDividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minimumTokenBalanceForDividends","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":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"address payable","name":"toAccount","type":"address"}],"name":"processAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","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":"withdrawDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260168082527f464c4f46455f4469766964656e645f547261636b657200000000000000000000602080840182815285518087019096529285528401528151919291839183916200006e9160039162000102565b5080516200008490600490602084019062000102565b505050505060006200009b620000fd60201b60201c565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350692a5a058fc295ed000000600f55620001a4565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b620000ff91905b808211156200018357600081556001016200018e565b6119e980620001b46000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e1461063d578063e30443bc14610678578063f2fde38b146106b1578063fbcbc0f1146106e4576101ca565b8063a9059cbb146105bc578063aafd847a146105f5578063be10b61414610628576101ca565b806391b89fba116100c657806391b89fba1461050857806395d89b411461053b578063a457c2d714610550578063a8b9d24014610589576101ca565b8063715018a6146104ad57806385a6b3ae146104c25780638da5cb5b146104d7576101ca565b8063313ce567116101595780634e7b827f116101335780634e7b827f146103f757806352b5f81d1461042a5780636a4740021461046557806370a082311461047a576101ca565b8063313ce5671461036057806331e79db01461038b57806339509351146103be576101ca565b806309bbedde1161019557806309bbedde146102ae57806318160ddd146102d557806323b872dd146102ea57806327ce01471461032d576101ca565b806303c83302146101cf57806306fdde03146101d7578063095ea7b314610261576101ca565b366101ca576101c8610730565b005b600080fd5b6101c8610730565b3480156101e357600080fd5b506101ec6107d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022657818101518382015260200161020e565b50505050905090810190601f1680156102535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026d57600080fd5b5061029a6004803603604081101561028457600080fd5b506001600160a01b038135169060200135610869565b604080519115158252519081900360200190f35b3480156102ba57600080fd5b506102c3610887565b60408051918252519081900360200190f35b3480156102e157600080fd5b506102c361088d565b3480156102f657600080fd5b5061029a6004803603606081101561030d57600080fd5b506001600160a01b03813581169160208101359091169060400135610893565b34801561033957600080fd5b506102c36004803603602081101561035057600080fd5b50356001600160a01b0316610920565b34801561036c57600080fd5b50610375610989565b6040805160ff9092168252519081900360200190f35b34801561039757600080fd5b506101c8600480360360208110156103ae57600080fd5b50356001600160a01b031661098e565b3480156103ca57600080fd5b5061029a600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610aea565b34801561040357600080fd5b5061029a6004803603602081101561041a57600080fd5b50356001600160a01b0316610b3e565b34801561043657600080fd5b506102c36004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b53565b34801561047157600080fd5b506101c8610bc1565b34801561048657600080fd5b506102c36004803603602081101561049d57600080fd5b50356001600160a01b0316610bf8565b3480156104b957600080fd5b506101c8610c13565b3480156104ce57600080fd5b506102c3610cb5565b3480156104e357600080fd5b506104ec610cbb565b604080516001600160a01b039092168252519081900360200190f35b34801561051457600080fd5b506102c36004803603602081101561052b57600080fd5b50356001600160a01b0316610cca565b34801561054757600080fd5b506101ec610cd5565b34801561055c57600080fd5b5061029a6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610d36565b34801561059557600080fd5b506102c3600480360360208110156105ac57600080fd5b50356001600160a01b0316610da4565b3480156105c857600080fd5b5061029a600480360360408110156105df57600080fd5b506001600160a01b038135169060200135610dd6565b34801561060157600080fd5b506102c36004803603602081101561061857600080fd5b50356001600160a01b0316610dea565b34801561063457600080fd5b506102c3610e05565b34801561064957600080fd5b506102c36004803603604081101561066057600080fd5b506001600160a01b0381358116916020013516610e0b565b34801561068457600080fd5b506101c86004803603604081101561069b57600080fd5b506001600160a01b038135169060200135610e36565b3480156106bd57600080fd5b506101c8600480360360208110156106d457600080fd5b50356001600160a01b0316610fd5565b3480156106f057600080fd5b506107176004803603602081101561070757600080fd5b50356001600160a01b03166110ce565b6040805192835260208301919091528051918290030190f35b600061073a61088d565b1161074457600080fd5b34156107d15761078161075561088d565b61076934600160801b63ffffffff6110fb16565b8161077057fe5b60055491900463ffffffff61115b16565b60055560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a26008546107cd903463ffffffff61115b16565b6008555b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b600061087d6108766111b5565b84846111b9565b5060015b92915050565b600a5490565b60025490565b60006108a08484846111f5565b610916846108ac6111b5565b610911856040518060600160405280602881526020016118ce602891396001600160a01b038a166000908152600160205260408120906108ea6111b5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61122c16565b6111b9565b5060019392505050565b6001600160a01b038116600090815260066020526040812054600160801b9061097b906109769061096a61096561095688610bf8565b6005549063ffffffff6110fb16565b6112c3565b9063ffffffff6112d316565b611306565b8161098257fe5b0492915050565b601290565b6109966111b5565b6009546001600160a01b039081169116146109e6576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600e602052604090205460ff1615610a0c57600080fd5b6001600160a01b0381166000908152600e60205260408120805460ff19166001179055610a3a908290611319565b6040805163131836e760e21b8152600a60048201526001600160a01b0383166024820152905173889dece7a12699ac91605eb847774d7e31532fed91634c60db9c916044808301926000929190829003018186803b158015610a9b57600080fd5b505af4158015610aaf573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b600061087d610af76111b5565b846109118560016000610b086111b5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61115b16565b600e6020526000908152604090205460ff1681565b6000610b5d6111b5565b6009546001600160a01b03908116911614610bad576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6000610bb9848461137e565b949350505050565b60405162461bcd60e51b81526004018080602001828103825260678152602001806118466067913960800191505060405180910390fd5b6001600160a01b031660009081526020819052604090205490565b610c1b6111b5565b6009546001600160a01b03908116911614610c6b576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60085481565b6009546001600160a01b031690565b600061088182610da4565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561085f5780601f106108345761010080835404028352916020019161085f565b600061087d610d436111b5565b846109118560405180606001604052806025815260200161198f6025913960016000610d6d6111b5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61122c16565b6001600160a01b03811660009081526007602052604081205461088190610dca84610920565b9063ffffffff6114d116565b600061087d610de36111b5565b84846111f5565b6001600160a01b031660009081526007602052604090205490565b600f5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e3e6111b5565b6009546001600160a01b03908116911614610e8e576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610eb457610fd1565b600f548110610f4c57610ec78282611319565b60408051632f0ad01760e21b8152600a60048201526001600160a01b038416602482015260448101839052905173889dece7a12699ac91605eb847774d7e31532fed9163bc2b405c916064808301926000929190829003018186803b158015610f2f57600080fd5b505af4158015610f43573d6000803e3d6000fd5b50505050610fd1565b610f57826000611319565b6040805163131836e760e21b8152600a60048201526001600160a01b0384166024820152905173889dece7a12699ac91605eb847774d7e31532fed91634c60db9c916044808301926000929190829003018186803b158015610fb857600080fd5b505af4158015610fcc573d6000803e3d6000fd5b505050505b5050565b610fdd6111b5565b6009546001600160a01b0390811691161461102d576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166110725760405162461bcd60e51b81526004018080602001828103825260268152602001806118206026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110da83610da4565b6001600160a01b039093166000908152600760205260409020549293915050565b60008261110a57506000610881565b8282028284828161111757fe5b04146111545760405162461bcd60e51b81526004018080602001828103825260218152602001806118ad6021913960400191505060405180910390fd5b9392505050565b600082820183811015611154576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b60405162461bcd60e51b815260040180806020018281038252602c815260200180611916602c913960400191505060405180910390fd5b505050565b60405162461bcd60e51b815260040180806020018281038252602c815260200180611963602c913960400191505060405180910390fd5b600081848411156112bb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611280578181015183820152602001611268565b50505050905090810190601f1680156112ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818181121561088157600080fd5b60008282018183128015906112e85750838112155b806112fd57506000831280156112fd57508381125b61115457600080fd5b60008082121561131557600080fd5b5090565b600061132483610bf8565b905080821115611352576000611340838363ffffffff6114d116565b905061134c8482611513565b506111f0565b808210156111f057600061136c828463ffffffff6114d116565b9050611378848261157d565b50505050565b60008061138a84610da4565b905080156114c7576001600160a01b0384166000908152600760205260409020546113bb908263ffffffff61115b16565b6001600160a01b0380861660008181526007602090815260409182902094909455805185815292871693830193909352825190927feb063efb53b3790d2bc15284b59af7544466c8787c2883321ee27095647911b6928290030190a26040516000906001600160a01b0385169083908381818185875af1925050503d8060008114611462576040519150601f19603f3d011682016040523d82523d6000602084013e611467565b606091505b50509050806114bf576001600160a01b038516600090815260076020526040902054611499908363ffffffff6114d116565b6001600160a01b0386166000908152600760205260408120919091559250610881915050565b509050610881565b5060009392505050565b600061115483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061122c565b61151d82826115c7565b61155d611538610965836005546110fb90919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549063ffffffff6116c316565b6001600160a01b0390921660009081526006602052604090209190915550565b61158782826116f5565b61155d6115a2610965836005546110fb90919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549063ffffffff6112d316565b6001600160a01b038216611622576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61162e600083836111f0565b600254611641908263ffffffff61115b16565b6002556001600160a01b03821660009081526020819052604090205461166d908263ffffffff61115b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183038183128015906116d85750838113155b806112fd57506000831280156112fd575083811361115457600080fd5b6001600160a01b03821661173a5760405162461bcd60e51b81526004018080602001828103825260218152602001806119426021913960400191505060405180910390fd5b611746826000836111f0565b611789816040518060600160405280602281526020016117fe602291396001600160a01b038516600090815260208190526040902054919063ffffffff61122c16565b6001600160a01b0383166000908152602081905260409020556002546117b5908263ffffffff6114d116565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373464c4f46455f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e20464c4f464520636f6e74726163742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572464c4f46455f4469766964656e645f547261636b65723a204e6f20617070726f76616c7320616c6c6f77656445524332303a206275726e2066726f6d20746865207a65726f2061646472657373464c4f46455f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da608dd73895c117f06268a658fce1c6fe68ca84e1fd9e8c6d838ac9c5c8600364736f6c63430006020033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e1461063d578063e30443bc14610678578063f2fde38b146106b1578063fbcbc0f1146106e4576101ca565b8063a9059cbb146105bc578063aafd847a146105f5578063be10b61414610628576101ca565b806391b89fba116100c657806391b89fba1461050857806395d89b411461053b578063a457c2d714610550578063a8b9d24014610589576101ca565b8063715018a6146104ad57806385a6b3ae146104c25780638da5cb5b146104d7576101ca565b8063313ce567116101595780634e7b827f116101335780634e7b827f146103f757806352b5f81d1461042a5780636a4740021461046557806370a082311461047a576101ca565b8063313ce5671461036057806331e79db01461038b57806339509351146103be576101ca565b806309bbedde1161019557806309bbedde146102ae57806318160ddd146102d557806323b872dd146102ea57806327ce01471461032d576101ca565b806303c83302146101cf57806306fdde03146101d7578063095ea7b314610261576101ca565b366101ca576101c8610730565b005b600080fd5b6101c8610730565b3480156101e357600080fd5b506101ec6107d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022657818101518382015260200161020e565b50505050905090810190601f1680156102535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026d57600080fd5b5061029a6004803603604081101561028457600080fd5b506001600160a01b038135169060200135610869565b604080519115158252519081900360200190f35b3480156102ba57600080fd5b506102c3610887565b60408051918252519081900360200190f35b3480156102e157600080fd5b506102c361088d565b3480156102f657600080fd5b5061029a6004803603606081101561030d57600080fd5b506001600160a01b03813581169160208101359091169060400135610893565b34801561033957600080fd5b506102c36004803603602081101561035057600080fd5b50356001600160a01b0316610920565b34801561036c57600080fd5b50610375610989565b6040805160ff9092168252519081900360200190f35b34801561039757600080fd5b506101c8600480360360208110156103ae57600080fd5b50356001600160a01b031661098e565b3480156103ca57600080fd5b5061029a600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610aea565b34801561040357600080fd5b5061029a6004803603602081101561041a57600080fd5b50356001600160a01b0316610b3e565b34801561043657600080fd5b506102c36004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b53565b34801561047157600080fd5b506101c8610bc1565b34801561048657600080fd5b506102c36004803603602081101561049d57600080fd5b50356001600160a01b0316610bf8565b3480156104b957600080fd5b506101c8610c13565b3480156104ce57600080fd5b506102c3610cb5565b3480156104e357600080fd5b506104ec610cbb565b604080516001600160a01b039092168252519081900360200190f35b34801561051457600080fd5b506102c36004803603602081101561052b57600080fd5b50356001600160a01b0316610cca565b34801561054757600080fd5b506101ec610cd5565b34801561055c57600080fd5b5061029a6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610d36565b34801561059557600080fd5b506102c3600480360360208110156105ac57600080fd5b50356001600160a01b0316610da4565b3480156105c857600080fd5b5061029a600480360360408110156105df57600080fd5b506001600160a01b038135169060200135610dd6565b34801561060157600080fd5b506102c36004803603602081101561061857600080fd5b50356001600160a01b0316610dea565b34801561063457600080fd5b506102c3610e05565b34801561064957600080fd5b506102c36004803603604081101561066057600080fd5b506001600160a01b0381358116916020013516610e0b565b34801561068457600080fd5b506101c86004803603604081101561069b57600080fd5b506001600160a01b038135169060200135610e36565b3480156106bd57600080fd5b506101c8600480360360208110156106d457600080fd5b50356001600160a01b0316610fd5565b3480156106f057600080fd5b506107176004803603602081101561070757600080fd5b50356001600160a01b03166110ce565b6040805192835260208301919091528051918290030190f35b600061073a61088d565b1161074457600080fd5b34156107d15761078161075561088d565b61076934600160801b63ffffffff6110fb16565b8161077057fe5b60055491900463ffffffff61115b16565b60055560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a26008546107cd903463ffffffff61115b16565b6008555b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b600061087d6108766111b5565b84846111b9565b5060015b92915050565b600a5490565b60025490565b60006108a08484846111f5565b610916846108ac6111b5565b610911856040518060600160405280602881526020016118ce602891396001600160a01b038a166000908152600160205260408120906108ea6111b5565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61122c16565b6111b9565b5060019392505050565b6001600160a01b038116600090815260066020526040812054600160801b9061097b906109769061096a61096561095688610bf8565b6005549063ffffffff6110fb16565b6112c3565b9063ffffffff6112d316565b611306565b8161098257fe5b0492915050565b601290565b6109966111b5565b6009546001600160a01b039081169116146109e6576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600e602052604090205460ff1615610a0c57600080fd5b6001600160a01b0381166000908152600e60205260408120805460ff19166001179055610a3a908290611319565b6040805163131836e760e21b8152600a60048201526001600160a01b0383166024820152905173889dece7a12699ac91605eb847774d7e31532fed91634c60db9c916044808301926000929190829003018186803b158015610a9b57600080fd5b505af4158015610aaf573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b600061087d610af76111b5565b846109118560016000610b086111b5565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61115b16565b600e6020526000908152604090205460ff1681565b6000610b5d6111b5565b6009546001600160a01b03908116911614610bad576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6000610bb9848461137e565b949350505050565b60405162461bcd60e51b81526004018080602001828103825260678152602001806118466067913960800191505060405180910390fd5b6001600160a01b031660009081526020819052604090205490565b610c1b6111b5565b6009546001600160a01b03908116911614610c6b576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60085481565b6009546001600160a01b031690565b600061088182610da4565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561085f5780601f106108345761010080835404028352916020019161085f565b600061087d610d436111b5565b846109118560405180606001604052806025815260200161198f6025913960016000610d6d6111b5565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61122c16565b6001600160a01b03811660009081526007602052604081205461088190610dca84610920565b9063ffffffff6114d116565b600061087d610de36111b5565b84846111f5565b6001600160a01b031660009081526007602052604090205490565b600f5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e3e6111b5565b6009546001600160a01b03908116911614610e8e576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610eb457610fd1565b600f548110610f4c57610ec78282611319565b60408051632f0ad01760e21b8152600a60048201526001600160a01b038416602482015260448101839052905173889dece7a12699ac91605eb847774d7e31532fed9163bc2b405c916064808301926000929190829003018186803b158015610f2f57600080fd5b505af4158015610f43573d6000803e3d6000fd5b50505050610fd1565b610f57826000611319565b6040805163131836e760e21b8152600a60048201526001600160a01b0384166024820152905173889dece7a12699ac91605eb847774d7e31532fed91634c60db9c916044808301926000929190829003018186803b158015610fb857600080fd5b505af4158015610fcc573d6000803e3d6000fd5b505050505b5050565b610fdd6111b5565b6009546001600160a01b0390811691161461102d576040805162461bcd60e51b815260206004820181905260248201526000805160206118f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166110725760405162461bcd60e51b81526004018080602001828103825260268152602001806118206026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110da83610da4565b6001600160a01b039093166000908152600760205260409020549293915050565b60008261110a57506000610881565b8282028284828161111757fe5b04146111545760405162461bcd60e51b81526004018080602001828103825260218152602001806118ad6021913960400191505060405180910390fd5b9392505050565b600082820183811015611154576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b60405162461bcd60e51b815260040180806020018281038252602c815260200180611916602c913960400191505060405180910390fd5b505050565b60405162461bcd60e51b815260040180806020018281038252602c815260200180611963602c913960400191505060405180910390fd5b600081848411156112bb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611280578181015183820152602001611268565b50505050905090810190601f1680156112ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818181121561088157600080fd5b60008282018183128015906112e85750838112155b806112fd57506000831280156112fd57508381125b61115457600080fd5b60008082121561131557600080fd5b5090565b600061132483610bf8565b905080821115611352576000611340838363ffffffff6114d116565b905061134c8482611513565b506111f0565b808210156111f057600061136c828463ffffffff6114d116565b9050611378848261157d565b50505050565b60008061138a84610da4565b905080156114c7576001600160a01b0384166000908152600760205260409020546113bb908263ffffffff61115b16565b6001600160a01b0380861660008181526007602090815260409182902094909455805185815292871693830193909352825190927feb063efb53b3790d2bc15284b59af7544466c8787c2883321ee27095647911b6928290030190a26040516000906001600160a01b0385169083908381818185875af1925050503d8060008114611462576040519150601f19603f3d011682016040523d82523d6000602084013e611467565b606091505b50509050806114bf576001600160a01b038516600090815260076020526040902054611499908363ffffffff6114d116565b6001600160a01b0386166000908152600760205260408120919091559250610881915050565b509050610881565b5060009392505050565b600061115483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061122c565b61151d82826115c7565b61155d611538610965836005546110fb90919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549063ffffffff6116c316565b6001600160a01b0390921660009081526006602052604090209190915550565b61158782826116f5565b61155d6115a2610965836005546110fb90919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549063ffffffff6112d316565b6001600160a01b038216611622576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61162e600083836111f0565b600254611641908263ffffffff61115b16565b6002556001600160a01b03821660009081526020819052604090205461166d908263ffffffff61115b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183038183128015906116d85750838113155b806112fd57506000831280156112fd575083811361115457600080fd5b6001600160a01b03821661173a5760405162461bcd60e51b81526004018080602001828103825260218152602001806119426021913960400191505060405180910390fd5b611746826000836111f0565b611789816040518060600160405280602281526020016117fe602291396001600160a01b038516600090815260208190526040902054919063ffffffff61122c16565b6001600160a01b0383166000908152602081905260409020556002546117b5908263ffffffff6114d116565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373464c4f46455f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e20464c4f464520636f6e74726163742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572464c4f46455f4469766964656e645f547261636b65723a204e6f20617070726f76616c7320616c6c6f77656445524332303a206275726e2066726f6d20746865207a65726f2061646472657373464c4f46455f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da608dd73895c117f06268a658fce1c6fe68ca84e1fd9e8c6d838ac9c5c8600364736f6c63430006020033
Deployed Bytecode Sourcemap
44665:2444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38121:21;:19;:21::i;:::-;44665:2444;;;;;39027:471;;;:::i;27009:100::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27009:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8::-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27009:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29317:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29317:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29317:210:0;;-1:-1:-1;;;;;29317:210:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46251:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46251:120:0;;;:::i;:::-;;;;;;;;;;;;;;;;28129:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28129:108:0;;;:::i;30009:454::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30009:454:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30009:454:0;;;;;;;;;;;;;;;;;:::i;42403:372::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42403:372:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42403:372:0;-1:-1:-1;;;;;42403:372:0;;:::i;27971:93::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27971:93:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45945:298;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45945:298:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45945:298:0;-1:-1:-1;;;;;45945:298:0;;:::i;30872:300::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30872:300:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30872:300:0;;-1:-1:-1;;;;;30872:300:0;;;;;;:::i;44908:53::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44908:53:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44908:53:0;-1:-1:-1;;;;;44908:53:0;;:::i;46860:246::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46860:246:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;46860:246:0;;;;;;;;;;:::i;45716:221::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45716:221:0;;;:::i;28300:177::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28300:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28300:177:0;-1:-1:-1;;;;;28300:177:0;;:::i;25596:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25596:148:0;;;:::i;37839:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37839:40:0;;;:::i;24954:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24954:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;24954:79:0;;;;;;;;;;;;;;40988:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40988:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40988:131:0;-1:-1:-1;;;;;40988:131:0;;:::i;27228:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27228:104:0;;;:::i;31675:400::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31675:400:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31675:400:0;;-1:-1:-1;;;;;31675:400:0;;;;;;:::i;41338:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41338:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41338:216:0;-1:-1:-1;;;;;41338:216:0;;:::i;28690:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28690:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28690:216:0;;-1:-1:-1;;;;;28690:216:0;;;;;;:::i;41775:177::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41775:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41775:177:0;-1:-1:-1;;;;;41775:177:0;;:::i;44970:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44970:46:0;;;:::i;28969:201::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28969:201:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28969:201:0;;;;;;;;;;:::i;46379:473::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46379:473:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46379:473:0;;-1:-1:-1;;;;;46379:473:0;;;;;;:::i;25899:281::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25899:281:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25899:281:0;-1:-1:-1;;;;;25899:281:0;;:::i;44369:289::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44369:289:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44369:289:0;-1:-1:-1;;;;;44369:289:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39027:471;39117:1;39101:13;:11;:13::i;:::-;:17;39093:26;;;;;;39136:9;:13;39132:359;;39194:105;39271:13;:11;:13::i;:::-;39242:26;39243:9;-1:-1:-1;;;39242:15:0;:26::i;:::-;:42;;;;;39194:25;;;39242:42;;39194:105;:29;:105;:::i;:::-;39166:25;:133;39319:43;;;39352:9;39319:43;;;;39340:10;;39319:43;;;;;;;;;;39407:25;;:72;;39455:9;39407:72;:29;:72;:::i;:::-;39379:25;:100;39132:359;39027:471::o;27009:100::-;27096:5;27089:12;;;;;;;;;;;;;-1:-1:-1;;27089:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;27063:13;;27089:12;;27096:5;;27089:12;;;27096:5;27089:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:100;:::o;29317:210::-;29436:4;29458:39;29467:12;:10;:12::i;:::-;29481:7;29490:6;29458:8;:39::i;:::-;-1:-1:-1;29515:4:0;29317:210;;;;;:::o;46251:120::-;46336:15;:27;46251:120;:::o;28129:108::-;28217:12;;28129:108;:::o;30009:454::-;30149:4;30166:36;30176:6;30184:9;30195:6;30166:9;:36::i;:::-;30213:220;30236:6;30257:12;:10;:12::i;:::-;30284:138;30340:6;30284:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30284:19:0;;;;;;-1:-1:-1;30284:19:0;;;;;;30304:12;:10;:12::i;:::-;-1:-1:-1;;;;;30284:33:0;;;;;;;;;;;;-1:-1:-1;30284:33:0;;;;:37;:138::i;:::-;30213:8;:220::i;:::-;-1:-1:-1;30451:4:0;30009:454;;;;;:::o;42403:372::-;-1:-1:-1;;;;;42684:36:0;;42517:7;42684:36;;;:28;:36;;;;;;-1:-1:-1;;;;42562:193:0;;:159;;:99;:66;42610:17;42684:36;42610:9;:17::i;:::-;42562:25;;;:66;:47;:66;:::i;:::-;:97;:99::i;:::-;:121;:159;:121;:159;:::i;:::-;:191;:193::i;:::-;:205;;;;;;;42403:372;-1:-1:-1;;42403:372:0:o;27971:93::-;28054:2;27971:93;:::o;45945:298::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:22:0;;;:6;;:22;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46031:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;46030:31;46022:40;;;::::0;::::1;;-1:-1:-1::0;;;;;46073:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;:37;;-1:-1:-1;;46073:37:0::1;-1:-1:-1::0;46073:37:0::1;::::0;;46123:23:::1;::::0;46073:30;;46123:11:::1;:23::i;:::-;46157:31;::::0;;-1:-1:-1;;;46157:31:0;;:15:::1;:31;::::0;::::1;::::0;-1:-1:-1;;;;;46157:31:0;::::1;::::0;;;;;;:22:::1;::::0;::::1;::::0;:31;;;;;-1:-1:-1;;46157:31:0;;;;;;;:22;:31;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;46157:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;46206:29:0::1;::::0;-1:-1:-1;;;;;46206:29:0;::::1;::::0;-1:-1:-1;46206:29:0::1;::::0;-1:-1:-1;46206:29:0;;::::1;45945:298:::0;:::o;30872:300::-;30987:4;31009:133;31032:12;:10;:12::i;:::-;31059:7;31081:50;31120:10;31081:11;:25;31093:12;:10;:12::i;:::-;-1:-1:-1;;;;;31081:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31081:25:0;;;:34;;;;;;;;;;;:38;:50::i;44908:53::-;;;;;;;;;;;;;;;:::o;46860:246::-;46989:7;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:22:0;;;:6;;:22;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;47014:14:::1;47031:43;47055:7;47064:9;47031:23;:43::i;:::-;47014:60:::0;46860:246;-1:-1:-1;;;;46860:246:0:o;45716:221::-;45771:158;;-1:-1:-1;;;45771:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28300:177;-1:-1:-1;;;;;28451:18:0;28419:7;28451:18;;;;;;;;;;;;28300:177::o;25596:148::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:22:0;;;:6;;:22;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;25687:6:::1;::::0;25666:40:::1;::::0;25703:1:::1;::::0;-1:-1:-1;;;;;25687:6:0::1;::::0;25666:40:::1;::::0;25703:1;;25666:40:::1;25717:6;:19:::0;;-1:-1:-1;;;;;;25717:19:0::1;::::0;;25596:148::o;37839:40::-;;;;:::o;24954:79::-;25019:6;;-1:-1:-1;;;;;25019:6:0;;24954:79::o;40988:131::-;41054:7;41081:30;41104:6;41081:22;:30::i;27228:104::-;27317:7;27310:14;;;;;;;;;;;;;-1:-1:-1;;27310:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;27284:13;;27310:14;;27317:7;;27310:14;;;27317:7;27310:14;;;;;;;;;;;;;;;;;;;;;;;;31675:400;31795:4;31817:228;31840:12;:10;:12::i;:::-;31867:7;31889:145;31946:15;31889:145;;;;;;;;;;;;;;;;;:11;:25;31901:12;:10;:12::i;:::-;-1:-1:-1;;;;;31889:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31889:25:0;;;:34;;;;;;;;;;;;:38;:145::i;41338:216::-;-1:-1:-1;;;;;41519:26:0;;41452:7;41519:26;;;:18;:26;;;;;;41484:62;;:30;41519:26;41484:22;:30::i;:::-;:34;:62;:34;:62;:::i;28690:216::-;28812:4;28834:42;28844:12;:10;:12::i;:::-;28858:9;28869:6;28834:9;:42::i;41775:177::-;-1:-1:-1;;;;;41918:26:0;41886:7;41918:26;;;:18;:26;;;;;;;41775:177::o;44970:46::-;;;;:::o;28969:201::-;-1:-1:-1;;;;;29135:18:0;;;29103:7;29135:18;;;-1:-1:-1;29135:18:0;;;;;;;;:27;;;;;;;;;;;;;28969:201::o;46379:473::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:22:0;;;:6;;:22;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46501:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;46497:69;;;46548:7;;46497:69;46596:31;;46582:10;:45;46578:267;;46644:32;46656:7;46665:10;46644:11;:32::i;:::-;46691:40;::::0;;-1:-1:-1;;;46691:40:0;;:15:::1;:40;::::0;::::1;::::0;-1:-1:-1;;;;;46691:40:0;::::1;::::0;;;;;;;;;;;;:19:::1;::::0;::::1;::::0;:40;;;;;-1:-1:-1;;46691:40:0;;;;;;;:19;:40;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;46691:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;46691:40:0;;;;46578:267;;;46764:23;46776:7;46785:1;46764:11;:23::i;:::-;46802:31;::::0;;-1:-1:-1;;;46802:31:0;;:15:::1;:31;::::0;::::1;::::0;-1:-1:-1;;;;;46802:31:0;::::1;::::0;;;;;;:22:::1;::::0;::::1;::::0;:31;;;;;-1:-1:-1;;46802:31:0;;;;;;;:22;:31;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;46802:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;46802:31:0;;;;46578:267;46379:473:::0;;:::o;25899:281::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:22:0;;;:6;;:22;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26002:22:0;::::1;25980:110;;;;-1:-1:-1::0;;;25980:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26127:6;::::0;26106:38:::1;::::0;-1:-1:-1;;;;;26106:38:0;;::::1;::::0;26127:6:::1;::::0;26106:38:::1;::::0;26127:6:::1;::::0;26106:38:::1;26155:6;:17:::0;;-1:-1:-1;;;;;;26155:17:0::1;-1:-1:-1::0;;;;;26155:17:0;;;::::1;::::0;;;::::1;::::0;;25899:281::o;44369:289::-;44455:30;44487:27;44557:32;44580:8;44557:22;:32::i;:::-;-1:-1:-1;;;;;44622:28:0;;;;;;;;:18;:28;;;;;;;;44532:57;-1:-1:-1;;44369:289:0:o;3683:471::-;3741:7;3986:6;3982:47;;-1:-1:-1;4016:1:0;4009:8;;3982:47;4053:5;;;4057:1;4053;:5;:1;4077:5;;;;;:10;4069:56;;;;-1:-1:-1;;;4069:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4145:1;3683:471;-1:-1:-1;;;3683:471:0:o;2295:181::-;2353:7;2385:5;;;2409:6;;;;2401:46;;;;;-1:-1:-1;;;2401:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;24326:98;24406:10;24326:98;:::o;45343:178::-;45451:62;;-1:-1:-1;;;45451:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45343:178;;;:::o;45529:179::-;45638:62;;-1:-1:-1;;;45638:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198:226;3318:7;3354:12;3346:6;;;;3338:29;;;;-1:-1:-1;;;3338:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3338:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3390:5:0;;;3198:226::o;88:148::-;144:6;181:1;202:6;;;;194:15;;;;;1495:176;1551:6;1581:5;;;1606:6;;;;;;:16;;;1621:1;1616;:6;;1606:16;1605:38;;;;1632:1;1628;:5;:14;;;;;1641:1;1637;:5;1628:14;1597:47;;;;;1898:127;1954:7;1987:1;1982;:6;;1974:15;;;;;;-1:-1:-1;2015:1:0;1898:127::o;43910:451::-;43988:22;44013:18;44023:7;44013:9;:18::i;:::-;43988:43;;44061:14;44048:10;:27;44044:310;;;44092:18;44113:30;:10;44128:14;44113:30;:14;:30;:::i;:::-;44092:51;;44158:26;44164:7;44173:10;44158:5;:26::i;:::-;44044:310;;;;44219:14;44206:10;:27;44202:152;;;44250:18;44271:30;:14;44290:10;44271:30;:18;:30;:::i;:::-;44250:51;;44316:26;44322:7;44331:10;44316:5;:26::i;:::-;44202:152;43910:451;;;:::o;39966:803::-;40077:7;40102:29;40134:28;40157:4;40134:22;:28::i;:::-;40102:60;-1:-1:-1;40177:25:0;;40173:568;;-1:-1:-1;;;;;40246:24:0;;;;;;:18;:24;;;;;;:83;;40293:21;40246:28;:83::i;:::-;-1:-1:-1;;;;;40219:24:0;;;;;;;:18;:24;;;;;;;;;:110;;;;40349:50;;;;;;;;;;;;;;;;;40219:24;;40349:50;;;;;;;;40433:41;;40415:12;;-1:-1:-1;;;;;40433:7:0;;;40448:21;;40415:12;40433:41;40415:12;40433:41;40448:21;40433:7;:41;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;40414:60:0;;;40496:7;40491:194;;-1:-1:-1;;;;;40551:24:0;;;;;;:18;:24;;;;;;:91;;40602:21;40551:28;:91::i;:::-;-1:-1:-1;;;;;40524:24:0;;;;;;:18;:24;;;;;:118;;;;:24;-1:-1:-1;40661:8:0;;-1:-1:-1;;40661:8:0;40491:194;-1:-1:-1;40708:21:0;-1:-1:-1;40701:28:0;;40173:568;-1:-1:-1;40760:1:0;;39966:803;-1:-1:-1;;;39966:803:0:o;2759:136::-;2817:7;2844:43;2848:1;2851;2844:43;;;;;;;;;;;;;;;;;:3;:43::i;43051:284::-;43127:27;43139:7;43148:5;43127:11;:27::i;:::-;43207:120;43273:53;43274:36;43304:5;43274:25;;:29;;:36;;;;:::i;43273:53::-;-1:-1:-1;;;;;43207:61:0;;;;;;:28;:61;;;;;;;:65;:120::i;:::-;-1:-1:-1;;;;;43167:37:0;;;;;;;;:28;:37;;;;;:160;;;;-1:-1:-1;43051:284:0:o;43620:282::-;43696:27;43708:7;43717:5;43696:11;:27::i;:::-;43774:120;43840:53;43841:36;43871:5;43841:25;;:29;;:36;;;;:::i;43840:53::-;-1:-1:-1;;;;;43774:61:0;;;;;;:28;:61;;;;;;;:65;:120::i;33462:378::-;-1:-1:-1;;;;;33546:21:0;;33538:65;;;;;-1:-1:-1;;;33538:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33616:49;33645:1;33649:7;33658:6;33616:20;:49::i;:::-;33693:12;;:24;;33710:6;33693:24;:16;:24;:::i;:::-;33678:12;:39;-1:-1:-1;;;;;33749:18:0;;:9;:18;;;;;;;;;;;:30;;33772:6;33749:22;:30::i;:::-;-1:-1:-1;;;;;33728:18:0;;:9;:18;;;;;;;;;;;:51;;;;33795:37;;;;;;;33728:18;;:9;;33795:37;;;;;;;;;;33462:378;;:::o;1231:176::-;1287:6;1317:5;;;1342:6;;;;;;:16;;;1357:1;1352;:6;;1342:16;1341:38;;;;1368:1;1364;:5;:14;;;;;1377:1;1373;:5;1333:47;;;;;34173:455;-1:-1:-1;;;;;34257:21:0;;34249:67;;;;-1:-1:-1;;;34249:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34329:49;34350:7;34367:1;34371:6;34329:20;:49::i;:::-;34412:105;34449:6;34412:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34412:18:0;;:9;:18;;;;;;;;;;;;;:22;:105::i;:::-;-1:-1:-1;;;;;34391:18:0;;:9;:18;;;;;;;;;;:126;34543:12;;:24;;34560:6;34543:16;:24::i;:::-;34528:12;:39;34583:37;;;;;;;;34609:1;;-1:-1:-1;;;;;34583:37:0;;;;;;;;;;;;34173:455;;:::o
Swarm Source
ipfs://da608dd73895c117f06268a658fce1c6fe68ca84e1fd9e8c6d838ac9c5c86003
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.