Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,400,000,000,000 ESATS
Holders
80
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ESATS
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-24 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.22; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address to, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract ESATS is ERC20, Ownable { using SafeMath for uint256; uint256 public buyFee = 1; uint256 public sellFee = 1; address public _burnAddress = 0x000000000000000000000000000000000000dEaD; mapping (address => bool) public _isWhiteListedFromFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; constructor() ERC20("Sats On Eth", "ESATS") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // CREATE A UNISWAP PAIR FOR THIS NEW TOKEN uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // SET THE REST OF THE CONTRACT VARIABLES uniswapV2Router = _uniswapV2Router; // MINT INITIAL SUPPLY _mint(msg.sender, 1400000000000 * 10 ** decimals()); //Exclude owner from fees _isWhiteListedFromFee[owner()] = true; _isWhiteListedFromFee[_burnAddress] = true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { uint256 transferAmount = amount; if(!_isWhiteListedFromFee[sender] && !_isWhiteListedFromFee[recipient]){ if(buyFee > 0){ if (sender == uniswapV2Pair) { // BUY FEE uint256 fee = amount.mul(buyFee).div(100); transferAmount = amount.sub(fee); super._transfer(sender, _burnAddress, fee); } } if(sellFee > 0){ if (recipient == uniswapV2Pair) { // SELL FEE uint256 fee = amount.mul(sellFee).div(100); transferAmount = amount.sub(fee); super._transfer(sender, _burnAddress, fee); } } } super._transfer(sender, recipient, transferAmount); } function whiteListFromFee(address account) public onlyOwner { _isWhiteListedFromFee[account] = true; } function includeInFee(address account) public onlyOwner{ _isWhiteListedFromFee[account] = false; } function changeTaxes(uint256 _buyTax, uint256 _sellTax) public onlyOwner { require(_buyTax <= 25, "Fee too high"); require(_sellTax <= 25, "Fee too high"); buyFee = _buyTax; sellFee = _sellTax; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isWhiteListedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"changeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"whiteListFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526001600655600160075561dead60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005c575f80fd5b506040518060400160405280600b81526020017f53617473204f6e204574680000000000000000000000000000000000000000008152506040518060400160405280600581526020017f45534154530000000000000000000000000000000000000000000000000000008152508160039081620000da9190620008dc565b508060049081620000ec9190620008dc565b5050506200010f620001036200040f60201b60201c565b6200041660201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000171573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000197919062000a25565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000223919062000a25565b6040518363ffffffff1660e01b81526004016200024292919062000a66565b6020604051808303815f875af11580156200025f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000285919062000a25565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200032e3362000301620004d960201b60201c565b600a6200030f919062000c1a565b650145f680b00062000322919062000c6a565b620004e160201b60201c565b600160095f620003436200064660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505062000d98565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005499062000d12565b60405180910390fd5b620005655f83836200066e60201b60201c565b8060025f82825462000578919062000d32565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000627919062000d7d565b60405180910390a3620006425f83836200067360201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006f457607f821691505b6020821081036200070a5762000709620006af565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200076e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000731565b6200077a868362000731565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007c4620007be620007b88462000792565b6200079b565b62000792565b9050919050565b5f819050919050565b620007df83620007a4565b620007f7620007ee82620007cb565b8484546200073d565b825550505050565b5f90565b6200080d620007ff565b6200081a818484620007d4565b505050565b5b818110156200084157620008355f8262000803565b60018101905062000820565b5050565b601f82111562000890576200085a8162000710565b620008658462000722565b8101602085101562000875578190505b6200088d620008848562000722565b8301826200081f565b50505b505050565b5f82821c905092915050565b5f620008b25f198460080262000895565b1980831691505092915050565b5f620008cc8383620008a1565b9150826002028217905092915050565b620008e78262000678565b67ffffffffffffffff81111562000903576200090262000682565b5b6200090f8254620006dc565b6200091c82828562000845565b5f60209050601f83116001811462000952575f84156200093d578287015190505b620009498582620008bf565b865550620009b8565b601f198416620009628662000710565b5f5b828110156200098b5784890151825560018201915060208501945060208101905062000964565b86831015620009ab5784890151620009a7601f891682620008a1565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009ef82620009c4565b9050919050565b62000a0181620009e3565b811462000a0c575f80fd5b50565b5f8151905062000a1f81620009f6565b92915050565b5f6020828403121562000a3d5762000a3c620009c0565b5b5f62000a4c8482850162000a0f565b91505092915050565b62000a6081620009e3565b82525050565b5f60408201905062000a7b5f83018562000a55565b62000a8a602083018462000a55565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b1b5780860481111562000af35762000af262000a91565b5b600185161562000b035780820291505b808102905062000b138562000abe565b945062000ad3565b94509492505050565b5f8262000b35576001905062000c07565b8162000b44575f905062000c07565b816001811462000b5d576002811462000b685762000b9e565b600191505062000c07565b60ff84111562000b7d5762000b7c62000a91565b5b8360020a91508482111562000b975762000b9662000a91565b5b5062000c07565b5060208310610133831016604e8410600b841016171562000bd85782820a90508381111562000bd25762000bd162000a91565b5b62000c07565b62000be7848484600162000aca565b9250905081840481111562000c015762000c0062000a91565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000c268262000792565b915062000c338362000c0e565b925062000c627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b24565b905092915050565b5f62000c768262000792565b915062000c838362000792565b925082820262000c938162000792565b9150828204841483151762000cad5762000cac62000a91565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000cfa601f8362000cb4565b915062000d078262000cc4565b602082019050919050565b5f6020820190508181035f83015262000d2b8162000cec565b9050919050565b5f62000d3e8262000792565b915062000d4b8362000792565b925082820190508082111562000d665762000d6562000a91565b5b92915050565b62000d778162000792565b82525050565b5f60208201905062000d925f83018462000d6c565b92915050565b60805160a051611f6e62000dc85f395f81816105ce01528181610d460152610e1201525f6105290152611f6e5ff3fe608060405234801561000f575f80fd5b506004361061014b575f3560e01c80635f1a90aa116100c1578063a9059cbb1161007a578063a9059cbb146103a3578063bd3900c0146103d3578063dd62ed3e146103f1578063ea2f0b3714610421578063f2fde38b1461043d578063fe2314d6146104595761014b565b80635f1a90aa146102cd57806370a08231146102fd578063715018a61461032d5780638da5cb5b1461033757806395d89b4114610355578063a457c2d7146103735761014b565b80632b14ca56116101135780632b14ca5614610209578063313ce567146102275780633950935114610245578063470624021461027557806349bd5a5e14610293578063508f6dfb146102b15761014b565b806306fdde031461014f578063095ea7b31461016d5780631694505e1461019d57806318160ddd146101bb57806323b872dd146101d9575b5f80fd5b610157610475565b60405161016491906114f1565b60405180910390f35b610187600480360381019061018291906115a2565b610505565b60405161019491906115fa565b60405180910390f35b6101a5610527565b6040516101b2919061166e565b60405180910390f35b6101c361054b565b6040516101d09190611696565b60405180910390f35b6101f360048036038101906101ee91906116af565b610554565b60405161020091906115fa565b60405180910390f35b610211610582565b60405161021e9190611696565b60405180910390f35b61022f610588565b60405161023c919061171a565b60405180910390f35b61025f600480360381019061025a91906115a2565b610590565b60405161026c91906115fa565b60405180910390f35b61027d6105c6565b60405161028a9190611696565b60405180910390f35b61029b6105cc565b6040516102a89190611742565b60405180910390f35b6102cb60048036038101906102c6919061175b565b6105f0565b005b6102e760048036038101906102e2919061175b565b610650565b6040516102f491906115fa565b60405180910390f35b6103176004803603810190610312919061175b565b61066d565b6040516103249190611696565b60405180910390f35b6103356106b2565b005b61033f6106c5565b60405161034c9190611742565b60405180910390f35b61035d6106ed565b60405161036a91906114f1565b60405180910390f35b61038d600480360381019061038891906115a2565b61077d565b60405161039a91906115fa565b60405180910390f35b6103bd60048036038101906103b891906115a2565b6107f2565b6040516103ca91906115fa565b60405180910390f35b6103db610814565b6040516103e89190611742565b60405180910390f35b61040b60048036038101906104069190611786565b610839565b6040516104189190611696565b60405180910390f35b61043b6004803603810190610436919061175b565b6108bb565b005b6104576004803603810190610452919061175b565b61091a565b005b610473600480360381019061046e91906117c4565b61099c565b005b6060600380546104849061182f565b80601f01602080910402602001604051908101604052809291908181526020018280546104b09061182f565b80156104fb5780601f106104d2576101008083540402835291602001916104fb565b820191905f5260205f20905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b5f8061050f610a3e565b905061051c818585610a45565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f8061055e610a3e565b905061056b858285610c08565b610576858585610c93565b60019150509392505050565b60075481565b5f6012905090565b5f8061059a610a3e565b90506105bb8185856105ac8589610839565b6105b6919061188c565b610a45565b600191505092915050565b60065481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6105f8610ee4565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106ba610ee4565b6106c35f610f62565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106fc9061182f565b80601f01602080910402602001604051908101604052809291908181526020018280546107289061182f565b80156107735780601f1061074a57610100808354040283529160200191610773565b820191905f5260205f20905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b5f80610787610a3e565b90505f6107948286610839565b9050838110156107d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d09061192f565b60405180910390fd5b6107e68286868403610a45565b60019250505092915050565b5f806107fc610a3e565b9050610809818585610c93565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108c3610ee4565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610922610ee4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610987906119bd565b60405180910390fd5b61099981610f62565b50565b6109a4610ee4565b60198211156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611a25565b60405180910390fd5b6019811115610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390611a25565b60405180910390fd5b81600681905550806007819055505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90611ab3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890611b41565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfb9190611696565b60405180910390a3505050565b5f610c138484610839565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c8d5781811015610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690611ba9565b60405180910390fd5b610c8c8484848403610a45565b5b50505050565b5f81905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610d35575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610ed3575f6006541115610e06577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e05575f610dc06064610db26006548661102590919063ffffffff16565b61109c90919063ffffffff16565b9050610dd581846110e590919063ffffffff16565b9150610e038560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361112e565b505b5b5f6007541115610ed2577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed1575f610e8c6064610e7e6007548661102590919063ffffffff16565b61109c90919063ffffffff16565b9050610ea181846110e590919063ffffffff16565b9150610ecf8560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361112e565b505b5b5b610ede84848361112e565b50505050565b610eec610a3e565b73ffffffffffffffffffffffffffffffffffffffff16610f0a6106c5565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790611c11565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808303611035575f9050611096565b5f82846110429190611c2f565b90508284826110519190611c9d565b14611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890611d3d565b60405180910390fd5b809150505b92915050565b5f6110dd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061139a565b905092915050565b5f61112683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113fb565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390611dcb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190611e59565b60405180910390fd5b61121583838361145d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90611ee7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113819190611696565b60405180910390a3611394848484611462565b50505050565b5f80831182906113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d791906114f1565b60405180910390fd5b505f83856113ee9190611c9d565b9050809150509392505050565b5f838311158290611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143991906114f1565b60405180910390fd5b505f83856114509190611f05565b9050809150509392505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561149e578082015181840152602081019050611483565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114c382611467565b6114cd8185611471565b93506114dd818560208601611481565b6114e6816114a9565b840191505092915050565b5f6020820190508181035f83015261150981846114b9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61153e82611515565b9050919050565b61154e81611534565b8114611558575f80fd5b50565b5f8135905061156981611545565b92915050565b5f819050919050565b6115818161156f565b811461158b575f80fd5b50565b5f8135905061159c81611578565b92915050565b5f80604083850312156115b8576115b7611511565b5b5f6115c58582860161155b565b92505060206115d68582860161158e565b9150509250929050565b5f8115159050919050565b6115f4816115e0565b82525050565b5f60208201905061160d5f8301846115eb565b92915050565b5f819050919050565b5f61163661163161162c84611515565b611613565b611515565b9050919050565b5f6116478261161c565b9050919050565b5f6116588261163d565b9050919050565b6116688161164e565b82525050565b5f6020820190506116815f83018461165f565b92915050565b6116908161156f565b82525050565b5f6020820190506116a95f830184611687565b92915050565b5f805f606084860312156116c6576116c5611511565b5b5f6116d38682870161155b565b93505060206116e48682870161155b565b92505060406116f58682870161158e565b9150509250925092565b5f60ff82169050919050565b611714816116ff565b82525050565b5f60208201905061172d5f83018461170b565b92915050565b61173c81611534565b82525050565b5f6020820190506117555f830184611733565b92915050565b5f602082840312156117705761176f611511565b5b5f61177d8482850161155b565b91505092915050565b5f806040838503121561179c5761179b611511565b5b5f6117a98582860161155b565b92505060206117ba8582860161155b565b9150509250929050565b5f80604083850312156117da576117d9611511565b5b5f6117e78582860161158e565b92505060206117f88582860161158e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061184657607f821691505b60208210810361185957611858611802565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118968261156f565b91506118a18361156f565b92508282019050808211156118b9576118b861185f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611919602583611471565b9150611924826118bf565b604082019050919050565b5f6020820190508181035f8301526119468161190d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119a7602683611471565b91506119b28261194d565b604082019050919050565b5f6020820190508181035f8301526119d48161199b565b9050919050565b7f46656520746f6f206869676800000000000000000000000000000000000000005f82015250565b5f611a0f600c83611471565b9150611a1a826119db565b602082019050919050565b5f6020820190508181035f830152611a3c81611a03565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a9d602483611471565b9150611aa882611a43565b604082019050919050565b5f6020820190508181035f830152611aca81611a91565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b2b602283611471565b9150611b3682611ad1565b604082019050919050565b5f6020820190508181035f830152611b5881611b1f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b93601d83611471565b9150611b9e82611b5f565b602082019050919050565b5f6020820190508181035f830152611bc081611b87565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bfb602083611471565b9150611c0682611bc7565b602082019050919050565b5f6020820190508181035f830152611c2881611bef565b9050919050565b5f611c398261156f565b9150611c448361156f565b9250828202611c528161156f565b91508282048414831517611c6957611c6861185f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611ca78261156f565b9150611cb28361156f565b925082611cc257611cc1611c70565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d27602183611471565b9150611d3282611ccd565b604082019050919050565b5f6020820190508181035f830152611d5481611d1b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611db5602583611471565b9150611dc082611d5b565b604082019050919050565b5f6020820190508181035f830152611de281611da9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e43602383611471565b9150611e4e82611de9565b604082019050919050565b5f6020820190508181035f830152611e7081611e37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ed1602683611471565b9150611edc82611e77565b604082019050919050565b5f6020820190508181035f830152611efe81611ec5565b9050919050565b5f611f0f8261156f565b9150611f1a8361156f565b9250828203905081811115611f3257611f3161185f565b5b9291505056fea2646970667358221220bca23e55dc78a2a687a0228a37b761f4bb42325c1cbd1d3ac7e02bcbcf5b677a64736f6c63430008160033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061014b575f3560e01c80635f1a90aa116100c1578063a9059cbb1161007a578063a9059cbb146103a3578063bd3900c0146103d3578063dd62ed3e146103f1578063ea2f0b3714610421578063f2fde38b1461043d578063fe2314d6146104595761014b565b80635f1a90aa146102cd57806370a08231146102fd578063715018a61461032d5780638da5cb5b1461033757806395d89b4114610355578063a457c2d7146103735761014b565b80632b14ca56116101135780632b14ca5614610209578063313ce567146102275780633950935114610245578063470624021461027557806349bd5a5e14610293578063508f6dfb146102b15761014b565b806306fdde031461014f578063095ea7b31461016d5780631694505e1461019d57806318160ddd146101bb57806323b872dd146101d9575b5f80fd5b610157610475565b60405161016491906114f1565b60405180910390f35b610187600480360381019061018291906115a2565b610505565b60405161019491906115fa565b60405180910390f35b6101a5610527565b6040516101b2919061166e565b60405180910390f35b6101c361054b565b6040516101d09190611696565b60405180910390f35b6101f360048036038101906101ee91906116af565b610554565b60405161020091906115fa565b60405180910390f35b610211610582565b60405161021e9190611696565b60405180910390f35b61022f610588565b60405161023c919061171a565b60405180910390f35b61025f600480360381019061025a91906115a2565b610590565b60405161026c91906115fa565b60405180910390f35b61027d6105c6565b60405161028a9190611696565b60405180910390f35b61029b6105cc565b6040516102a89190611742565b60405180910390f35b6102cb60048036038101906102c6919061175b565b6105f0565b005b6102e760048036038101906102e2919061175b565b610650565b6040516102f491906115fa565b60405180910390f35b6103176004803603810190610312919061175b565b61066d565b6040516103249190611696565b60405180910390f35b6103356106b2565b005b61033f6106c5565b60405161034c9190611742565b60405180910390f35b61035d6106ed565b60405161036a91906114f1565b60405180910390f35b61038d600480360381019061038891906115a2565b61077d565b60405161039a91906115fa565b60405180910390f35b6103bd60048036038101906103b891906115a2565b6107f2565b6040516103ca91906115fa565b60405180910390f35b6103db610814565b6040516103e89190611742565b60405180910390f35b61040b60048036038101906104069190611786565b610839565b6040516104189190611696565b60405180910390f35b61043b6004803603810190610436919061175b565b6108bb565b005b6104576004803603810190610452919061175b565b61091a565b005b610473600480360381019061046e91906117c4565b61099c565b005b6060600380546104849061182f565b80601f01602080910402602001604051908101604052809291908181526020018280546104b09061182f565b80156104fb5780601f106104d2576101008083540402835291602001916104fb565b820191905f5260205f20905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b5f8061050f610a3e565b905061051c818585610a45565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f8061055e610a3e565b905061056b858285610c08565b610576858585610c93565b60019150509392505050565b60075481565b5f6012905090565b5f8061059a610a3e565b90506105bb8185856105ac8589610839565b6105b6919061188c565b610a45565b600191505092915050565b60065481565b7f00000000000000000000000016842e9d41d17b9ba7a99462cccfacd6650e4ed181565b6105f8610ee4565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106ba610ee4565b6106c35f610f62565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106fc9061182f565b80601f01602080910402602001604051908101604052809291908181526020018280546107289061182f565b80156107735780601f1061074a57610100808354040283529160200191610773565b820191905f5260205f20905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b5f80610787610a3e565b90505f6107948286610839565b9050838110156107d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d09061192f565b60405180910390fd5b6107e68286868403610a45565b60019250505092915050565b5f806107fc610a3e565b9050610809818585610c93565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108c3610ee4565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610922610ee4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610987906119bd565b60405180910390fd5b61099981610f62565b50565b6109a4610ee4565b60198211156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611a25565b60405180910390fd5b6019811115610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390611a25565b60405180910390fd5b81600681905550806007819055505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90611ab3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890611b41565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfb9190611696565b60405180910390a3505050565b5f610c138484610839565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c8d5781811015610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690611ba9565b60405180910390fd5b610c8c8484848403610a45565b5b50505050565b5f81905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610d35575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610ed3575f6006541115610e06577f00000000000000000000000016842e9d41d17b9ba7a99462cccfacd6650e4ed173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e05575f610dc06064610db26006548661102590919063ffffffff16565b61109c90919063ffffffff16565b9050610dd581846110e590919063ffffffff16565b9150610e038560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361112e565b505b5b5f6007541115610ed2577f00000000000000000000000016842e9d41d17b9ba7a99462cccfacd6650e4ed173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed1575f610e8c6064610e7e6007548661102590919063ffffffff16565b61109c90919063ffffffff16565b9050610ea181846110e590919063ffffffff16565b9150610ecf8560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361112e565b505b5b5b610ede84848361112e565b50505050565b610eec610a3e565b73ffffffffffffffffffffffffffffffffffffffff16610f0a6106c5565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790611c11565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808303611035575f9050611096565b5f82846110429190611c2f565b90508284826110519190611c9d565b14611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890611d3d565b60405180910390fd5b809150505b92915050565b5f6110dd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061139a565b905092915050565b5f61112683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113fb565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390611dcb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190611e59565b60405180910390fd5b61121583838361145d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90611ee7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113819190611696565b60405180910390a3611394848484611462565b50505050565b5f80831182906113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d791906114f1565b60405180910390fd5b505f83856113ee9190611c9d565b9050809150509392505050565b5f838311158290611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143991906114f1565b60405180910390fd5b505f83856114509190611f05565b9050809150509392505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561149e578082015181840152602081019050611483565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114c382611467565b6114cd8185611471565b93506114dd818560208601611481565b6114e6816114a9565b840191505092915050565b5f6020820190508181035f83015261150981846114b9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61153e82611515565b9050919050565b61154e81611534565b8114611558575f80fd5b50565b5f8135905061156981611545565b92915050565b5f819050919050565b6115818161156f565b811461158b575f80fd5b50565b5f8135905061159c81611578565b92915050565b5f80604083850312156115b8576115b7611511565b5b5f6115c58582860161155b565b92505060206115d68582860161158e565b9150509250929050565b5f8115159050919050565b6115f4816115e0565b82525050565b5f60208201905061160d5f8301846115eb565b92915050565b5f819050919050565b5f61163661163161162c84611515565b611613565b611515565b9050919050565b5f6116478261161c565b9050919050565b5f6116588261163d565b9050919050565b6116688161164e565b82525050565b5f6020820190506116815f83018461165f565b92915050565b6116908161156f565b82525050565b5f6020820190506116a95f830184611687565b92915050565b5f805f606084860312156116c6576116c5611511565b5b5f6116d38682870161155b565b93505060206116e48682870161155b565b92505060406116f58682870161158e565b9150509250925092565b5f60ff82169050919050565b611714816116ff565b82525050565b5f60208201905061172d5f83018461170b565b92915050565b61173c81611534565b82525050565b5f6020820190506117555f830184611733565b92915050565b5f602082840312156117705761176f611511565b5b5f61177d8482850161155b565b91505092915050565b5f806040838503121561179c5761179b611511565b5b5f6117a98582860161155b565b92505060206117ba8582860161155b565b9150509250929050565b5f80604083850312156117da576117d9611511565b5b5f6117e78582860161158e565b92505060206117f88582860161158e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061184657607f821691505b60208210810361185957611858611802565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118968261156f565b91506118a18361156f565b92508282019050808211156118b9576118b861185f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611919602583611471565b9150611924826118bf565b604082019050919050565b5f6020820190508181035f8301526119468161190d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119a7602683611471565b91506119b28261194d565b604082019050919050565b5f6020820190508181035f8301526119d48161199b565b9050919050565b7f46656520746f6f206869676800000000000000000000000000000000000000005f82015250565b5f611a0f600c83611471565b9150611a1a826119db565b602082019050919050565b5f6020820190508181035f830152611a3c81611a03565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a9d602483611471565b9150611aa882611a43565b604082019050919050565b5f6020820190508181035f830152611aca81611a91565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b2b602283611471565b9150611b3682611ad1565b604082019050919050565b5f6020820190508181035f830152611b5881611b1f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b93601d83611471565b9150611b9e82611b5f565b602082019050919050565b5f6020820190508181035f830152611bc081611b87565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bfb602083611471565b9150611c0682611bc7565b602082019050919050565b5f6020820190508181035f830152611c2881611bef565b9050919050565b5f611c398261156f565b9150611c448361156f565b9250828202611c528161156f565b91508282048414831517611c6957611c6861185f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611ca78261156f565b9150611cb28361156f565b925082611cc257611cc1611c70565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d27602183611471565b9150611d3282611ccd565b604082019050919050565b5f6020820190508181035f830152611d5481611d1b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611db5602583611471565b9150611dc082611d5b565b604082019050919050565b5f6020820190508181035f830152611de281611da9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e43602383611471565b9150611e4e82611de9565b604082019050919050565b5f6020820190508181035f830152611e7081611e37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ed1602683611471565b9150611edc82611e77565b604082019050919050565b5f6020820190508181035f830152611efe81611ec5565b9050919050565b5f611f0f8261156f565b9150611f1a8361156f565b9250828203905081811115611f3257611f3161185f565b5b9291505056fea2646970667358221220bca23e55dc78a2a687a0228a37b761f4bb42325c1cbd1d3ac7e02bcbcf5b677a64736f6c63430008160033
Deployed Bytecode Sourcemap
34363:2483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11760:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34645:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10463:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12566:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34470:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10305:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13270:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34438:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34703:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36361:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34582:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10634:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2753:103;;;:::i;:::-;;2105:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9562:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14036:498;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10983:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34503:72;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11264:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36485:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3011:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36605:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9343:100;9397:13;9430:5;9423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:100;:::o;11760:226::-;11868:4;11885:13;11901:12;:10;:12::i;:::-;11885:28;;11924:32;11933:5;11940:7;11949:6;11924:8;:32::i;:::-;11974:4;11967:11;;;11760:226;;;;:::o;34645:51::-;;;:::o;10463:108::-;10524:7;10551:12;;10544:19;;10463:108;:::o;12566:295::-;12697:4;12714:15;12732:12;:10;:12::i;:::-;12714:30;;12755:38;12771:4;12777:7;12786:6;12755:15;:38::i;:::-;12804:27;12814:4;12820:2;12824:6;12804:9;:27::i;:::-;12849:4;12842:11;;;12566:295;;;;;:::o;34470:26::-;;;;:::o;10305:93::-;10363:5;10388:2;10381:9;;10305:93;:::o;13270:263::-;13383:4;13400:13;13416:12;:10;:12::i;:::-;13400:28;;13439:64;13448:5;13455:7;13492:10;13464:25;13474:5;13481:7;13464:9;:25::i;:::-;:38;;;;:::i;:::-;13439:8;:64::i;:::-;13521:4;13514:11;;;13270:263;;;;:::o;34438:25::-;;;;:::o;34703:38::-;;;:::o;36361:116::-;1991:13;:11;:13::i;:::-;36465:4:::1;36432:21;:30;36454:7;36432:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;36361:116:::0;:::o;34582:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;10634:143::-;10724:7;10751:9;:18;10761:7;10751:18;;;;;;;;;;;;;;;;10744:25;;10634:143;;;:::o;2753:103::-;1991:13;:11;:13::i;:::-;2818:30:::1;2845:1;2818:18;:30::i;:::-;2753:103::o:0;2105:87::-;2151:7;2178:6;;;;;;;;;;;2171:13;;2105:87;:::o;9562:104::-;9618:13;9651:7;9644:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9562:104;:::o;14036:498::-;14154:4;14171:13;14187:12;:10;:12::i;:::-;14171:28;;14210:24;14237:25;14247:5;14254:7;14237:9;:25::i;:::-;14210:52;;14315:15;14295:16;:35;;14273:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14431:60;14440:5;14447:7;14475:15;14456:16;:34;14431:8;:60::i;:::-;14522:4;14515:11;;;;14036:498;;;;:::o;10983:218::-;11087:4;11104:13;11120:12;:10;:12::i;:::-;11104:28;;11143;11153:5;11160:2;11164:6;11143:9;:28::i;:::-;11189:4;11182:11;;;10983:218;;;;:::o;34503:72::-;;;;;;;;;;;;;:::o;11264:176::-;11378:7;11405:11;:18;11417:5;11405:18;;;;;;;;;;;;;;;:27;11424:7;11405:27;;;;;;;;;;;;;;;;11398:34;;11264:176;;;;:::o;36485:112::-;1991:13;:11;:13::i;:::-;36584:5:::1;36551:21;:30;36573:7;36551:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;36485:112:::0;:::o;3011:238::-;1991:13;:11;:13::i;:::-;3134:1:::1;3114:22;;:8;:22;;::::0;3092:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3011:238:::0;:::o;36605:236::-;1991:13;:11;:13::i;:::-;36708:2:::1;36697:7;:13;;36689:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;36758:2;36746:8;:14;;36738:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;36797:7;36788:6;:16;;;;36825:8;36815:7;:18;;;;36605:236:::0;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;18162:380::-;18315:1;18298:19;;:5;:19;;;18290:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18396:1;18377:21;;:7;:21;;;18369:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18480:6;18450:11;:18;18462:5;18450:18;;;;;;;;;;;;;;;:27;18469:7;18450:27;;;;;;;;;;;;;;;:36;;;;18518:7;18502:32;;18511:5;18502:32;;;18527:6;18502:32;;;;;;:::i;:::-;;;;;;;;18162:380;;;:::o;18833:502::-;18968:24;18995:25;19005:5;19012:7;18995:9;:25::i;:::-;18968:52;;19055:17;19035:16;:37;19031:297;;19135:6;19115:16;:26;;19089:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;19250:51;19259:5;19266:7;19294:6;19275:16;:25;19250:8;:51::i;:::-;19031:297;18957:378;18833:502;;;:::o;35465:888::-;35606:22;35631:6;35606:31;;35654:21;:29;35676:6;35654:29;;;;;;;;;;;;;;;;;;;;;;;;;35653:30;:67;;;;;35688:21;:32;35710:9;35688:32;;;;;;;;;;;;;;;;;;;;;;;;;35687:33;35653:67;35650:635;;;35746:1;35737:6;;:10;35734:261;;;35773:13;35763:23;;:6;:23;;;35759:225;;35827:11;35841:27;35864:3;35841:18;35852:6;;35841;:10;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;35827:41;;35900:15;35911:3;35900:6;:10;;:15;;;;:::i;:::-;35883:32;;35930:42;35946:6;35954:12;;;;;;;;;;;35968:3;35930:15;:42::i;:::-;35788:196;35759:225;35734:261;36020:1;36010:7;;:11;36007:267;;;36050:13;36037:26;;:9;:26;;;36033:230;;36105:11;36119:28;36143:3;36119:19;36130:7;;36119:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;36105:42;;36179:15;36190:3;36179:6;:10;;:15;;;;:::i;:::-;36162:32;;36209:42;36225:6;36233:12;;;;;;;;;;;36247:3;36209:15;:42::i;:::-;36065:198;36033:230;36007:267;35650:635;36295:50;36311:6;36319:9;36330:14;36295:15;:50::i;:::-;35595:758;35465:888;;;:::o;2270:132::-;2345:12;:10;:12::i;:::-;2334:23;;:7;:5;:7::i;:::-;:23;;;2326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2270:132::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;22513:471::-;22571:7;22821:1;22816;:6;22812:47;;22846:1;22839:8;;;;22812:47;22871:9;22887:1;22883;:5;;;;:::i;:::-;22871:17;;22916:1;22911;22907;:5;;;;:::i;:::-;:10;22899:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;22975:1;22968:8;;;22513:471;;;;;:::o;23460:132::-;23518:7;23545:39;23549:1;23552;23545:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;23538:46;;23460:132;;;;:::o;21623:136::-;21681:7;21708:43;21712:1;21715;21708:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;21701:50;;21623:136;;;;:::o;15004:877::-;15151:1;15135:18;;:4;:18;;;15127:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15228:1;15214:16;;:2;:16;;;15206:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15283:38;15304:4;15310:2;15314:6;15283:20;:38::i;:::-;15334:19;15356:9;:15;15366:4;15356:15;;;;;;;;;;;;;;;;15334:37;;15419:6;15404:11;:21;;15382:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15559:6;15545:11;:20;15527:9;:15;15537:4;15527:15;;;;;;;;;;;;;;;:38;;;;15762:6;15745:9;:13;15755:2;15745:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15812:2;15797:26;;15806:4;15797:26;;;15816:6;15797:26;;;;;;:::i;:::-;;;;;;;;15836:37;15856:4;15862:2;15866:6;15836:19;:37::i;:::-;15116:765;15004:877;;;:::o;24088:278::-;24174:7;24206:1;24202;:5;24209:12;24194:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;24233:9;24249:1;24245;:5;;;;:::i;:::-;24233:17;;24357:1;24350:8;;;24088:278;;;;;:::o;22062:192::-;22148:7;22181:1;22176;:6;;22184:12;22168:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;22208:9;22224:1;22220;:5;;;;:::i;:::-;22208:17;;22245:1;22238:8;;;22062:192;;;;;:::o;19935:125::-;;;;:::o;20664:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:86::-;5436:7;5476:4;5469:5;5465:16;5454:27;;5401:86;;;:::o;5493:112::-;5576:22;5592:5;5576:22;:::i;:::-;5571:3;5564:35;5493:112;;:::o;5611:214::-;5700:4;5738:2;5727:9;5723:18;5715:26;;5751:67;5815:1;5804:9;5800:17;5791:6;5751:67;:::i;:::-;5611:214;;;;:::o;5831:118::-;5918:24;5936:5;5918:24;:::i;:::-;5913:3;5906:37;5831:118;;:::o;5955:222::-;6048:4;6086:2;6075:9;6071:18;6063:26;;6099:71;6167:1;6156:9;6152:17;6143:6;6099:71;:::i;:::-;5955:222;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:::-;7066:6;7074;7123:2;7111:9;7102:7;7098:23;7094:32;7091:119;;;7129:79;;:::i;:::-;7091:119;7249:1;7274:53;7319:7;7310:6;7299:9;7295:22;7274:53;:::i;:::-;7264:63;;7220:117;7376:2;7402:53;7447:7;7438:6;7427:9;7423:22;7402:53;:::i;:::-;7392:63;;7347:118;6998:474;;;;;:::o;7478:180::-;7526:77;7523:1;7516:88;7623:4;7620:1;7613:15;7647:4;7644:1;7637:15;7664:320;7708:6;7745:1;7739:4;7735:12;7725:22;;7792:1;7786:4;7782:12;7813:18;7803:81;;7869:4;7861:6;7857:17;7847:27;;7803:81;7931:2;7923:6;7920:14;7900:18;7897:38;7894:84;;7950:18;;:::i;:::-;7894:84;7715:269;7664:320;;;:::o;7990:180::-;8038:77;8035:1;8028:88;8135:4;8132:1;8125:15;8159:4;8156:1;8149:15;8176:191;8216:3;8235:20;8253:1;8235:20;:::i;:::-;8230:25;;8269:20;8287:1;8269:20;:::i;:::-;8264:25;;8312:1;8309;8305:9;8298:16;;8333:3;8330:1;8327:10;8324:36;;;8340:18;;:::i;:::-;8324:36;8176:191;;;;:::o;8373:224::-;8513:34;8509:1;8501:6;8497:14;8490:58;8582:7;8577:2;8569:6;8565:15;8558:32;8373:224;:::o;8603:366::-;8745:3;8766:67;8830:2;8825:3;8766:67;:::i;:::-;8759:74;;8842:93;8931:3;8842:93;:::i;:::-;8960:2;8955:3;8951:12;8944:19;;8603:366;;;:::o;8975:419::-;9141:4;9179:2;9168:9;9164:18;9156:26;;9228:9;9222:4;9218:20;9214:1;9203:9;9199:17;9192:47;9256:131;9382:4;9256:131;:::i;:::-;9248:139;;8975:419;;;:::o;9400:225::-;9540:34;9536:1;9528:6;9524:14;9517:58;9609:8;9604:2;9596:6;9592:15;9585:33;9400:225;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:419::-;10169:4;10207:2;10196:9;10192:18;10184:26;;10256:9;10250:4;10246:20;10242:1;10231:9;10227:17;10220:47;10284:131;10410:4;10284:131;:::i;:::-;10276:139;;10003:419;;;:::o;10428:162::-;10568:14;10564:1;10556:6;10552:14;10545:38;10428:162;:::o;10596:366::-;10738:3;10759:67;10823:2;10818:3;10759:67;:::i;:::-;10752:74;;10835:93;10924:3;10835:93;:::i;:::-;10953:2;10948:3;10944:12;10937:19;;10596:366;;;:::o;10968:419::-;11134:4;11172:2;11161:9;11157:18;11149:26;;11221:9;11215:4;11211:20;11207:1;11196:9;11192:17;11185:47;11249:131;11375:4;11249:131;:::i;:::-;11241:139;;10968:419;;;:::o;11393:223::-;11533:34;11529:1;11521:6;11517:14;11510:58;11602:6;11597:2;11589:6;11585:15;11578:31;11393:223;:::o;11622:366::-;11764:3;11785:67;11849:2;11844:3;11785:67;:::i;:::-;11778:74;;11861:93;11950:3;11861:93;:::i;:::-;11979:2;11974:3;11970:12;11963:19;;11622:366;;;:::o;11994:419::-;12160:4;12198:2;12187:9;12183:18;12175:26;;12247:9;12241:4;12237:20;12233:1;12222:9;12218:17;12211:47;12275:131;12401:4;12275:131;:::i;:::-;12267:139;;11994:419;;;:::o;12419:221::-;12559:34;12555:1;12547:6;12543:14;12536:58;12628:4;12623:2;12615:6;12611:15;12604:29;12419:221;:::o;12646:366::-;12788:3;12809:67;12873:2;12868:3;12809:67;:::i;:::-;12802:74;;12885:93;12974:3;12885:93;:::i;:::-;13003:2;12998:3;12994:12;12987:19;;12646:366;;;:::o;13018:419::-;13184:4;13222:2;13211:9;13207:18;13199:26;;13271:9;13265:4;13261:20;13257:1;13246:9;13242:17;13235:47;13299:131;13425:4;13299:131;:::i;:::-;13291:139;;13018:419;;;:::o;13443:179::-;13583:31;13579:1;13571:6;13567:14;13560:55;13443:179;:::o;13628:366::-;13770:3;13791:67;13855:2;13850:3;13791:67;:::i;:::-;13784:74;;13867:93;13956:3;13867:93;:::i;:::-;13985:2;13980:3;13976:12;13969:19;;13628:366;;;:::o;14000:419::-;14166:4;14204:2;14193:9;14189:18;14181:26;;14253:9;14247:4;14243:20;14239:1;14228:9;14224:17;14217:47;14281:131;14407:4;14281:131;:::i;:::-;14273:139;;14000:419;;;:::o;14425:182::-;14565:34;14561:1;14553:6;14549:14;14542:58;14425:182;:::o;14613:366::-;14755:3;14776:67;14840:2;14835:3;14776:67;:::i;:::-;14769:74;;14852:93;14941:3;14852:93;:::i;:::-;14970:2;14965:3;14961:12;14954:19;;14613:366;;;:::o;14985:419::-;15151:4;15189:2;15178:9;15174:18;15166:26;;15238:9;15232:4;15228:20;15224:1;15213:9;15209:17;15202:47;15266:131;15392:4;15266:131;:::i;:::-;15258:139;;14985:419;;;:::o;15410:410::-;15450:7;15473:20;15491:1;15473:20;:::i;:::-;15468:25;;15507:20;15525:1;15507:20;:::i;:::-;15502:25;;15562:1;15559;15555:9;15584:30;15602:11;15584:30;:::i;:::-;15573:41;;15763:1;15754:7;15750:15;15747:1;15744:22;15724:1;15717:9;15697:83;15674:139;;15793:18;;:::i;:::-;15674:139;15458:362;15410:410;;;;:::o;15826:180::-;15874:77;15871:1;15864:88;15971:4;15968:1;15961:15;15995:4;15992:1;15985:15;16012:185;16052:1;16069:20;16087:1;16069:20;:::i;:::-;16064:25;;16103:20;16121:1;16103:20;:::i;:::-;16098:25;;16142:1;16132:35;;16147:18;;:::i;:::-;16132:35;16189:1;16186;16182:9;16177:14;;16012:185;;;;:::o;16203:220::-;16343:34;16339:1;16331:6;16327:14;16320:58;16412:3;16407:2;16399:6;16395:15;16388:28;16203:220;:::o;16429:366::-;16571:3;16592:67;16656:2;16651:3;16592:67;:::i;:::-;16585:74;;16668:93;16757:3;16668:93;:::i;:::-;16786:2;16781:3;16777:12;16770:19;;16429:366;;;:::o;16801:419::-;16967:4;17005:2;16994:9;16990:18;16982:26;;17054:9;17048:4;17044:20;17040:1;17029:9;17025:17;17018:47;17082:131;17208:4;17082:131;:::i;:::-;17074:139;;16801:419;;;:::o;17226:224::-;17366:34;17362:1;17354:6;17350:14;17343:58;17435:7;17430:2;17422:6;17418:15;17411:32;17226:224;:::o;17456:366::-;17598:3;17619:67;17683:2;17678:3;17619:67;:::i;:::-;17612:74;;17695:93;17784:3;17695:93;:::i;:::-;17813:2;17808:3;17804:12;17797:19;;17456:366;;;:::o;17828:419::-;17994:4;18032:2;18021:9;18017:18;18009:26;;18081:9;18075:4;18071:20;18067:1;18056:9;18052:17;18045:47;18109:131;18235:4;18109:131;:::i;:::-;18101:139;;17828:419;;;:::o;18253:222::-;18393:34;18389:1;18381:6;18377:14;18370:58;18462:5;18457:2;18449:6;18445:15;18438:30;18253:222;:::o;18481:366::-;18623:3;18644:67;18708:2;18703:3;18644:67;:::i;:::-;18637:74;;18720:93;18809:3;18720:93;:::i;:::-;18838:2;18833:3;18829:12;18822:19;;18481:366;;;:::o;18853:419::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:225::-;19418:34;19414:1;19406:6;19402:14;19395:58;19487:8;19482:2;19474:6;19470:15;19463:33;19278:225;:::o;19509:366::-;19651:3;19672:67;19736:2;19731:3;19672:67;:::i;:::-;19665:74;;19748:93;19837:3;19748:93;:::i;:::-;19866:2;19861:3;19857:12;19850:19;;19509:366;;;:::o;19881:419::-;20047:4;20085:2;20074:9;20070:18;20062:26;;20134:9;20128:4;20124:20;20120:1;20109:9;20105:17;20098:47;20162:131;20288:4;20162:131;:::i;:::-;20154:139;;19881:419;;;:::o;20306:194::-;20346:4;20366:20;20384:1;20366:20;:::i;:::-;20361:25;;20400:20;20418:1;20400:20;:::i;:::-;20395:25;;20444:1;20441;20437:9;20429:17;;20468:1;20462:4;20459:11;20456:37;;;20473:18;;:::i;:::-;20456:37;20306:194;;;;:::o
Swarm Source
ipfs://bca23e55dc78a2a687a0228a37b761f4bb42325c1cbd1d3ac7e02bcbcf5b677a
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.