Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 MAMBA
Holders
16
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000004714717 MAMBAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BlackMamba
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-22 */ /** $MAMBA bites bear! Telegram: https://t.me/blackmambatoken Twitter: https://twitter.com/mambaerc Website: https://blackmambaerc.com Medium: https://medium.com/@BlackMambaToken */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.24; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract BlackMamba is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyMarketingFee; uint256 public sellMarketingFee; uint256 public divisor; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Black Mamba", "MAMBA") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _sellMarketingFee = 0; uint256 _divisor = 100; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply * 3 / 100; // 3% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 3 / 100; // 3% from total supply maxWallet swapTokensAtAmount = (totalSupply * 20) / 100000; // 0.02% swap wallet buyMarketingFee = _buyMarketingFee; sellMarketingFee = _sellMarketingFee; divisor = _divisor; marketingWallet = address(0x840Eb992c3FfffcB33AC10040c782253af83dcA3); devWallet = address(0x986B1BF23F5149F9aa6eBD196E07620EB113b600); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee ) external onlyOwner { buyMarketingFee = _marketingFee; require(buyMarketingFee.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less"); } function updateSellFees( uint256 _marketingFee ) external onlyOwner { sellMarketingFee = _marketingFee; require(sellMarketingFee.mul(100).div(divisor) <= 30, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && from != devWallet && to != devWallet && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellMarketingFee > 0) { fees = amount.mul(sellMarketingFee).div(divisor); } // on buy else if (from == uniswapV2Pair && buyMarketingFee > 0) { fees = amount.mul(buyMarketingFee).div(divisor); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function swapTokensForETH(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, marketingWallet, block.timestamp ); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } uint256 swapAmount = min(amount, min(contractBalance, swapTokensAtAmount * 40)); swapTokensForETH(swapAmount); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805462ffffff1916600117905534801561001e575f80fd5b506040518060400160405280600b81526020016a426c61636b204d616d626160a81b815250604051806040016040528060058152602001644d414d424160d81b81525081600390816100709190610632565b50600461007d8282610632565b50505061009661009161034a60201b60201c565b61034e565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b681600161039f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156100fe573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061012291906106f1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561016d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061019191906106f1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156101db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101ff91906106f1565b6001600160a01b031660a081905261021890600161039f565b5f8060646a52b7d2dcc80cd2e400000081610234826003610732565b61023e919061074f565b600855606461024e826003610732565b610258919061074f565b600a55620186a061026a826014610732565b610274919061074f565b600955600c849055600d839055600e829055600680546001600160a01b031990811673840eb992c3ffffcb33ac10040c782253af83dca3179091556007805490911673986b1bf23f5149f9aa6ebd196e07620eb113b6001790556102ea6102e36005546001600160a01b031690565b6001610415565b6102f5306001610415565b61030261dead6001610415565b61031e6103176005546001600160a01b031690565b600161039f565b61032930600161039f565b61033661dead600161039f565b61034033826104ba565b5050505050610781565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146103eb5760405162461bcd60e51b815260206004820181905260248201525f8051602061257e83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461045c5760405162461bcd60e51b815260206004820181905260248201525f8051602061257e83398151915260448201526064016103e2565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166105105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e2565b8060025f828254610521919061076e565b90915550506001600160a01b0382165f908152602081905260408120805483929061054d90849061076e565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105c357607f821691505b6020821081036105e157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561059657805f5260205f20601f840160051c8101602085101561060c5750805b601f840160051c820191505b8181101561062b575f8155600101610618565b5050505050565b81516001600160401b0381111561064b5761064b61059b565b61065f8161065984546105af565b846105e7565b602080601f831160018114610692575f841561067b5750858301515b5f19600386901b1c1916600185901b1785556106e9565b5f85815260208120601f198616915b828110156106c0578886015182559484019460019091019084016106a1565b50858210156106dd57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215610701575f80fd5b81516001600160a01b0381168114610717575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107495761074961071e565b92915050565b5f8261076957634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107495761074961071e565b60805160a051611dab6107d35f395f818161039c0152818161121a015281816114260152818161152e015261159701525f81816102c30152818161189901528181611950015261198f0152611dab5ff3fe608060405260043610610220575f3560e01c80637bce5a041161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610661578063e2f45605146106a5578063eba4c333146106ba578063f2fde38b146106d9578063f8b45b05146106f8575f80fd5b8063bbc0c742146105d1578063c0246668146105ef578063c18bc1951461060e578063c8c8ebe41461062d578063d257b34f14610642575f80fd5b806392136913116100ee578063921369131461054b578063924de9b71461056057806395d89b411461057f578063a9059cbb14610593578063aacebbe3146105b2575f80fd5b80637bce5a04146104e65780638a8c523c146104fb5780638da5cb5b1461050f5780638ea5220f1461052c575f80fd5b806349bd5a5e116101aa578063715018a61161016f578063715018a61461046157806371fc468814610475578063751039fc146104945780637571336a146104a857806375f0a874146104c7575f80fd5b806349bd5a5e1461038b5780634a62bb65146103be5780634fbee193146103d75780636ddd17131461040e57806370a082311461042d575f80fd5b806318160ddd116101f057806318160ddd146102fd5780631f2dc5ef1461031b578063203e727e1461033057806323b872dd14610351578063313ce56714610370575f80fd5b806306fdde031461022b578063095ea7b31461025557806310d5de53146102845780631694505e146102b2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f61070d565b60405161024c9190611a01565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611a4a565b61079d565b604051901515815260200161024c565b34801561028f575f80fd5b5061027461029e366004611a74565b60106020525f908152604090205460ff1681565b3480156102bd575f80fd5b506102e57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b348015610308575f80fd5b506002545b60405190815260200161024c565b348015610326575f80fd5b5061030d600e5481565b34801561033b575f80fd5b5061034f61034a366004611a8f565b6107b3565b005b34801561035c575f80fd5b5061027461036b366004611aa6565b610899565b34801561037b575f80fd5b506040516012815260200161024c565b348015610396575f80fd5b506102e57f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c9575f80fd5b50600b546102749060ff1681565b3480156103e2575f80fd5b506102746103f1366004611a74565b6001600160a01b03165f908152600f602052604090205460ff1690565b348015610419575f80fd5b50600b546102749062010000900460ff1681565b348015610438575f80fd5b5061030d610447366004611a74565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b5061034f610941565b348015610480575f80fd5b5061034f61048f366004611a8f565b610976565b34801561049f575f80fd5b50610274610a11565b3480156104b3575f80fd5b5061034f6104c2366004611af3565b610a4d565b3480156104d2575f80fd5b506006546102e5906001600160a01b031681565b3480156104f1575f80fd5b5061030d600c5481565b348015610506575f80fd5b5061034f610aa1565b34801561051a575f80fd5b506005546001600160a01b03166102e5565b348015610537575f80fd5b506007546102e5906001600160a01b031681565b348015610556575f80fd5b5061030d600d5481565b34801561056b575f80fd5b5061034f61057a366004611b26565b610ade565b34801561058a575f80fd5b5061023f610b24565b34801561059e575f80fd5b506102746105ad366004611a4a565b610b33565b3480156105bd575f80fd5b5061034f6105cc366004611a74565b610b3f565b3480156105dc575f80fd5b50600b5461027490610100900460ff1681565b3480156105fa575f80fd5b5061034f610609366004611af3565b610bc5565b348015610619575f80fd5b5061034f610628366004611a8f565b610c4d565b348015610638575f80fd5b5061030d60085481565b34801561064d575f80fd5b5061027461065c366004611a8f565b610d1e565b34801561066c575f80fd5b5061030d61067b366004611b3f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106b0575f80fd5b5061030d60095481565b3480156106c5575f80fd5b5061034f6106d4366004611a8f565b610e74565b3480156106e4575f80fd5b5061034f6106f3366004611a74565b610eb8565b348015610703575f80fd5b5061030d600a5481565b60606003805461071c90611b76565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611b76565b80156107935780601f1061076a57610100808354040283529160200191610793565b820191905f5260205f20905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b5f6107a9338484610f50565b5060015b92915050565b6005546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611ba8565b60405180910390fd5b670de0b6b3a76400006103e86107fb60025490565b610806906001611bf1565b6108109190611c08565b61081a9190611c08565b8110156108815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107dd565b61089381670de0b6b3a7640000611bf1565b60085550565b5f6108a5848484611073565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107dd565b6109368533858403610f50565b506001949350505050565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107dd90611ba8565b6109745f61162c565b565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107dd90611ba8565b600c819055600e54601e906109c0906109ba84606461167d565b9061168f565b1115610a0e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c65737300000060448201526064016107dd565b50565b6005545f906001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107dd90611ba8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610a775760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107dd90611ba8565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107dd90611ba8565b600b8054911515620100000262ff000019909216919091179055565b60606004805461071c90611b76565b5f6107a9338484611073565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016107dd90611ba8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016107dd90611ba8565b670de0b6b3a76400006103e8610c8c60025490565b610c97906005611bf1565b610ca19190611c08565b610cab9190611c08565b811015610d065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107dd565b610d1881670de0b6b3a7640000611bf1565b600a5550565b6005545f906001600160a01b03163314610d4a5760405162461bcd60e51b81526004016107dd90611ba8565b620186a0610d5760025490565b610d62906001611bf1565b610d6c9190611c08565b821015610dd95760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107dd565b6103e8610de560025490565b610df0906005611bf1565b610dfa9190611c08565b821115610e665760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107dd565b50600981905560015b919050565b6005546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016107dd90611ba8565b600d819055600e54601e906109c0906109ba84606461167d565b6005546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a0e8161162c565b6001600160a01b038316610fb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6001600160a01b0382166110135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110995760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166110bf5760405162461bcd60e51b81526004016107dd90611c6c565b805f036110d6576110d183835f61169a565b505050565b600b5460ff16156113dc576005546001600160a01b0384811691161480159061110d57506005546001600160a01b03838116911614155b801561112757506007546001600160a01b03848116911614155b801561114157506007546001600160a01b03838116911614155b801561115557506001600160a01b03821615155b801561116c57506001600160a01b03821661dead14155b80156111825750600554600160a01b900460ff16155b156113dc57600b54610100900460ff16611218576001600160a01b0383165f908152600f602052604090205460ff16806111d357506001600160a01b0382165f908152600f602052604090205460ff165b6112185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561127157506001600160a01b0382165f9081526010602052604090205460ff16155b15611354576008548111156112e65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107dd565b600a546001600160a01b0383165f9081526020819052604090205461130b9083611caf565b111561134f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b6113dc565b6001600160a01b0382165f9081526010602052604090205460ff166113dc57600a546001600160a01b0383165f908152602081905260409020546113989083611caf565b11156113dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b305f90815260208190526040902054600954811080159081906114075750600b5462010000900460ff165b801561141d5750600554600160a01b900460ff16155b801561145a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561147e57506001600160a01b0385165f908152600f602052604090205460ff16155b80156114a257506001600160a01b0384165f908152600f602052604090205460ff16155b156114d1576005805460ff60a01b1916600160a01b1790556114c3836117ed565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168061151d57506001600160a01b0385165f908152600f602052604090205460ff165b1561152557505f5b5f8115611618577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561156e57505f600d54115b156115955761158e600e546109ba600d548861167d90919063ffffffff16565b90506115fa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156115d757505f600c54115b156115fa576115f7600e546109ba600c548861167d90919063ffffffff16565b90505b801561160b5761160b87308361169a565b6116158186611cc2565b94505b61162387878761169a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6116888284611bf1565b9392505050565b5f6116888284611c08565b6001600160a01b0383166116c05760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166116e65760405162461bcd60e51b81526004016107dd90611c6c565b6001600160a01b0383165f908152602081905260409020548181101561175d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107dd565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611793908490611caf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117df91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611808575050565b5f611825836118208460095460286118209190611bf1565b611830565b90506110d181611844565b5f81831161183e5782611688565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061187757611877611cd5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119179190611ce9565b8160018151811061192a5761192a611cd5565b60200260200101906001600160a01b031690816001600160a01b031681525050611975307f000000000000000000000000000000000000000000000000000000000000000084610f50565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926119d09287925f92889291909116904290600401611d04565b5f604051808303815f87803b1580156119e7575f80fd5b505af11580156119f9573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a0e575f80fd5b5f8060408385031215611a5b575f80fd5b8235611a6681611a36565b946020939093013593505050565b5f60208284031215611a84575f80fd5b813561168881611a36565b5f60208284031215611a9f575f80fd5b5035919050565b5f805f60608486031215611ab8575f80fd5b8335611ac381611a36565b92506020840135611ad381611a36565b929592945050506040919091013590565b80358015158114610e6f575f80fd5b5f8060408385031215611b04575f80fd5b8235611b0f81611a36565b9150611b1d60208401611ae4565b90509250929050565b5f60208284031215611b36575f80fd5b61168882611ae4565b5f8060408385031215611b50575f80fd5b8235611b5b81611a36565b91506020830135611b6b81611a36565b809150509250929050565b600181811c90821680611b8a57607f821691505b60208210810361183e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ad576107ad611bdd565b5f82611c2257634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156107ad576107ad611bdd565b818103818111156107ad576107ad611bdd565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611cf9575f80fd5b815161168881611a36565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611d545784516001600160a01b031683529383019391830191600101611d2f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209df91a2fecc1521b527bb64ba0348303dd940c8252c2bb6e9f4240239f9b501764736f6c634300081900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610220575f3560e01c80637bce5a041161011e578063bbc0c742116100a8578063dd62ed3e1161006d578063dd62ed3e14610661578063e2f45605146106a5578063eba4c333146106ba578063f2fde38b146106d9578063f8b45b05146106f8575f80fd5b8063bbc0c742146105d1578063c0246668146105ef578063c18bc1951461060e578063c8c8ebe41461062d578063d257b34f14610642575f80fd5b806392136913116100ee578063921369131461054b578063924de9b71461056057806395d89b411461057f578063a9059cbb14610593578063aacebbe3146105b2575f80fd5b80637bce5a04146104e65780638a8c523c146104fb5780638da5cb5b1461050f5780638ea5220f1461052c575f80fd5b806349bd5a5e116101aa578063715018a61161016f578063715018a61461046157806371fc468814610475578063751039fc146104945780637571336a146104a857806375f0a874146104c7575f80fd5b806349bd5a5e1461038b5780634a62bb65146103be5780634fbee193146103d75780636ddd17131461040e57806370a082311461042d575f80fd5b806318160ddd116101f057806318160ddd146102fd5780631f2dc5ef1461031b578063203e727e1461033057806323b872dd14610351578063313ce56714610370575f80fd5b806306fdde031461022b578063095ea7b31461025557806310d5de53146102845780631694505e146102b2575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f61070d565b60405161024c9190611a01565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611a4a565b61079d565b604051901515815260200161024c565b34801561028f575f80fd5b5061027461029e366004611a74565b60106020525f908152604090205460ff1681565b3480156102bd575f80fd5b506102e57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b348015610308575f80fd5b506002545b60405190815260200161024c565b348015610326575f80fd5b5061030d600e5481565b34801561033b575f80fd5b5061034f61034a366004611a8f565b6107b3565b005b34801561035c575f80fd5b5061027461036b366004611aa6565b610899565b34801561037b575f80fd5b506040516012815260200161024c565b348015610396575f80fd5b506102e57f0000000000000000000000000bc024d40de53a2c161b9182d7799f97510be0d581565b3480156103c9575f80fd5b50600b546102749060ff1681565b3480156103e2575f80fd5b506102746103f1366004611a74565b6001600160a01b03165f908152600f602052604090205460ff1690565b348015610419575f80fd5b50600b546102749062010000900460ff1681565b348015610438575f80fd5b5061030d610447366004611a74565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b5061034f610941565b348015610480575f80fd5b5061034f61048f366004611a8f565b610976565b34801561049f575f80fd5b50610274610a11565b3480156104b3575f80fd5b5061034f6104c2366004611af3565b610a4d565b3480156104d2575f80fd5b506006546102e5906001600160a01b031681565b3480156104f1575f80fd5b5061030d600c5481565b348015610506575f80fd5b5061034f610aa1565b34801561051a575f80fd5b506005546001600160a01b03166102e5565b348015610537575f80fd5b506007546102e5906001600160a01b031681565b348015610556575f80fd5b5061030d600d5481565b34801561056b575f80fd5b5061034f61057a366004611b26565b610ade565b34801561058a575f80fd5b5061023f610b24565b34801561059e575f80fd5b506102746105ad366004611a4a565b610b33565b3480156105bd575f80fd5b5061034f6105cc366004611a74565b610b3f565b3480156105dc575f80fd5b50600b5461027490610100900460ff1681565b3480156105fa575f80fd5b5061034f610609366004611af3565b610bc5565b348015610619575f80fd5b5061034f610628366004611a8f565b610c4d565b348015610638575f80fd5b5061030d60085481565b34801561064d575f80fd5b5061027461065c366004611a8f565b610d1e565b34801561066c575f80fd5b5061030d61067b366004611b3f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106b0575f80fd5b5061030d60095481565b3480156106c5575f80fd5b5061034f6106d4366004611a8f565b610e74565b3480156106e4575f80fd5b5061034f6106f3366004611a74565b610eb8565b348015610703575f80fd5b5061030d600a5481565b60606003805461071c90611b76565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611b76565b80156107935780601f1061076a57610100808354040283529160200191610793565b820191905f5260205f20905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b5f6107a9338484610f50565b5060015b92915050565b6005546001600160a01b031633146107e65760405162461bcd60e51b81526004016107dd90611ba8565b60405180910390fd5b670de0b6b3a76400006103e86107fb60025490565b610806906001611bf1565b6108109190611c08565b61081a9190611c08565b8110156108815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107dd565b61089381670de0b6b3a7640000611bf1565b60085550565b5f6108a5848484611073565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107dd565b6109368533858403610f50565b506001949350505050565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107dd90611ba8565b6109745f61162c565b565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107dd90611ba8565b600c819055600e54601e906109c0906109ba84606461167d565b9061168f565b1115610a0e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c65737300000060448201526064016107dd565b50565b6005545f906001600160a01b03163314610a3d5760405162461bcd60e51b81526004016107dd90611ba8565b50600b805460ff19169055600190565b6005546001600160a01b03163314610a775760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107dd90611ba8565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610b085760405162461bcd60e51b81526004016107dd90611ba8565b600b8054911515620100000262ff000019909216919091179055565b60606004805461071c90611b76565b5f6107a9338484611073565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016107dd90611ba8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610bef5760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016107dd90611ba8565b670de0b6b3a76400006103e8610c8c60025490565b610c97906005611bf1565b610ca19190611c08565b610cab9190611c08565b811015610d065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107dd565b610d1881670de0b6b3a7640000611bf1565b600a5550565b6005545f906001600160a01b03163314610d4a5760405162461bcd60e51b81526004016107dd90611ba8565b620186a0610d5760025490565b610d62906001611bf1565b610d6c9190611c08565b821015610dd95760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107dd565b6103e8610de560025490565b610df0906005611bf1565b610dfa9190611c08565b821115610e665760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107dd565b50600981905560015b919050565b6005546001600160a01b03163314610e9e5760405162461bcd60e51b81526004016107dd90611ba8565b600d819055600e54601e906109c0906109ba84606461167d565b6005546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107dd90611ba8565b6001600160a01b038116610f475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107dd565b610a0e8161162c565b6001600160a01b038316610fb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107dd565b6001600160a01b0382166110135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110995760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166110bf5760405162461bcd60e51b81526004016107dd90611c6c565b805f036110d6576110d183835f61169a565b505050565b600b5460ff16156113dc576005546001600160a01b0384811691161480159061110d57506005546001600160a01b03838116911614155b801561112757506007546001600160a01b03848116911614155b801561114157506007546001600160a01b03838116911614155b801561115557506001600160a01b03821615155b801561116c57506001600160a01b03821661dead14155b80156111825750600554600160a01b900460ff16155b156113dc57600b54610100900460ff16611218576001600160a01b0383165f908152600f602052604090205460ff16806111d357506001600160a01b0382165f908152600f602052604090205460ff165b6112185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107dd565b7f0000000000000000000000000bc024d40de53a2c161b9182d7799f97510be0d56001600160a01b0316836001600160a01b031614801561127157506001600160a01b0382165f9081526010602052604090205460ff16155b15611354576008548111156112e65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107dd565b600a546001600160a01b0383165f9081526020819052604090205461130b9083611caf565b111561134f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b6113dc565b6001600160a01b0382165f9081526010602052604090205460ff166113dc57600a546001600160a01b0383165f908152602081905260409020546113989083611caf565b11156113dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107dd565b305f90815260208190526040902054600954811080159081906114075750600b5462010000900460ff165b801561141d5750600554600160a01b900460ff16155b801561145a57507f0000000000000000000000000bc024d40de53a2c161b9182d7799f97510be0d56001600160a01b0316846001600160a01b0316145b801561147e57506001600160a01b0385165f908152600f602052604090205460ff16155b80156114a257506001600160a01b0384165f908152600f602052604090205460ff16155b156114d1576005805460ff60a01b1916600160a01b1790556114c3836117ed565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168061151d57506001600160a01b0385165f908152600f602052604090205460ff165b1561152557505f5b5f8115611618577f0000000000000000000000000bc024d40de53a2c161b9182d7799f97510be0d56001600160a01b0316866001600160a01b031614801561156e57505f600d54115b156115955761158e600e546109ba600d548861167d90919063ffffffff16565b90506115fa565b7f0000000000000000000000000bc024d40de53a2c161b9182d7799f97510be0d56001600160a01b0316876001600160a01b03161480156115d757505f600c54115b156115fa576115f7600e546109ba600c548861167d90919063ffffffff16565b90505b801561160b5761160b87308361169a565b6116158186611cc2565b94505b61162387878761169a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6116888284611bf1565b9392505050565b5f6116888284611c08565b6001600160a01b0383166116c05760405162461bcd60e51b81526004016107dd90611c27565b6001600160a01b0382166116e65760405162461bcd60e51b81526004016107dd90611c6c565b6001600160a01b0383165f908152602081905260409020548181101561175d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107dd565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611793908490611caf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117df91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611808575050565b5f611825836118208460095460286118209190611bf1565b611830565b90506110d181611844565b5f81831161183e5782611688565b50919050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061187757611877611cd5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119179190611ce9565b8160018151811061192a5761192a611cd5565b60200260200101906001600160a01b031690816001600160a01b031681525050611975307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f50565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926119d09287925f92889291909116904290600401611d04565b5f604051808303815f87803b1580156119e7575f80fd5b505af11580156119f9573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a0e575f80fd5b5f8060408385031215611a5b575f80fd5b8235611a6681611a36565b946020939093013593505050565b5f60208284031215611a84575f80fd5b813561168881611a36565b5f60208284031215611a9f575f80fd5b5035919050565b5f805f60608486031215611ab8575f80fd5b8335611ac381611a36565b92506020840135611ad381611a36565b929592945050506040919091013590565b80358015158114610e6f575f80fd5b5f8060408385031215611b04575f80fd5b8235611b0f81611a36565b9150611b1d60208401611ae4565b90509250929050565b5f60208284031215611b36575f80fd5b61168882611ae4565b5f8060408385031215611b50575f80fd5b8235611b5b81611a36565b91506020830135611b6b81611a36565b809150509250929050565b600181811c90821680611b8a57607f821691505b60208210810361183e57634e487b7160e01b5f52602260045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107ad576107ad611bdd565b5f82611c2257634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808201808211156107ad576107ad611bdd565b818103818111156107ad576107ad611bdd565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611cf9575f80fd5b815161168881611a36565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611d545784516001600160a01b031683529383019391830191600101611d2f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209df91a2fecc1521b527bb64ba0348303dd940c8252c2bb6e9f4240239f9b501764736f6c63430008190033
Deployed Bytecode Sourcemap
24925:10027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9728:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11895:169;;;;;;;;;;-1:-1:-1;11895:169:0;;;;;:::i;:::-;;:::i;:::-;;;1058:14:1;;1051:22;1033:41;;1021:2;1006:18;11895:169:0;893:187:1;25693:63:0;;;;;;;;;;-1:-1:-1;25693:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25005:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1527:32:1;;;1509:51;;1497:2;1482:18;25005:51:0;1337:229:1;10848:108:0;;;;;;;;;;-1:-1:-1;10936:12:0;;10848:108;;;1717:25:1;;;1705:2;1690:18;10848:108:0;1571:177:1;25522:22:0;;;;;;;;;;;;;;;;28700:275;;;;;;;;;;-1:-1:-1;28700:275:0;;;;;:::i;:::-;;:::i;:::-;;12546:492;;;;;;;;;;-1:-1:-1;12546:492:0;;;;;:::i;:::-;;:::i;10690:93::-;;;;;;;;;;-1:-1:-1;10690:93:0;;10773:2;2541:36:1;;2529:2;2514:18;10690:93:0;2399:184:1;25063:38:0;;;;;;;;;;;;;;;25325:33;;;;;;;;;;-1:-1:-1;25325:33:0;;;;;;;;30522:126;;;;;;;;;;-1:-1:-1;30522:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30612:28:0;30588:4;30612:28;;;:19;:28;;;;;;;;;30522:126;25405:31;;;;;;;;;;-1:-1:-1;25405:31:0;;;;;;;;;;;11019:127;;;;;;;;;;-1:-1:-1;11019:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11120:18:0;11093:7;11120:18;;;;;;;;;;;;11019:127;2963:103;;;;;;;;;;;;;:::i;29618:227::-;;;;;;;;;;-1:-1:-1;29618:227:0;;;;;:::i;:::-;;:::i;28004:121::-;;;;;;;;;;;;;:::i;29247:167::-;;;;;;;;;;-1:-1:-1;29247:167:0;;;;;:::i;:::-;;:::i;25140:30::-;;;;;;;;;;-1:-1:-1;25140:30:0;;;;-1:-1:-1;;;;;25140:30:0;;;25445;;;;;;;;;;;;;;;;27840:112;;;;;;;;;;;;;:::i;2312:87::-;;;;;;;;;;-1:-1:-1;2385:6:0;;-1:-1:-1;;;;;2385:6:0;2312:87;;25177:24;;;;;;;;;;-1:-1:-1;25177:24:0;;;;-1:-1:-1;;;;;25177:24:0;;;25482:31;;;;;;;;;;;;;;;;29510:100;;;;;;;;;;-1:-1:-1;29510:100:0;;;;;:::i;:::-;;:::i;9947:104::-;;;;;;;;;;;;;:::i;11359:175::-;;;;;;;;;;-1:-1:-1;11359:175:0;;;;;:::i;:::-;;:::i;30281:231::-;;;;;;;;;;-1:-1:-1;30281:231:0;;;;;:::i;:::-;;:::i;25365:33::-;;;;;;;;;;-1:-1:-1;25365:33:0;;;;;;;;;;;30091:182;;;;;;;;;;-1:-1:-1;30091:182:0;;;;;:::i;:::-;;:::i;28983:256::-;;;;;;;;;;-1:-1:-1;28983:256:0;;;;;:::i;:::-;;:::i;25210:35::-;;;;;;;;;;;;;;;;28195:497;;;;;;;;;;-1:-1:-1;28195:497:0;;;;;:::i;:::-;;:::i;11597:151::-;;;;;;;;;;-1:-1:-1;11597:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11713:18:0;;;11686:7;11713:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11597:151;25252:33;;;;;;;;;;;;;;;;29853:230;;;;;;;;;;-1:-1:-1;29853:230:0;;;;;:::i;:::-;;:::i;3221:201::-;;;;;;;;;;-1:-1:-1;3221:201:0;;;;;:::i;:::-;;:::i;25292:24::-;;;;;;;;;;;;;;;;9728:100;9782:13;9815:5;9808:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9728:100;:::o;11895:169::-;11978:4;11995:39;1065:10;12018:7;12027:6;11995:8;:39::i;:::-;-1:-1:-1;12052:4:0;11895:169;;;;;:::o;28700:275::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;;;;;;;;;28837:4:::1;28829;28808:13;10936:12:::0;;;10848:108;28808:13:::1;:17;::::0;28824:1:::1;28808:17;:::i;:::-;28807:26;;;;:::i;:::-;28806:35;;;;:::i;:::-;28796:6;:45;;28774:142;;;::::0;-1:-1:-1;;;28774:142:0;;5334:2:1;28774:142:0::1;::::0;::::1;5316:21:1::0;5373:2;5353:18;;;5346:30;5412:34;5392:18;;;5385:62;-1:-1:-1;;;5463:18:1;;;5456:45;5518:19;;28774:142:0::1;5132:411:1::0;28774:142:0::1;28950:17;:6:::0;28960::::1;28950:17;:::i;:::-;28927:20;:40:::0;-1:-1:-1;28700:275:0:o;12546:492::-;12686:4;12703:36;12713:6;12721:9;12732:6;12703:9;:36::i;:::-;-1:-1:-1;;;;;12779:19:0;;12752:24;12779:19;;;:11;:19;;;;;;;;1065:10;12779:33;;;;;;;;12831:26;;;;12823:79;;;;-1:-1:-1;;;12823:79:0;;5750:2:1;12823:79:0;;;5732:21:1;5789:2;5769:18;;;5762:30;5828:34;5808:18;;;5801:62;-1:-1:-1;;;5879:18:1;;;5872:38;5927:19;;12823:79:0;5548:404:1;12823:79:0;12938:57;12947:6;1065:10;12988:6;12969:16;:25;12938:8;:57::i;:::-;-1:-1:-1;13026:4:0;;12546:492;-1:-1:-1;;;;12546:492:0:o;2963:103::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;3028:30:::1;3055:1;3028:18;:30::i;:::-;2963:103::o:0;29618:227::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;29710:15:::1;:31:::0;;;29789:7:::1;::::0;29801:2:::1;::::0;29760:37:::1;::::0;:24:::1;29728:13:::0;29780:3:::1;29760:19;:24::i;:::-;:28:::0;::::1;:37::i;:::-;:43;;29752:85;;;::::0;-1:-1:-1;;;29752:85:0;;6159:2:1;29752:85:0::1;::::0;::::1;6141:21:1::0;6198:2;6178:18;;;6171:30;6237:31;6217:18;;;6210:59;6286:18;;29752:85:0::1;5957:353:1::0;29752:85:0::1;29618:227:::0;:::o;28004:121::-;2385:6;;28056:4;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;-1:-1:-1;28073:14:0::1;:22:::0;;-1:-1:-1;;28073:22:0::1;::::0;;;28004:121;:::o;29247:167::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29360:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29360:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29247:167::o;27840:112::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;27895:13:::1;:20:::0;;-1:-1:-1;;27926:18:0;;;;;27840:112::o;29510:100::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;29581:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29581:21:0;;::::1;::::0;;;::::1;::::0;;29510:100::o;9947:104::-;10003:13;10036:7;10029:14;;;;;:::i;11359:175::-;11445:4;11462:42;1065:10;11486:9;11497:6;11462:9;:42::i;30281:231::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;30441:15:::1;::::0;30398:59:::1;::::0;-1:-1:-1;;;;;30441:15:0;;::::1;::::0;30398:59;::::1;::::0;::::1;::::0;30441:15:::1;::::0;30398:59:::1;30468:15;:36:::0;;-1:-1:-1;;;;;;30468:36:0::1;-1:-1:-1::0;;;;;30468:36:0;;;::::1;::::0;;;::::1;::::0;;30281:231::o;30091:182::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30176:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30176:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30231:34;;1033:41:1;;;30231:34:0::1;::::0;1006:18:1;30231:34:0::1;;;;;;;30091:182:::0;;:::o;28983:256::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;29123:4:::1;29115;29094:13;10936:12:::0;;;10848:108;29094:13:::1;:17;::::0;29110:1:::1;29094:17;:::i;:::-;29093:26;;;;:::i;:::-;29092:35;;;;:::i;:::-;29082:6;:45;;29060:131;;;::::0;-1:-1:-1;;;29060:131:0;;6517:2:1;29060:131:0::1;::::0;::::1;6499:21:1::0;6556:2;6536:18;;;6529:30;6595:34;6575:18;;;6568:62;-1:-1:-1;;;6646:18:1;;;6639:34;6690:19;;29060:131:0::1;6315:400:1::0;29060:131:0::1;29214:17;:6:::0;29224::::1;29214:17;:::i;:::-;29202:9;:29:::0;-1:-1:-1;28983:256:0:o;28195:497::-;2385:6;;28303:4;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;28382:6:::1;28361:13;10936:12:::0;;;10848:108;28361:13:::1;:17;::::0;28377:1:::1;28361:17;:::i;:::-;28360:28;;;;:::i;:::-;28347:9;:41;;28325:144;;;::::0;-1:-1:-1;;;28325:144:0;;6922:2:1;28325:144:0::1;::::0;::::1;6904:21:1::0;6961:2;6941:18;;;6934:30;7000:34;6980:18;;;6973:62;-1:-1:-1;;;7051:18:1;;;7044:51;7112:19;;28325:144:0::1;6720:417:1::0;28325:144:0::1;28537:4;28516:13;10936:12:::0;;;10848:108;28516:13:::1;:17;::::0;28532:1:::1;28516:17;:::i;:::-;28515:26;;;;:::i;:::-;28502:9;:39;;28480:141;;;::::0;-1:-1:-1;;;28480:141:0;;7344:2:1;28480:141:0::1;::::0;::::1;7326:21:1::0;7383:2;7363:18;;;7356:30;7422:34;7402:18;;;7395:62;-1:-1:-1;;;7473:18:1;;;7466:50;7533:19;;28480:141:0::1;7142:416:1::0;28480:141:0::1;-1:-1:-1::0;28632:18:0::1;:30:::0;;;28680:4:::1;2603:1;28195:497:::0;;;:::o;29853:230::-;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;29946:16:::1;:32:::0;;;30027:7:::1;::::0;30039:2:::1;::::0;29997:38:::1;::::0;:25:::1;29965:13:::0;30018:3:::1;29997:20;:25::i;3221:201::-:0;2385:6;;-1:-1:-1;;;;;2385:6:0;1065:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3310:22:0;::::1;3302:73;;;::::0;-1:-1:-1;;;3302:73:0;;7765:2:1;3302:73:0::1;::::0;::::1;7747:21:1::0;7804:2;7784:18;;;7777:30;7843:34;7823:18;;;7816:62;-1:-1:-1;;;7894:18:1;;;7887:36;7940:19;;3302:73:0::1;7563:402:1::0;3302:73:0::1;3386:28;3405:8;3386:18;:28::i;15387:380::-:0;-1:-1:-1;;;;;15523:19:0;;15515:68;;;;-1:-1:-1;;;15515:68:0;;8172:2:1;15515:68:0;;;8154:21:1;8211:2;8191:18;;;8184:30;8250:34;8230:18;;;8223:62;-1:-1:-1;;;8301:18:1;;;8294:34;8345:19;;15515:68:0;7970:400:1;15515:68:0;-1:-1:-1;;;;;15602:21:0;;15594:68;;;;-1:-1:-1;;;15594:68:0;;8577:2:1;15594:68:0;;;8559:21:1;8616:2;8596:18;;;8589:30;8655:34;8635:18;;;8628:62;-1:-1:-1;;;8706:18:1;;;8699:32;8748:19;;15594:68:0;8375:398:1;15594:68:0;-1:-1:-1;;;;;15675:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15727:32;;1717:25:1;;;15727:32:0;;1690:18:1;15727:32:0;;;;;;;15387:380;;;:::o;30656:3265::-;-1:-1:-1;;;;;30788:18:0;;30780:68;;;;-1:-1:-1;;;30780:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30867:16:0;;30859:64;;;;-1:-1:-1;;;30859:64:0;;;;;;;:::i;:::-;30940:6;30950:1;30940:11;30936:93;;30968:28;30984:4;30990:2;30994:1;30968:15;:28::i;:::-;30656:3265;;;:::o;30936:93::-;31045:14;;;;31041:1504;;;2385:6;;-1:-1:-1;;;;;31098:15:0;;;2385:6;;31098:15;;;;:49;;-1:-1:-1;2385:6:0;;-1:-1:-1;;;;;31134:13:0;;;2385:6;;31134:13;;31098:49;:87;;;;-1:-1:-1;31176:9:0;;-1:-1:-1;;;;;31168:17:0;;;31176:9;;31168:17;;31098:87;:123;;;;-1:-1:-1;31212:9:0;;-1:-1:-1;;;;;31206:15:0;;;31212:9;;31206:15;;31098:123;:160;;;;-1:-1:-1;;;;;;31242:16:0;;;;31098:160;:202;;;;-1:-1:-1;;;;;;31279:21:0;;31293:6;31279:21;;31098:202;:232;;;;-1:-1:-1;31322:8:0;;-1:-1:-1;;;31322:8:0;;;;31321:9;31098:232;31076:1458;;;31370:13;;;;;;;31365:223;;-1:-1:-1;;;;;31442:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31471:23:0;;;;;;:19;:23;;;;;;;;31442:52;31408:160;;;;-1:-1:-1;;;31408:160:0;;9790:2:1;31408:160:0;;;9772:21:1;9829:2;9809:18;;;9802:30;-1:-1:-1;;;9848:18:1;;;9841:52;9910:18;;31408:160:0;9588:346:1;31408:160:0;31802:13;-1:-1:-1;;;;;31794:21:0;:4;-1:-1:-1;;;;;31794:21:0;;:82;;;;-1:-1:-1;;;;;;31841:35:0;;;;;;:31;:35;;;;;;;;31840:36;31794:82;31768:751;;;31963:20;;31953:6;:30;;31919:169;;;;-1:-1:-1;;;31919:169:0;;10141:2:1;31919:169:0;;;10123:21:1;10180:2;10160:18;;;10153:30;10219:34;10199:18;;;10192:62;-1:-1:-1;;;10270:18:1;;;10263:51;10331:19;;31919:169:0;9939:417:1;31919:169:0;32171:9;;-1:-1:-1;;;;;11120:18:0;;11093:7;11120:18;;;;;;;;;;;32145:22;;:6;:22;:::i;:::-;:35;;32111:140;;;;-1:-1:-1;;;32111:140:0;;10693:2:1;32111:140:0;;;10675:21:1;10732:2;10712:18;;;10705:30;-1:-1:-1;;;10751:18:1;;;10744:49;10810:18;;32111:140:0;10491:343:1;32111:140:0;31768:751;;;-1:-1:-1;;;;;32299:35:0;;;;;;:31;:35;;;;;;;;32294:225;;32419:9;;-1:-1:-1;;;;;11120:18:0;;11093:7;11120:18;;;;;;;;;;;32393:22;;:6;:22;:::i;:::-;:35;;32359:140;;;;-1:-1:-1;;;32359:140:0;;10693:2:1;32359:140:0;;;10675:21:1;10732:2;10712:18;;;10705:30;-1:-1:-1;;;10751:18:1;;;10744:49;10810:18;;32359:140:0;10491:343:1;32359:140:0;32606:4;32557:28;11120:18;;;;;;;;;;;32664;;32640:42;;;;;;;32713:35;;-1:-1:-1;32737:11:0;;;;;;;32713:35;:61;;;;-1:-1:-1;32766:8:0;;-1:-1:-1;;;32766:8:0;;;;32765:9;32713:61;:97;;;;;32797:13;-1:-1:-1;;;;;32791:19:0;:2;-1:-1:-1;;;;;32791:19:0;;32713:97;:140;;;;-1:-1:-1;;;;;;32828:25:0;;;;;;:19;:25;;;;;;;;32827:26;32713:140;:181;;;;-1:-1:-1;;;;;;32871:23:0;;;;;;:19;:23;;;;;;;;32870:24;32713:181;32695:319;;;32921:8;:15;;-1:-1:-1;;;;32921:15:0;-1:-1:-1;;;32921:15:0;;;32953:16;32962:6;32953:8;:16::i;:::-;32986:8;:16;;-1:-1:-1;;;;32986:16:0;;;32695:319;33042:8;;-1:-1:-1;;;;;33152:25:0;;33026:12;33152:25;;;:19;:25;;;;;;33042:8;-1:-1:-1;;;33042:8:0;;;;;33041:9;;33152:25;;:52;;-1:-1:-1;;;;;;33181:23:0;;;;;;:19;:23;;;;;;;;33152:52;33148:100;;;-1:-1:-1;33231:5:0;33148:100;33260:12;33365:7;33361:507;;;33423:13;-1:-1:-1;;;;;33417:19:0;:2;-1:-1:-1;;;;;33417:19:0;;:43;;;;;33459:1;33440:16;;:20;33417:43;33413:306;;;33488:41;33521:7;;33488:28;33499:16;;33488:6;:10;;:28;;;;:::i;:41::-;33481:48;;33413:306;;;33599:13;-1:-1:-1;;;;;33591:21:0;:4;-1:-1:-1;;;;;33591:21:0;;:44;;;;;33634:1;33616:15;;:19;33591:44;33587:132;;;33663:40;33695:7;;33663:27;33674:15;;33663:6;:10;;:27;;;;:::i;:40::-;33656:47;;33587:132;33739:8;;33735:91;;33768:42;33784:4;33798;33805;33768:15;:42::i;:::-;33842:14;33852:4;33842:14;;:::i;:::-;;;33361:507;33880:33;33896:4;33902:2;33906:6;33880:15;:33::i;:::-;30769:3152;;;;30656:3265;;;:::o;3582:191::-;3675:6;;;-1:-1:-1;;;;;3692:17:0;;;-1:-1:-1;;;;;;3692:17:0;;;;;;;3725:40;;3675:6;;;3692:17;3675:6;;3725:40;;3656:16;;3725:40;3645:128;3582:191;:::o;20840:98::-;20898:7;20925:5;20929:1;20925;:5;:::i;:::-;20918:12;20840:98;-1:-1:-1;;;20840:98:0:o;21239:::-;21297:7;21324:5;21328:1;21324;:5;:::i;13528:733::-;-1:-1:-1;;;;;13668:20:0;;13660:70;;;;-1:-1:-1;;;13660:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13749:23:0;;13741:71;;;;-1:-1:-1;;;13741:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13909:17:0;;13885:21;13909:17;;;;;;;;;;;13945:23;;;;13937:74;;;;-1:-1:-1;;;13937:74:0;;11174:2:1;13937:74:0;;;11156:21:1;11213:2;11193:18;;;11186:30;11252:34;11232:18;;;11225:62;-1:-1:-1;;;11303:18:1;;;11296:36;11349:19;;13937:74:0;10972:402:1;13937:74:0;-1:-1:-1;;;;;14047:17:0;;;:9;:17;;;;;;;;;;;14067:22;;;14047:42;;14111:20;;;;;;;;:30;;14083:6;;14047:9;14111:30;;14083:6;;14111:30;:::i;:::-;;;;;;;;14176:9;-1:-1:-1;;;;;14159:35:0;14168:6;-1:-1:-1;;;;;14159:35:0;;14187:6;14159:35;;;;1717:25:1;;1705:2;1690:18;;1571:177;14159:35:0;;;;;;;;13649:612;13528:733;;;:::o;34634:313::-;34731:4;34687:23;11120:18;;;;;;;;;;;;34752:20;;;34748:59;;34789:7;34634:313;:::o;34748:59::-;34819:18;34840:58;34844:6;34852:45;34856:15;34873:18;;34894:2;34873:23;;;;:::i;:::-;34852:3;:45::i;34840:58::-;34819:79;;34911:28;34928:10;34911:16;:28::i;33929:98::-;33986:7;34013:1;34011;:3;34010:9;;34018:1;34010:9;;;-1:-1:-1;34016:1:0;33929:98;-1:-1:-1;33929:98:0:o;34035:591::-;34185:16;;;34199:1;34185:16;;;;;;;;34161:21;;34185:16;;;;;;;;;;-1:-1:-1;34185:16:0;34161:40;;34230:4;34212;34217:1;34212:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34212:23:0;;;-1:-1:-1;;;;;34212:23:0;;;;;34256:15;-1:-1:-1;;;;;34256:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34246:4;34251:1;34246:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34246:32:0;;;-1:-1:-1;;;;;34246:32:0;;;;;34291:62;34308:4;34323:15;34341:11;34291:8;:62::i;:::-;34562:15;;34392:226;;-1:-1:-1;;;34392:226:0;;-1:-1:-1;;;;;34392:15:0;:66;;;;;:226;;34473:11;;34499:1;;34543:4;;34562:15;;;;;34592;;34392:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34090:536;34035:591;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:315;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;878:2;863:18;;;;850:32;;-1:-1:-1;;;573:315:1:o;1085:247::-;1144:6;1197:2;1185:9;1176:7;1172:23;1168:32;1165:52;;;1213:1;1210;1203:12;1165:52;1252:9;1239:23;1271:31;1296:5;1271:31;:::i;1753:180::-;1812:6;1865:2;1853:9;1844:7;1840:23;1836:32;1833:52;;;1881:1;1878;1871:12;1833:52;-1:-1:-1;1904:23:1;;1753:180;-1:-1:-1;1753:180:1:o;1938:456::-;2015:6;2023;2031;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;2139:9;2126:23;2158:31;2183:5;2158:31;:::i;:::-;2208:5;-1:-1:-1;2265:2:1;2250:18;;2237:32;2278:33;2237:32;2278:33;:::i;:::-;1938:456;;2330:7;;-1:-1:-1;;;2384:2:1;2369:18;;;;2356:32;;1938:456::o;2796:160::-;2861:20;;2917:13;;2910:21;2900:32;;2890:60;;2946:1;2943;2936:12;2961:315;3026:6;3034;3087:2;3075:9;3066:7;3062:23;3058:32;3055:52;;;3103:1;3100;3093:12;3055:52;3142:9;3129:23;3161:31;3186:5;3161:31;:::i;:::-;3211:5;-1:-1:-1;3235:35:1;3266:2;3251:18;;3235:35;:::i;:::-;3225:45;;2961:315;;;;;:::o;3281:180::-;3337:6;3390:2;3378:9;3369:7;3365:23;3361:32;3358:52;;;3406:1;3403;3396:12;3358:52;3429:26;3445:9;3429:26;:::i;3466:388::-;3534:6;3542;3595:2;3583:9;3574:7;3570:23;3566:32;3563:52;;;3611:1;3608;3601:12;3563:52;3650:9;3637:23;3669:31;3694:5;3669:31;:::i;:::-;3719:5;-1:-1:-1;3776:2:1;3761:18;;3748:32;3789:33;3748:32;3789:33;:::i;:::-;3841:7;3831:17;;;3466:388;;;;;:::o;3859:380::-;3938:1;3934:12;;;;3981;;;4002:61;;4056:4;4048:6;4044:17;4034:27;;4002:61;4109:2;4101:6;4098:14;4078:18;4075:38;4072:161;;4155:10;4150:3;4146:20;4143:1;4136:31;4190:4;4187:1;4180:15;4218:4;4215:1;4208:15;4244:356;4446:2;4428:21;;;4465:18;;;4458:30;4524:34;4519:2;4504:18;;4497:62;4591:2;4576:18;;4244:356::o;4605:127::-;4666:10;4661:3;4657:20;4654:1;4647:31;4697:4;4694:1;4687:15;4721:4;4718:1;4711:15;4737:168;4810:9;;;4841;;4858:15;;;4852:22;;4838:37;4828:71;;4879:18;;:::i;4910:217::-;4950:1;4976;4966:132;;5020:10;5015:3;5011:20;5008:1;5001:31;5055:4;5052:1;5045:15;5083:4;5080:1;5073:15;4966:132;-1:-1:-1;5112:9:1;;4910:217::o;8778:401::-;8980:2;8962:21;;;9019:2;8999:18;;;8992:30;9058:34;9053:2;9038:18;;9031:62;-1:-1:-1;;;9124:2:1;9109:18;;9102:35;9169:3;9154:19;;8778:401::o;9184:399::-;9386:2;9368:21;;;9425:2;9405:18;;;9398:30;9464:34;9459:2;9444:18;;9437:62;-1:-1:-1;;;9530:2:1;9515:18;;9508:33;9573:3;9558:19;;9184:399::o;10361:125::-;10426:9;;;10447:10;;;10444:36;;;10460:18;;:::i;10839:128::-;10906:9;;;10927:11;;;10924:37;;;10941:18;;:::i;11511:127::-;11572:10;11567:3;11563:20;11560:1;11553:31;11603:4;11600:1;11593:15;11627:4;11624:1;11617:15;11643:251;11713:6;11766:2;11754:9;11745:7;11741:23;11737:32;11734:52;;;11782:1;11779;11772:12;11734:52;11814:9;11808:16;11833:31;11858:5;11833:31;:::i;11899:980::-;12161:4;12209:3;12198:9;12194:19;12240:6;12229:9;12222:25;12266:2;12304:6;12299:2;12288:9;12284:18;12277:34;12347:3;12342:2;12331:9;12327:18;12320:31;12371:6;12406;12400:13;12437:6;12429;12422:22;12475:3;12464:9;12460:19;12453:26;;12514:2;12506:6;12502:15;12488:29;;12535:1;12545:195;12559:6;12556:1;12553:13;12545:195;;;12624:13;;-1:-1:-1;;;;;12620:39:1;12608:52;;12715:15;;;;12680:12;;;;12656:1;12574:9;12545:195;;;-1:-1:-1;;;;;;;12796:32:1;;;;12791:2;12776:18;;12769:60;-1:-1:-1;;;12860:3:1;12845:19;12838:35;12757:3;11899:980;-1:-1:-1;;;11899:980:1:o
Swarm Source
ipfs://9df91a2fecc1521b527bb64ba0348303dd940c8252c2bb6e9f4240239f9b5017
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.