ERC-20
Overview
Max Total Supply
10,000,000 $LOSER
Holders
161
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.338985918070595009 $LOSERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LOSER
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-14 */ /** website: https://losererc.com twitter: https://twitter.com/loser_erc Telegram: https://t.me/loser_erc */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } //SPDX-License-Identifier: MIT pragma solidity 0.8.19; interface DexFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface DexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract LOSER is ERC20, Ownable { struct Tax { uint256 marketingTax; } uint256 private constant _totalSupply = 10_000_000 * 1e18; //Router DexRouter public immutable uniswapRouter; address public immutable pairAddress; //Taxes Tax public buyTaxes = Tax(0); Tax public sellTaxes = Tax(0); Tax public transferTaxes = Tax(40); //Whitelisting from taxes/maxwallet/txlimit/etc mapping(address => bool) private whitelisted; mapping(address => uint256) private _holderLastTransferTimestamp; //Swapping uint256 public swapTokensAtAmount = _totalSupply / 10_000; //after 0.01% of total supply, swap them bool public swapAndLiquifyEnabled = true; bool public isSwapping = false; bool public tradingEnabled = false; uint256 public startTradingBlock; bool public transferDelayEnabled = true; bool public launchTax; bool public limitsRemoved = false; //Wallets address public marketingWallet = 0x9EfaA55e6E630b5D9309d0EB0b4E2B744E8be2C4 ; uint256 public maxWalletPercentage = 4; //Events event BuyFeesUpdated(uint256 indexed _trFee); event SellFeesUpdated(uint256 indexed _trFee); event marketingWalletChanged(address indexed _trWallet); event SwapThresholdUpdated(uint256 indexed _newThreshold); event InternalSwapStatusUpdated(bool indexed _status); event TransferFailed(address recipient, uint256 amount); event Whitelist(address indexed _target, bool indexed _status); event MaxWChanged(uint256 percentage); constructor() ERC20("LOSER", "$LOSER") { uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); whitelisted[msg.sender] = true; whitelisted[address(uniswapRouter)] = true; whitelisted[address(this)] = true; _mint(msg.sender, _totalSupply); launchTax = false; } function setmarketingWallet(address _newmarketing) external onlyOwner { require( _newmarketing != address(0), "can not set marketing to dead wallet" ); marketingWallet = _newmarketing; emit marketingWalletChanged(_newmarketing); } function enableTrading() external onlyOwner { require(!tradingEnabled, "Trading is already enabled"); tradingEnabled = true; launchTax=true; startTradingBlock = block.number; } function setBuyTaxes(uint256 _marketingTax) external onlyOwner { buyTaxes.marketingTax = _marketingTax; require(_marketingTax <= 30, "Can not set buy fees higher than 30%"); emit BuyFeesUpdated(_marketingTax); } function setSellTaxes(uint256 _marketingTax) external onlyOwner { sellTaxes.marketingTax = _marketingTax; require(_marketingTax <= 30, "Can not set buy fees higher than 30%"); emit SellFeesUpdated(_marketingTax); } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { require( _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000, "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!" ); swapTokensAtAmount = _newAmount; emit SwapThresholdUpdated(swapTokensAtAmount); } function toggleSwapping() external onlyOwner { swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true; } function setWhitelistStatus( address _wallet, bool _status ) external onlyOwner { whitelisted[_wallet] = _status; emit Whitelist(_wallet, _status); } function removeLimits() internal { maxWalletPercentage = 100; transferDelayEnabled = false; transferTaxes.marketingTax = 0; limitsRemoved = true; // Set limitsRemoved to true } function NormalizeTaxes() external onlyOwner{ launchTax=false; } // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations function _takeTax( address _from, address _to, uint256 _amount ) internal returns (uint256) { if (whitelisted[_from] || whitelisted[_to]) { return _amount; } uint256 totalTax = transferTaxes.marketingTax; // Check if within the first 100 blocks if (launchTax) { if (block.number > startTradingBlock + 100) { buyTaxes.marketingTax = 0; sellTaxes.marketingTax = 0; launchTax = false; } else if (block.number <= startTradingBlock + 6) { buyTaxes.marketingTax = 40; sellTaxes.marketingTax = 40; } else if (block.number <= startTradingBlock + 25) { buyTaxes.marketingTax = 15; sellTaxes.marketingTax = 30; } else if (block.number <= startTradingBlock + 50) { buyTaxes.marketingTax = 10; sellTaxes.marketingTax = 25; } else if (block.number <= startTradingBlock + 75) { buyTaxes.marketingTax = 5; sellTaxes.marketingTax = 20; } else if (block.number <= startTradingBlock + 100) { buyTaxes.marketingTax = 0; sellTaxes.marketingTax = 10; } } if (_to == pairAddress) { totalTax = sellTaxes.marketingTax; } else if (_from == pairAddress) { totalTax = buyTaxes.marketingTax; } uint256 tax = 0; if (totalTax > 0) { tax = (_amount * totalTax) / 100; super._transfer(_from, address(this), tax); } return (_amount - tax); } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { // Check if 15 blocks have passed since the start of trading and if limits have not been removed if(block.number >= startTradingBlock + 15 && !limitsRemoved && tradingEnabled) { removeLimits(); } if (transferDelayEnabled) { if (_to != address(pairAddress) && _to != address(pairAddress)) { require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } require(_from != address(0), "transfer from address zero"); require(_to != address(0), "transfer to address zero"); require(_amount > 0, "Transfer amount must be greater than zero"); // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100; // Check if the transaction is within the maximum wallet limit if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) { require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount"); } uint256 toTransfer = _takeTax(_from, _to, _amount); bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if (!whitelisted[_from] && !whitelisted[_to]) { require(tradingEnabled, "Trading not active"); if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) { internalSwap(); } } super._transfer(_from, _to, toTransfer); } function internalSwap() internal { isSwapping = true; uint256 taxAmount = balanceOf(address(this)); if (taxAmount == 0) { return; } swapToETH(balanceOf(address(this))); (bool success, ) = marketingWallet.call{value: address(this).balance}(""); if (!success) { // Log the failure rather than reverting the transaction emit TransferFailed(marketingWallet, address(this).balance); } else { // Only set isSwapping to false if the transfer succeeded isSwapping = false; } } function swapToETH(uint256 _amount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), _amount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, address(this), block.timestamp ); } function checkWhitelist(address _wallet) external view returns (bool) { return whitelisted[_wallet]; } function setMaxWalletPercentage(uint256 _percentage) external onlyOwner { require(_percentage > 1, "Percentage must be greater than 1%"); require(_percentage <= 100, "Percentage must be less than or equal to 100"); maxWalletPercentage = _percentage; emit MaxWChanged(_percentage); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[],"name":"NormalizeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600060c0819052600681905560e081905260075561012060405260286101008190526008556200003d6127106a084595161401484a00000062000405565b600b55600c805462ffffff19166001179055600e8054769efaa55e6e630b5d9309d0eb0b4e2b744e8be2c400000161ff01600160b81b03199091161790556004600f553480156200008d57600080fd5b50604051806040016040528060058152602001642627a9a2a960d91b81525060405180604001604052806006815260200165122627a9a2a960d11b8152508160039081620000dc9190620004cc565b506004620000eb8282620004cc565b5050506200010862000102620002e460201b60201c565b620002e8565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200015e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000184919062000598565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fa919062000598565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026e919062000598565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002d3906a084595161401484a0000006200033a565b600e805461ff0019169055620005f2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003a99190620005ca565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200042357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200045357607f821691505b6020821081036200047457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040057600081815260208120601f850160051c81016020861015620004a35750805b601f850160051c820191505b81811015620004c457828155600101620004af565b505050505050565b81516001600160401b03811115620004e857620004e862000428565b6200050081620004f984546200043e565b846200047a565b602080601f8311600181146200053857600084156200051f5750858301515b600019600386901b1c1916600185901b178555620004c4565b600085815260208120601f198616915b82811015620005695788860151825594840194600190910190840162000548565b5085821015620005885787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005ab57600080fd5b81516001600160a01b0381168114620005c357600080fd5b9392505050565b80820180821115620005ec57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611f8762000657600039600081816106110152818161114b01528181611188015281816113eb015281816115610152818161176e01526117b001526000818161049501528181611b2b01528181611be40152611c200152611f876000f3fe6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106ac578063e2f45605146106f2578063ef586f7114610708578063f2fde38b1461071d578063f66895a31461073d57600080fd5b8063a8b08982146105ff578063a9059cbb14610633578063afa4f3b214610653578063b886311514610673578063c876d0b91461069257600080fd5b80638d456754116100f25780638d456754146105775780638da5cb5b1461058c57806395d89b41146105aa578063a3ca847d146105bf578063a457c2d7146105df57600080fd5b806376be96f3146104f65780637a845ece1461050c578063830351ff1461052c578063864701a51461054b5780638a8c523c1461056257600080fd5b8063313ce567116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f71461048357806375f0a874146104cf57600080fd5b8063313ce5671461039557806339509351146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc5780631d6f965514610335578063224611731461035557806323b872dd1461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610754565b6040516102629190611c8c565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611cda565b6107e6565b005b34801561029957600080fd5b506102ad6102a8366004611d08565b610883565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d34565b61089d565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611d72565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b50600e546102ad9062010000900460ff1681565b34801561036157600080fd5b5061028b610370366004611d72565b6108f9565b34801561038157600080fd5b506102ad610390366004611d8f565b6109c6565b3480156103a157600080fd5b5060405160128152602001610262565b3480156103bd57600080fd5b506102ad6103cc366004611d08565b6109ec565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee600f5481565b34801561044457600080fd5b506102ee610453366004611d72565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a2b565b34801561048f57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b50600e546104b790630100000090046001600160a01b031681565b34801561050257600080fd5b506102ee600d5481565b34801561051857600080fd5b5061028b610527366004611cda565b610a3f565b34801561053857600080fd5b50600e546102ad90610100900460ff1681565b34801561055757600080fd5b506006546102ee9081565b34801561056e57600080fd5b5061028b610b43565b34801561058357600080fd5b5061028b610bca565b34801561059857600080fd5b506005546001600160a01b03166104b7565b3480156105b657600080fd5b50610255610bdf565b3480156105cb57600080fd5b5061028b6105da366004611cda565b610bee565b3480156105eb57600080fd5b506102ad6105fa366004611d08565b610c86565b34801561060b57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561063f57600080fd5b506102ad61064e366004611d08565b610d23565b34801561065f57600080fd5b5061028b61066e366004611cda565b610d31565b34801561067f57600080fd5b50600c546102ad90610100900460ff1681565b34801561069e57600080fd5b50600e546102ad9060ff1681565b3480156106b857600080fd5b506102ee6106c7366004611dd0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fe57600080fd5b506102ee600b5481565b34801561071457600080fd5b5061028b610e27565b34801561072957600080fd5b5061028b610738366004611d72565b610e56565b34801561074957600080fd5b506007546102ee9081565b60606003805461076390611dfe565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90611dfe565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6107ee610ecf565b6007819055601e8111156108555760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610891818585610f29565b60019150505b92915050565b6108a5610ecf565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610901610ecf565b6001600160a01b0381166109635760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161084c565b600e805476ffffffffffffffffffffffffffffffffffffffff000000191663010000006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336109d485828561104d565b6109df8585856110df565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108919082908690610a26908790611e4e565b610f29565b610a33610ecf565b610a3d60006115d5565b565b610a47610ecf565b60018111610aa25760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b606482015260840161084c565b6064811115610b085760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b606482015260840161084c565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610b4b610ecf565b600c5462010000900460ff1615610ba45760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161084c565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610bd2610ecf565b600e805461ff0019169055565b60606004805461076390611dfe565b610bf6610ecf565b6006819055601e811115610c585760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b606482015260840161084c565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161084c565b610d188286868403610f29565b506001949350505050565b6000336108918185856110df565b610d39610ecf565b600081118015610d6b57506103e8610d5d6a084595161401484a0000006005611e61565b610d679190611e78565b8111155b610df45760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a40161084c565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610e2f610ecf565b600c5460ff16610e40576001610e43565b60005b600c805460ff1916911515919091179055565b610e5e610ecf565b6001600160a01b038116610ec35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084c565b610ecc816115d5565b50565b6005546001600160a01b03163314610a3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084c565b6001600160a01b038316610f8b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6001600160a01b038216610fec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146110d957818110156110cc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084c565b6110d98484848403610f29565b50505050565b600d546110ed90600f611e4e565b43101580156111055750600e5462010000900460ff16155b80156111195750600c5462010000900460ff165b1561113e5761113e6064600f55600e8054600060085562ff00ff191662010000179055565b600e5460ff161561123f577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111bd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561123f57326000908152600a6020526040902054431161122c5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b606482015260840161084c565b326000908152600a602052604090204390555b6001600160a01b0383166112955760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161084c565b6001600160a01b0382166112eb5760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161084c565b6000811161134d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161084c565b60006064600f546a084595161401484a00000061136a9190611e61565b6113749190611e78565b6001600160a01b03851660009081526009602052604090205490915060ff161580156113b957506001600160a01b03831660009081526009602052604090205460ff16155b80156113cd57506001600160a01b03831615155b80156113e257506001600160a01b0383163014155b801561142057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561149e578082611446856001600160a01b031660009081526020819052604090205490565b6114509190611e4e565b111561149e5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161084c565b60006114ab858585611634565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561150357506001600160a01b03851660009081526009602052604090205460ff16155b156115c257600c5462010000900460ff166115555760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161084c565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156115985750600c5460ff165b80156115a15750805b80156115b55750600c54610100900460ff16155b156115c2576115c261182b565b6115cd868684611930565b505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061167357506001600160a01b03831660009081526009602052604090205460ff165b1561167f5750806109e5565b600854600e54610100900460ff161561176c57600d546116a0906064611e4e565b4311156116c15760006006819055600755600e805461ff001916905561176c565b600d546116cf906006611e4e565b43116116e4576028600681905560075561176c565b600d546116f2906019611e4e565b431161170757600f600655601e60075561176c565b600d54611715906032611e4e565b431161172a57600a600655601960075561176c565b600d5461173890604b611e4e565b431161174d576005600655601460075561176c565b600d5461175b906064611e4e565b431161176c576000600655600a6007555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036117ae57506007546117ec565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117ec57506006545b600081156118175760646118008386611e61565b61180a9190611e78565b9050611817863083611930565b6118218185611e9a565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036118575750565b3060009081526020819052604090205461187090611ad4565b600e54604051600091630100000090046001600160a01b03169047908381818185875af1925050503d80600081146118c4576040519150601f19603f3d011682016040523d82523d6000602084013e6118c9565b606091505b505090508061192157600e546040805163010000009092046001600160a01b031682524760208301527f1c43b9761b3fba5321ca8212bfc231945f668ccc0c446f333999eea9ce8fda81910160405180910390a15050565b600c805461ff00191690555050565b6001600160a01b0383166119945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161084c565b6001600160a01b0382166119f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161084c565b6001600160a01b03831660009081526020819052604090205481811015611a6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161084c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110d9565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0957611b09611ead565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bab9190611ec3565b81600181518110611bbe57611bbe611ead565b60200260200101906001600160a01b031690816001600160a01b031681525050611c09307f000000000000000000000000000000000000000000000000000000000000000084610f29565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c5e908590600090869030904290600401611ee0565b600060405180830381600087803b158015611c7857600080fd5b505af11580156115cd573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611cb957858101830151858201604001528201611c9d565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cec57600080fd5b5035919050565b6001600160a01b0381168114610ecc57600080fd5b60008060408385031215611d1b57600080fd5b8235611d2681611cf3565b946020939093013593505050565b60008060408385031215611d4757600080fd5b8235611d5281611cf3565b915060208301358015158114611d6757600080fd5b809150509250929050565b600060208284031215611d8457600080fd5b81356109e581611cf3565b600080600060608486031215611da457600080fd5b8335611daf81611cf3565b92506020840135611dbf81611cf3565b929592945050506040919091013590565b60008060408385031215611de357600080fd5b8235611dee81611cf3565b91506020830135611d6781611cf3565b600181811c90821680611e1257607f821691505b602082108103611e3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089757610897611e38565b808202811582820484141761089757610897611e38565b600082611e9557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561089757610897611e38565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ed557600080fd5b81516109e581611cf3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f305784516001600160a01b031683529383019391830191600101611f0b565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200918513011b81c151a8c4bd568c8947d779817de4544ecb10a5df3c056ac744464736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106ac578063e2f45605146106f2578063ef586f7114610708578063f2fde38b1461071d578063f66895a31461073d57600080fd5b8063a8b08982146105ff578063a9059cbb14610633578063afa4f3b214610653578063b886311514610673578063c876d0b91461069257600080fd5b80638d456754116100f25780638d456754146105775780638da5cb5b1461058c57806395d89b41146105aa578063a3ca847d146105bf578063a457c2d7146105df57600080fd5b806376be96f3146104f65780637a845ece1461050c578063830351ff1461052c578063864701a51461054b5780638a8c523c1461056257600080fd5b8063313ce567116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f71461048357806375f0a874146104cf57600080fd5b8063313ce5671461039557806339509351146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc5780631d6f965514610335578063224611731461035557806323b872dd1461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610754565b6040516102629190611c8c565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611cda565b6107e6565b005b34801561029957600080fd5b506102ad6102a8366004611d08565b610883565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d34565b61089d565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611d72565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b50600e546102ad9062010000900460ff1681565b34801561036157600080fd5b5061028b610370366004611d72565b6108f9565b34801561038157600080fd5b506102ad610390366004611d8f565b6109c6565b3480156103a157600080fd5b5060405160128152602001610262565b3480156103bd57600080fd5b506102ad6103cc366004611d08565b6109ec565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee600f5481565b34801561044457600080fd5b506102ee610453366004611d72565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a2b565b34801561048f57600080fd5b506104b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b50600e546104b790630100000090046001600160a01b031681565b34801561050257600080fd5b506102ee600d5481565b34801561051857600080fd5b5061028b610527366004611cda565b610a3f565b34801561053857600080fd5b50600e546102ad90610100900460ff1681565b34801561055757600080fd5b506006546102ee9081565b34801561056e57600080fd5b5061028b610b43565b34801561058357600080fd5b5061028b610bca565b34801561059857600080fd5b506005546001600160a01b03166104b7565b3480156105b657600080fd5b50610255610bdf565b3480156105cb57600080fd5b5061028b6105da366004611cda565b610bee565b3480156105eb57600080fd5b506102ad6105fa366004611d08565b610c86565b34801561060b57600080fd5b506104b77f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d5509686681565b34801561063f57600080fd5b506102ad61064e366004611d08565b610d23565b34801561065f57600080fd5b5061028b61066e366004611cda565b610d31565b34801561067f57600080fd5b50600c546102ad90610100900460ff1681565b34801561069e57600080fd5b50600e546102ad9060ff1681565b3480156106b857600080fd5b506102ee6106c7366004611dd0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fe57600080fd5b506102ee600b5481565b34801561071457600080fd5b5061028b610e27565b34801561072957600080fd5b5061028b610738366004611d72565b610e56565b34801561074957600080fd5b506007546102ee9081565b60606003805461076390611dfe565b80601f016020809104026020016040519081016040528092919081815260200182805461078f90611dfe565b80156107dc5780601f106107b1576101008083540402835291602001916107dc565b820191906000526020600020905b8154815290600101906020018083116107bf57829003601f168201915b5050505050905090565b6107ee610ecf565b6007819055601e8111156108555760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610891818585610f29565b60019150505b92915050565b6108a5610ecf565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610901610ecf565b6001600160a01b0381166109635760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b606482015260840161084c565b600e805476ffffffffffffffffffffffffffffffffffffffff000000191663010000006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336109d485828561104d565b6109df8585856110df565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108919082908690610a26908790611e4e565b610f29565b610a33610ecf565b610a3d60006115d5565b565b610a47610ecf565b60018111610aa25760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b606482015260840161084c565b6064811115610b085760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b606482015260840161084c565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610b4b610ecf565b600c5462010000900460ff1615610ba45760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c6564000000000000604482015260640161084c565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610bd2610ecf565b600e805461ff0019169055565b60606004805461076390611dfe565b610bf6610ecf565b6006819055601e811115610c585760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632033302560e01b606482015260840161084c565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161084c565b610d188286868403610f29565b506001949350505050565b6000336108918185856110df565b610d39610ecf565b600081118015610d6b57506103e8610d5d6a084595161401484a0000006005611e61565b610d679190611e78565b8111155b610df45760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a40161084c565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610e2f610ecf565b600c5460ff16610e40576001610e43565b60005b600c805460ff1916911515919091179055565b610e5e610ecf565b6001600160a01b038116610ec35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084c565b610ecc816115d5565b50565b6005546001600160a01b03163314610a3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161084c565b6001600160a01b038316610f8b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6001600160a01b038216610fec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146110d957818110156110cc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084c565b6110d98484848403610f29565b50505050565b600d546110ed90600f611e4e565b43101580156111055750600e5462010000900460ff16155b80156111195750600c5462010000900460ff165b1561113e5761113e6064600f55600e8054600060085562ff00ff191662010000179055565b600e5460ff161561123f577f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d550968666001600160a01b0316826001600160a01b0316141580156111bd57507f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d550968666001600160a01b0316826001600160a01b031614155b1561123f57326000908152600a6020526040902054431161122c5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b606482015260840161084c565b326000908152600a602052604090204390555b6001600160a01b0383166112955760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f000000000000604482015260640161084c565b6001600160a01b0382166112eb5760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f0000000000000000604482015260640161084c565b6000811161134d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161084c565b60006064600f546a084595161401484a00000061136a9190611e61565b6113749190611e78565b6001600160a01b03851660009081526009602052604090205490915060ff161580156113b957506001600160a01b03831660009081526009602052604090205460ff16155b80156113cd57506001600160a01b03831615155b80156113e257506001600160a01b0383163014155b801561142057507f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d550968666001600160a01b0316836001600160a01b031614155b1561149e578082611446856001600160a01b031660009081526020819052604090205490565b6114509190611e4e565b111561149e5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161084c565b60006114ab858585611634565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561150357506001600160a01b03851660009081526009602052604090205460ff16155b156115c257600c5462010000900460ff166115555760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b604482015260640161084c565b846001600160a01b03167f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d550968666001600160a01b03161480156115985750600c5460ff165b80156115a15750805b80156115b55750600c54610100900460ff16155b156115c2576115c261182b565b6115cd868684611930565b505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061167357506001600160a01b03831660009081526009602052604090205460ff165b1561167f5750806109e5565b600854600e54610100900460ff161561176c57600d546116a0906064611e4e565b4311156116c15760006006819055600755600e805461ff001916905561176c565b600d546116cf906006611e4e565b43116116e4576028600681905560075561176c565b600d546116f2906019611e4e565b431161170757600f600655601e60075561176c565b600d54611715906032611e4e565b431161172a57600a600655601960075561176c565b600d5461173890604b611e4e565b431161174d576005600655601460075561176c565b600d5461175b906064611e4e565b431161176c576000600655600a6007555b7f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d550968666001600160a01b0316846001600160a01b0316036117ae57506007546117ec565b7f000000000000000000000000506acc7ac497f8f98ffc9f60f4bfd41d550968666001600160a01b0316856001600160a01b0316036117ec57506006545b600081156118175760646118008386611e61565b61180a9190611e78565b9050611817863083611930565b6118218185611e9a565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036118575750565b3060009081526020819052604090205461187090611ad4565b600e54604051600091630100000090046001600160a01b03169047908381818185875af1925050503d80600081146118c4576040519150601f19603f3d011682016040523d82523d6000602084013e6118c9565b606091505b505090508061192157600e546040805163010000009092046001600160a01b031682524760208301527f1c43b9761b3fba5321ca8212bfc231945f668ccc0c446f333999eea9ce8fda81910160405180910390a15050565b600c805461ff00191690555050565b6001600160a01b0383166119945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161084c565b6001600160a01b0382166119f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161084c565b6001600160a01b03831660009081526020819052604090205481811015611a6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161084c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110d9565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0957611b09611ead565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bab9190611ec3565b81600181518110611bbe57611bbe611ead565b60200260200101906001600160a01b031690816001600160a01b031681525050611c09307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f29565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c5e908590600090869030904290600401611ee0565b600060405180830381600087803b158015611c7857600080fd5b505af11580156115cd573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611cb957858101830151858201604001528201611c9d565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cec57600080fd5b5035919050565b6001600160a01b0381168114610ecc57600080fd5b60008060408385031215611d1b57600080fd5b8235611d2681611cf3565b946020939093013593505050565b60008060408385031215611d4757600080fd5b8235611d5281611cf3565b915060208301358015158114611d6757600080fd5b809150509250929050565b600060208284031215611d8457600080fd5b81356109e581611cf3565b600080600060608486031215611da457600080fd5b8335611daf81611cf3565b92506020840135611dbf81611cf3565b929592945050506040919091013590565b60008060408385031215611de357600080fd5b8235611dee81611cf3565b91506020830135611d6781611cf3565b600181811c90821680611e1257607f821691505b602082108103611e3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089757610897611e38565b808202811582820484141761089757610897611e38565b600082611e9557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561089757610897611e38565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ed557600080fd5b81516109e581611cf3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f305784516001600160a01b031683529383019391830191600101611f0b565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200918513011b81c151a8c4bd568c8947d779817de4544ecb10a5df3c056ac744464736f6c63430008130033
Deployed Bytecode Sourcemap
21320:9119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24220:246;;;;;;;;;;-1:-1:-1;24220:246:0;;;;;:::i;:::-;;:::i;:::-;;11792:201;;;;;;;;;;-1:-1:-1;11792:201:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;11792:201:0;1231:187:1;24988:195:0;;;;;;;;;;-1:-1:-1;24988:195:0;;;;;:::i;:::-;;:::i;10561:108::-;;;;;;;;;;-1:-1:-1;10649:12:0;;10561:108;;;1990:25:1;;;1978:2;1963:18;10561:108:0;1844:177:1;29974:116:0;;;;;;;;;;-1:-1:-1;29974:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;30062:20:0;30038:4;30062:20;;;:11;:20;;;;;;;;;29974:116;22257:33;;;;;;;;;;-1:-1:-1;22257:33:0;;;;;;;;;;;23437:297;;;;;;;;;;-1:-1:-1;23437:297:0;;;;;:::i;:::-;;:::i;12573:261::-;;;;;;;;;;-1:-1:-1;12573:261:0;;;;;:::i;:::-;;:::i;10403:93::-;;;;;;;;;;-1:-1:-1;10403:93:0;;10486:2;2881:36:1;;2869:2;2854:18;10403:93:0;2739:184:1;13243:238:0;;;;;;;;;;-1:-1:-1;13243:238:0;;;;;:::i;:::-;;:::i;22019:40::-;;;;;;;;;;-1:-1:-1;22019:40:0;;;;;;;;22103:34;;;;;;;;;;-1:-1:-1;22103:34:0;;;;;;;;;;;21674;;;;;;;;;;-1:-1:-1;21674:34:0;;;;;;22401:38;;;;;;;;;;;;;;;;10732:127;;;;;;;;;;-1:-1:-1;10732:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10833:18:0;10806:7;10833:18;;;;;;;;;;;;10732:127;2887:103;;;;;;;;;;;;;:::i;21498:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3109:55:1;;;3091:74;;3079:2;3064:18;21498:40:0;2928:243:1;22316:75:0;;;;;;;;;;-1:-1:-1;22316:75:0;;;;;;;-1:-1:-1;;;;;22316:75:0;;;22144:32;;;;;;;;;;;;;;;;30098:303;;;;;;;;;;-1:-1:-1;30098:303:0;;;;;:::i;:::-;;:::i;22229:21::-;;;;;;;;;;-1:-1:-1;22229:21:0;;;;;;;;;;;21603:28;;;;;;;;;;-1:-1:-1;21603:28:0;;;;;;23744:217;;;;;;;;;;;;;:::i;25400:78::-;;;;;;;;;;;;;:::i;2246:87::-;;;;;;;;;;-1:-1:-1;2319:6:0;;-1:-1:-1;;;;;2319:6:0;2246:87;;9651:104;;;;;;;;;;;;;:::i;23969:243::-;;;;;;;;;;-1:-1:-1;23969:243:0;;;;;:::i;:::-;;:::i;13984:436::-;;;;;;;;;;-1:-1:-1;13984:436:0;;;;;:::i;:::-;;:::i;21545:36::-;;;;;;;;;;;;;;;11065:193;;;;;;;;;;-1:-1:-1;11065:193:0;;;;;:::i;:::-;;:::i;24474:372::-;;;;;;;;;;-1:-1:-1;24474:372:0;;;;;:::i;:::-;;:::i;22066:30::-;;;;;;;;;;-1:-1:-1;22066:30:0;;;;;;;;;;;22183:39;;;;;;;;;;-1:-1:-1;22183:39:0;;;;;;;;11321:151;;;;;;;;;;-1:-1:-1;11321:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11437:18:0;;;11410:7;11437:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11321:151;21914:57;;;;;;;;;;;;;;;;24854:126;;;;;;;;;;;;;:::i;3145:201::-;;;;;;;;;;-1:-1:-1;3145:201:0;;;;;:::i;:::-;;:::i;21638:29::-;;;;;;;;;;-1:-1:-1;21638:29:0;;;;;;9432:100;9486:13;9519:5;9512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9432:100;:::o;24220:246::-;2132:13;:11;:13::i;:::-;24295:9:::1;:38:::0;;;24369:2:::1;24352:19:::0;::::1;;24344:68;;;::::0;-1:-1:-1;;;24344:68:0;;4387:2:1;24344:68:0::1;::::0;::::1;4369:21:1::0;4426:2;4406:18;;;4399:30;4465:34;4445:18;;;4438:62;-1:-1:-1;;;4516:18:1;;;4509:34;4560:19;;24344:68:0::1;;;;;;;;;24428:30;::::0;24444:13;;24428:30:::1;::::0;;;::::1;24220:246:::0;:::o;11792:201::-;11875:4;877:10;11931:32;877:10;11947:7;11956:6;11931:8;:32::i;:::-;11981:4;11974:11;;;11792:201;;;;;:::o;24988:195::-;2132:13;:11;:13::i;:::-;-1:-1:-1;;;;;25102:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;25102:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25148:27;;25102:30;;:20;25148:27:::1;::::0;::::1;24988:195:::0;;:::o;23437:297::-;2132:13;:11;:13::i;:::-;-1:-1:-1;;;;;23540:27:0;::::1;23518:113;;;::::0;-1:-1:-1;;;23518:113:0;;4792:2:1;23518:113:0::1;::::0;::::1;4774:21:1::0;4831:2;4811:18;;;4804:30;4870:34;4850:18;;;4843:62;-1:-1:-1;;;4921:18:1;;;4914:34;4965:19;;23518:113:0::1;4590:400:1::0;23518:113:0::1;23642:15;:31:::0;;-1:-1:-1;;23642:31:0::1;::::0;-1:-1:-1;;;;;23642:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;23689:37:::1;::::0;::::1;::::0;-1:-1:-1;;23689:37:0::1;23437:297:::0;:::o;12573:261::-;12670:4;877:10;12728:38;12744:4;877:10;12759:6;12728:15;:38::i;:::-;12777:27;12787:4;12793:2;12797:6;12777:9;:27::i;:::-;12822:4;12815:11;;;12573:261;;;;;;:::o;13243:238::-;877:10;13331:4;11437:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11437:27:0;;;;;;;;;;13331:4;;877:10;13387:64;;877:10;;11437:27;;13412:38;;13440:10;;13412:38;:::i;:::-;13387:8;:64::i;2887:103::-;2132:13;:11;:13::i;:::-;2952:30:::1;2979:1;2952:18;:30::i;:::-;2887:103::o:0;30098:303::-;2132:13;:11;:13::i;:::-;30199:1:::1;30185:11;:15;30177:62;;;::::0;-1:-1:-1;;;30177:62:0;;5459:2:1;30177:62:0::1;::::0;::::1;5441:21:1::0;5498:2;5478:18;;;5471:30;5537:34;5517:18;;;5510:62;-1:-1:-1;;;5588:18:1;;;5581:32;5630:19;;30177:62:0::1;5257:398:1::0;30177:62:0::1;30269:3;30254:11;:18;;30246:75;;;::::0;-1:-1:-1;;;30246:75:0;;5862:2:1;30246:75:0::1;::::0;::::1;5844:21:1::0;5901:2;5881:18;;;5874:30;5940:34;5920:18;;;5913:62;-1:-1:-1;;;5991:18:1;;;5984:42;6043:19;;30246:75:0::1;5660:408:1::0;30246:75:0::1;30328:19;:33:::0;;;30373:24:::1;::::0;1990:25:1;;;30373:24:0::1;::::0;1978:2:1;1963:18;30373:24:0::1;;;;;;;30098:303:::0;:::o;23744:217::-;2132:13;:11;:13::i;:::-;23808:14:::1;::::0;;;::::1;;;23807:15;23799:54;;;::::0;-1:-1:-1;;;23799:54:0;;6275:2:1;23799:54:0::1;::::0;::::1;6257:21:1::0;6314:2;6294:18;;;6287:30;6353:28;6333:18;;;6326:56;6399:18;;23799:54:0::1;6073:350:1::0;23799:54:0::1;23864:14;:21:::0;;-1:-1:-1;;23864:21:0::1;::::0;::::1;::::0;;23896:9:::1;:14:::0;;-1:-1:-1;;23896:14:0::1;23864:21;23896:14;::::0;;23941:12:::1;23921:17;:32:::0;23744:217::o;25400:78::-;2132:13;:11;:13::i;:::-;25455:9:::1;:15:::0;;-1:-1:-1;;25455:15:0::1;::::0;;25400:78::o;9651:104::-;9707:13;9740:7;9733:14;;;;;:::i;23969:243::-;2132:13;:11;:13::i;:::-;24043:8:::1;:37:::0;;;24116:2:::1;24099:19:::0;::::1;;24091:68;;;::::0;-1:-1:-1;;;24091:68:0;;4387:2:1;24091:68:0::1;::::0;::::1;4369:21:1::0;4426:2;4406:18;;;4399:30;4465:34;4445:18;;;4438:62;-1:-1:-1;;;4516:18:1;;;4509:34;4560:19;;24091:68:0::1;4185:400:1::0;24091:68:0::1;24175:29;::::0;24190:13;;24175:29:::1;::::0;;;::::1;23969:243:::0;:::o;13984:436::-;877:10;14077:4;11437:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11437:27:0;;;;;;;;;;14077:4;;877:10;14224:15;14204:16;:35;;14196:85;;;;-1:-1:-1;;;14196:85:0;;6630:2:1;14196:85:0;;;6612:21:1;6669:2;6649:18;;;6642:30;6708:34;6688:18;;;6681:62;-1:-1:-1;;;6759:18:1;;;6752:35;6804:19;;14196:85:0;6428:401:1;14196:85:0;14317:60;14326:5;14333:7;14361:15;14342:16;:34;14317:8;:60::i;:::-;-1:-1:-1;14408:4:0;;13984:436;-1:-1:-1;;;;13984:436:0:o;11065:193::-;11144:4;877:10;11200:28;877:10;11217:2;11221:6;11200:9;:28::i;24474:372::-;2132:13;:11;:13::i;:::-;24590:1:::1;24577:10;:14;:57;;;;-1:-1:-1::0;24630:4:0::1;24610:16;21458:17;24625:1;24610:16;:::i;:::-;24609:25;;;;:::i;:::-;24595:10;:39;;24577:57;24555:185;;;::::0;-1:-1:-1;;;24555:185:0;;7431:2:1;24555:185:0::1;::::0;::::1;7413:21:1::0;7470:2;7450:18;;;7443:30;7509:34;7489:18;;;7482:62;7580:34;7560:18;;;7553:62;-1:-1:-1;;;7631:19:1;;;7624:45;7686:19;;24555:185:0::1;7229:482:1::0;24555:185:0::1;24751:18;:31:::0;;;24798:40:::1;::::0;24772:10;;24798:40:::1;::::0;;;::::1;24474:372:::0;:::o;24854:126::-;2132:13;:11;:13::i;:::-;24935:21:::1;::::0;::::1;;24934:38;;24968:4;24934:38;;;24960:5;24934:38;24910:21;:62:::0;;-1:-1:-1;;24910:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24854:126::o;3145:201::-;2132:13;:11;:13::i;:::-;-1:-1:-1;;;;;3234:22:0;::::1;3226:73;;;::::0;-1:-1:-1;;;3226:73:0;;7918:2:1;3226:73:0::1;::::0;::::1;7900:21:1::0;7957:2;7937:18;;;7930:30;7996:34;7976:18;;;7969:62;-1:-1:-1;;;8047:18:1;;;8040:36;8093:19;;3226:73:0::1;7716:402:1::0;3226:73:0::1;3310:28;3329:8;3310:18;:28::i;:::-;3145:201:::0;:::o;2411:132::-;2319:6;;-1:-1:-1;;;;;2319:6:0;877:10;2475:23;2467:68;;;;-1:-1:-1;;;2467:68:0;;8325:2:1;2467:68:0;;;8307:21:1;;;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;8455:18;;2467:68:0;8123:356:1;17977:346:0;-1:-1:-1;;;;;18079:19:0;;18071:68;;;;-1:-1:-1;;;18071:68:0;;8686:2:1;18071:68:0;;;8668:21:1;8725:2;8705:18;;;8698:30;8764:34;8744:18;;;8737:62;-1:-1:-1;;;8815:18:1;;;8808:34;8859:19;;18071:68:0;8484:400:1;18071:68:0;-1:-1:-1;;;;;18158:21:0;;18150:68;;;;-1:-1:-1;;;18150:68:0;;9091:2:1;18150:68:0;;;9073:21:1;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;-1:-1:-1;;;9220:18:1;;;9213:32;9262:19;;18150:68:0;8889:398:1;18150:68:0;-1:-1:-1;;;;;18231:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18283:32;;1990:25:1;;;18283:32:0;;1963:18:1;18283:32:0;;;;;;;17977:346;;;:::o;18614:419::-;-1:-1:-1;;;;;11437:18:0;;;18715:24;11437:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18782:37:0;;18778:248;;18864:6;18844:16;:26;;18836:68;;;;-1:-1:-1;;;18836:68:0;;9494:2:1;18836:68:0;;;9476:21:1;9533:2;9513:18;;;9506:30;9572:31;9552:18;;;9545:59;9621:18;;18836:68:0;9292:353:1;18836:68:0;18948:51;18957:5;18964:7;18992:6;18973:16;:25;18948:8;:51::i;:::-;18704:329;18614:419;;;:::o;27211:1736::-;27447:17;;:22;;27467:2;27447:22;:::i;:::-;27431:12;:38;;:56;;;;-1:-1:-1;27474:13:0;;;;;;;27473:14;27431:56;:74;;;;-1:-1:-1;27491:14:0;;;;;;;27431:74;27428:108;;;27514:14;25252:3;25230:19;:25;25262:20;:28;;25285:5;25297:13;:30;-1:-1:-1;;25334:20:0;;;;;25189:205;27514:14;27549:20;;;;27545:307;;;27601:11;-1:-1:-1;;;;;27586:27:0;:3;-1:-1:-1;;;;;27586:27:0;;;:58;;;;;27632:11;-1:-1:-1;;;;;27617:27:0;:3;-1:-1:-1;;;;;27617:27:0;;;27586:58;27582:263;;;27698:9;27669:39;;;;:28;:39;;;;;;27711:12;-1:-1:-1;27661:103:0;;;;-1:-1:-1;;;27661:103:0;;9852:2:1;27661:103:0;;;9834:21:1;9891:2;9871:18;;;9864:30;9930:34;9910:18;;;9903:62;-1:-1:-1;;;9981:18:1;;;9974:34;10025:19;;27661:103:0;9650:400:1;27661:103:0;27808:9;27779:39;;;;:28;:39;;;;;27821:12;27779:54;;27582:263;-1:-1:-1;;;;;27871:19:0;;27863:58;;;;-1:-1:-1;;;27863:58:0;;10257:2:1;27863:58:0;;;10239:21:1;10296:2;10276:18;;;10269:30;10335:28;10315:18;;;10308:56;10381:18;;27863:58:0;10055:350:1;27863:58:0;-1:-1:-1;;;;;27936:17:0;;27928:54;;;;-1:-1:-1;;;27928:54:0;;10612:2:1;27928:54:0;;;10594:21:1;10651:2;10631:18;;;10624:30;10690:26;10670:18;;;10663:54;10734:18;;27928:54:0;10410:348:1;27928:54:0;28007:1;27997:7;:11;27989:65;;;;-1:-1:-1;;;27989:65:0;;10965:2:1;27989:65:0;;;10947:21:1;11004:2;10984:18;;;10977:30;11043:34;11023:18;;;11016:62;-1:-1:-1;;;11094:18:1;;;11087:39;11143:19;;27989:65:0;10763:405:1;27989:65:0;28167:23;28230:3;28208:19;;21458:17;28193:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;28315:18:0;;;;;;:11;:18;;;;;;28167:66;;-1:-1:-1;28315:18:0;;28314:19;:40;;;;-1:-1:-1;;;;;;28338:16:0;;;;;;:11;:16;;;;;;;;28337:17;28314:40;:61;;;;-1:-1:-1;;;;;;28358:17:0;;;;28314:61;:85;;;;-1:-1:-1;;;;;;28379:20:0;;28394:4;28379:20;;28314:85;:107;;;;;28410:11;-1:-1:-1;;;;;28403:18:0;:3;-1:-1:-1;;;;;28403:18:0;;;28314:107;28310:217;;;28470:15;28459:7;28442:14;28452:3;-1:-1:-1;;;;;10833:18:0;10806:7;10833:18;;;;;;;;;;;;10732:127;28442:14;:24;;;;:::i;:::-;:43;;28434:85;;;;-1:-1:-1;;;28434:85:0;;11375:2:1;28434:85:0;;;11357:21:1;11414:2;11394:18;;;11387:30;11453:31;11433:18;;;11426:59;11502:18;;28434:85:0;11173:353:1;28434:85:0;28535:18;28556:29;28565:5;28572:3;28577:7;28556:8;:29::i;:::-;28637:18;;28627:4;28594:12;10833:18;;;;;;;;;;;;-1:-1:-1;;;;;28667:18:0;;;;:11;:18;;;;;;;28535:50;;-1:-1:-1;;28609:46:0;;28667:18;;28666:19;:40;;;;-1:-1:-1;;;;;;28690:16:0;;;;;;:11;:16;;;;;;;;28689:17;28666:40;28662:236;;;28727:14;;;;;;;28719:45;;;;-1:-1:-1;;;28719:45:0;;11733:2:1;28719:45:0;;;11715:21:1;11772:2;11752:18;;;11745:30;-1:-1:-1;;;11791:18:1;;;11784:48;11849:18;;28719:45:0;11531:342:1;28719:45:0;28794:3;-1:-1:-1;;;;;28779:18:0;:11;-1:-1:-1;;;;;28779:18:0;;:43;;;;-1:-1:-1;28801:21:0;;;;28779:43;:54;;;;;28826:7;28779:54;:69;;;;-1:-1:-1;28838:10:0;;;;;;;28837:11;28779:69;28775:116;;;28865:14;:12;:14::i;:::-;28904:39;28920:5;28927:3;28932:10;28904:15;:39::i;:::-;27319:1628;;;27211:1736;;;:::o;3506:191::-;3599:6;;;-1:-1:-1;;;;;3616:17:0;;;-1:-1:-1;;3616:17:0;;;;;;;3649:40;;3599:6;;;3616:17;3599:6;;3649:40;;3580:16;;3649:40;3569:128;3506:191;:::o;25624:1583::-;-1:-1:-1;;;;;25743:18:0;;25723:7;25743:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;25765:16:0;;;;;;:11;:16;;;;;;;;25743:38;25739:77;;;-1:-1:-1;25801:7:0;25794:14;;25739:77;25843:13;:26;25925:9;;;;;;;25921:937;;;25966:17;;:23;;25986:3;25966:23;:::i;:::-;25951:12;:38;25947:894;;;26030:1;26006:8;:25;;;26046:9;:26;26087:9;:17;;-1:-1:-1;;26087:17:0;;;25947:894;;;26144:17;;:21;;26164:1;26144:21;:::i;:::-;26128:12;:37;26124:717;;26206:2;26182:8;:26;;;26223:9;:27;26124:717;;;26288:17;;:22;;26308:2;26288:22;:::i;:::-;26272:12;:38;26268:573;;26351:2;26327:8;:26;26393:2;26368:9;:27;26268:573;;;26433:17;;:22;;26453:2;26433:22;:::i;:::-;26417:12;:38;26413:428;;26496:2;26472:8;:26;26538:2;26513:9;:27;26413:428;;;26578:17;;:22;;26598:2;26578:22;:::i;:::-;26562:12;:38;26558:283;;26641:1;26617:8;:25;26682:2;26657:9;:27;26558:283;;;26722:17;;:23;;26742:3;26722:23;:::i;:::-;26706:12;:39;26702:139;;26786:1;26762:8;:25;26827:2;26802:9;:27;26702:139;26875:11;-1:-1:-1;;;;;26868:18:0;:3;-1:-1:-1;;;;;26868:18:0;;26864:159;;-1:-1:-1;26910:9:0;:22;26864:159;;;26959:11;-1:-1:-1;;;;;26950:20:0;:5;-1:-1:-1;;;;;26950:20:0;;26946:77;;-1:-1:-1;26994:8:0;:21;26946:77;27031:11;27057:12;;27053:122;;27111:3;27089:18;27099:8;27089:7;:18;:::i;:::-;27088:26;;;;:::i;:::-;27082:32;;27125:42;27141:5;27156:4;27163:3;27125:15;:42::i;:::-;27189:13;27199:3;27189:7;:13;:::i;:::-;27181:22;25624:1583;-1:-1:-1;;;;;;25624:1583:0:o;28951:560::-;28991:10;:17;;-1:-1:-1;;28991:17:0;;;;;29053:4;-1:-1:-1;10833:18:0;;;;;;;;;;;29015:44;;29071:9;29084:1;29071:14;29067:45;;29098:7;28951:560::o;29067:45::-;29146:4;10806:7;10833:18;;;;;;;;;;;29118:35;;:9;:35::i;:::-;29179:15;;:54;;29161:12;;29179:15;;;-1:-1:-1;;;;;29179:15:0;;29207:21;;29161:12;29179:54;29161:12;29179:54;29207:21;29179:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29160:73;;;29245:7;29240:268;;29351:15;;29336:54;;;29351:15;;;;-1:-1:-1;;;;;29351:15:0;12395:74:1;;29368:21:0;12500:2:1;12485:18;;12478:34;29336:54:0;;12368:18:1;29336:54:0;;;;;;;28984:527;;28951:560::o;29240:268::-;29482:10;:18;;-1:-1:-1;;29482:18:0;;;28984:527;;28951:560::o;14890:806::-;-1:-1:-1;;;;;14987:18:0;;14979:68;;;;-1:-1:-1;;;14979:68:0;;12725:2:1;14979:68:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:34;12783:18;;;12776:62;-1:-1:-1;;;12854:18:1;;;12847:35;12899:19;;14979:68:0;12523:401:1;14979:68:0;-1:-1:-1;;;;;15066:16:0;;15058:64;;;;-1:-1:-1;;;15058:64:0;;13131:2:1;15058:64:0;;;13113:21:1;13170:2;13150:18;;;13143:30;13209:34;13189:18;;;13182:62;-1:-1:-1;;;13260:18:1;;;13253:33;13303:19;;15058:64:0;12929:399:1;15058:64:0;-1:-1:-1;;;;;15208:15:0;;15186:19;15208:15;;;;;;;;;;;15242:21;;;;15234:72;;;;-1:-1:-1;;;15234:72:0;;13535:2:1;15234:72:0;;;13517:21:1;13574:2;13554:18;;;13547:30;13613:34;13593:18;;;13586:62;-1:-1:-1;;;13664:18:1;;;13657:36;13710:19;;15234:72:0;13333:402:1;15234:72:0;-1:-1:-1;;;;;15342:15:0;;;:9;:15;;;;;;;;;;;15360:20;;;15342:38;;15560:13;;;;;;;;;;:23;;;;;;15612:26;;1990:25:1;;;15560:13:0;;15612:26;;1963:18:1;15612:26:0;;;;;;;15651:37;19633:91;29521:447;29601:16;;;29615:1;29601:16;;;;;;;;29577:21;;29601:16;;;;;;;;;;-1:-1:-1;29601:16:0;29577:40;;29646:4;29628;29633:1;29628:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;29628:23:0;;;-1:-1:-1;;;;;29628:23:0;;;;;29672:13;-1:-1:-1;;;;;29672:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29662:4;29667:1;29662:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;29662:30:0;;;-1:-1:-1;;;;;29662:30:0;;;;;29703:56;29720:4;29735:13;29751:7;29703:8;:56::i;:::-;29770:190;;-1:-1:-1;;;29770:190:0;;-1:-1:-1;;;;;29770:13:0;:64;;;;:190;;29849:7;;29871:1;;29887:4;;29914;;29934:15;;29770:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:154::-;-1:-1:-1;;;;;831:5:1;827:54;820:5;817:65;807:93;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1423:416::-;1488:6;1496;1549:2;1537:9;1528:7;1524:23;1520:32;1517:52;;;1565:1;1562;1555:12;1517:52;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1772:15;;1765:23;1753:36;;1743:64;;1803:1;1800;1793:12;1743:64;1826:7;1816:17;;;1423:416;;;;;:::o;2026:247::-;2085:6;2138:2;2126:9;2117:7;2113:23;2109:32;2106:52;;;2154:1;2151;2144:12;2106:52;2193:9;2180:23;2212:31;2237:5;2212:31;:::i;2278:456::-;2355:6;2363;2371;2424:2;2412:9;2403:7;2399:23;2395:32;2392:52;;;2440:1;2437;2430:12;2392:52;2479:9;2466:23;2498:31;2523:5;2498:31;:::i;:::-;2548:5;-1:-1:-1;2605:2:1;2590:18;;2577:32;2618:33;2577:32;2618:33;:::i;:::-;2278:456;;2670:7;;-1:-1:-1;;;2724:2:1;2709:18;;;;2696:32;;2278:456::o;3407:388::-;3475:6;3483;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3591:9;3578:23;3610:31;3635:5;3610:31;:::i;:::-;3660:5;-1:-1:-1;3717:2:1;3702:18;;3689:32;3730:33;3689:32;3730:33;:::i;3800:380::-;3879:1;3875:12;;;;3922;;;3943:61;;3997:4;3989:6;3985:17;3975:27;;3943:61;4050:2;4042:6;4039:14;4019:18;4016:38;4013:161;;4096:10;4091:3;4087:20;4084:1;4077:31;4131:4;4128:1;4121:15;4159:4;4156:1;4149:15;4013:161;;3800:380;;;:::o;4995:127::-;5056:10;5051:3;5047:20;5044:1;5037:31;5087:4;5084:1;5077:15;5111:4;5108:1;5101:15;5127:125;5192:9;;;5213:10;;;5210:36;;;5226:18;;:::i;6834:168::-;6907:9;;;6938;;6955:15;;;6949:22;;6935:37;6925:71;;6976:18;;:::i;7007:217::-;7047:1;7073;7063:132;;7117:10;7112:3;7108:20;7105:1;7098:31;7152:4;7149:1;7142:15;7180:4;7177:1;7170:15;7063:132;-1:-1:-1;7209:9:1;;7007:217::o;11878:128::-;11945:9;;;11966:11;;;11963:37;;;11980:18;;:::i;13872:127::-;13933:10;13928:3;13924:20;13921:1;13914:31;13964:4;13961:1;13954:15;13988:4;13985:1;13978:15;14004:251;14074:6;14127:2;14115:9;14106:7;14102:23;14098:32;14095:52;;;14143:1;14140;14133:12;14095:52;14175:9;14169:16;14194:31;14219:5;14194:31;:::i;14260:1026::-;14522:4;14570:3;14559:9;14555:19;14601:6;14590:9;14583:25;14627:2;14665:6;14660:2;14649:9;14645:18;14638:34;14708:3;14703:2;14692:9;14688:18;14681:31;14732:6;14767;14761:13;14798:6;14790;14783:22;14836:3;14825:9;14821:19;14814:26;;14875:2;14867:6;14863:15;14849:29;;14896:1;14906:218;14920:6;14917:1;14914:13;14906:218;;;14985:13;;-1:-1:-1;;;;;14981:62:1;14969:75;;15099:15;;;;15064:12;;;;14942:1;14935:9;14906:218;;;-1:-1:-1;;;;;;;15180:55:1;;;;15175:2;15160:18;;15153:83;-1:-1:-1;;;15267:3:1;15252:19;15245:35;15141:3;14260:1026;-1:-1:-1;;;14260:1026:1:o
Swarm Source
ipfs://0918513011b81c151a8c4bd568c8947d779817de4544ecb10a5df3c056ac7444
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.