ERC-20
Overview
Max Total Supply
100,000,000 Escrow
Holders
36
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EscrowContracts
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-11 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; /* Website: https://escrowcontracts.net */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract EscrowContracts is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; /******************/ // 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 devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("EscrowContracts", "Escrow") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 6; uint256 _buyLiquidityFee = 0; uint256 _sellDevFee = 6; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply * 5 / 1000; maxWallet = totalSupply * 2 / 100; swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0x55aCD167bCd9EcbBefC106710dC5D33450C1b988); // set as dev wallet // 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 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 10, "Cant be more than 10%"); } function updateSellFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 10, "Cant be more than 10%"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } 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() && 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(); 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; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","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
6080604052600880546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600d80546201000162ffffff199091161790553480156200004a57600080fd5b50604080518082018252600f81526e457363726f77436f6e74726163747360881b602080830191825283518085019094526006845265457363726f7760d01b908401528151919291620000a091600391620005ec565b508051620000b6906004906020840190620005ec565b505050620000d3620000cd6200038d60201b60201c565b62000391565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f5816001620003e3565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200014a57600080fd5b505afa1580156200015f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000185919062000692565b6008546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b158015620001d257600080fd5b505af1158015620001e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020d919062000692565b600780546001600160a01b0319166001600160a01b0392909216918217905562000239906001620003e3565b6006600081816a52b7d2dcc80cd2e40000006103e86200025b82600562000702565b620002679190620006df565b600a5560646200027982600262000702565b620002859190620006df565b600c556127106200029882600562000702565b620002a49190620006df565b600b55600f8590556010849055620002bd8486620006c4565b600e5560128390556013829055620002d68284620006c4565b601155600980546001600160a01b0319167355acd167bcd9ecbbefc106710dc5d33450c1b9881790556200031e620003166005546001600160a01b031690565b60016200045d565b6200032b3060016200045d565b6200033a61dead60016200045d565b62000359620003516005546001600160a01b031690565b6001620003e3565b62000366306001620003e3565b6200037561dead6001620003e3565b62000381338262000507565b50505050505062000777565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004325760405162461bcd60e51b815260206004820181905260248201526000805160206200256883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004a85760405162461bcd60e51b8152602060048201819052602482015260008051602062002568833981519152604482015260640162000429565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200055f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000429565b8060026000828254620005739190620006c4565b90915550506001600160a01b03821660009081526020819052604081208054839290620005a2908490620006c4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005fa9062000724565b90600052602060002090601f0160209004810192826200061e576000855562000669565b82601f106200063957805160ff191683800117855562000669565b8280016001018555821562000669579182015b82811115620006695782518255916020019190600101906200064c565b50620006779291506200067b565b5090565b5b808211156200067757600081556001016200067c565b600060208284031215620006a557600080fd5b81516001600160a01b0381168114620006bd57600080fd5b9392505050565b60008219821115620006da57620006da62000761565b500190565b600082620006fd57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156200071f576200071f62000761565b500290565b600181811c908216806200073957607f821691505b602082108114156200075b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611de180620007876000396000f3fe6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106df578063e2f4560514610725578063f11a24d31461073b578063f2fde38b14610751578063f637434214610771578063f8b45b051461078757600080fd5b8063c024666814610653578063c18bc19514610673578063c8c8ebe414610693578063d257b34f146106a9578063d85ba063146106c957600080fd5b806395d89b41116100fd57806395d89b41146105d35780639c3b4fdc146105e8578063a0d82dc5146105fe578063a9059cbb14610614578063bbc0c7421461063457600080fd5b806389a30271146105405780638a8c523c146105605780638da5cb5b146105755780638ea5220f14610593578063924de9b7146105b357600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e1461048a5780636ddd1713146104a057806370a08231146104c0578063715018a6146104f6578063751039fc1461050b5780637571336a1461052057600080fd5b8063313ce567146103db57806349bd5a5e146103f75780634a62bb65146104175780634fbee1931461043157806366ca9b831461046a57600080fd5b806318160ddd1161021957806318160ddd146103465780631816467f14610365578063203e727e1461038557806323b872dd146103a557806327c8f835146103c557600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b2f565b61079d565b005b34801561028f57600080fd5b50610298610835565b6040516102a59190611b51565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611ad1565b6108c7565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611a1d565b60156020526000908152604090205460ff1681565b34801561031a57600080fd5b5060065461032e906001600160a01b031681565b6040516001600160a01b0390911681526020016102a5565b34801561035257600080fd5b506002545b6040519081526020016102a5565b34801561037157600080fd5b50610281610380366004611a1d565b6108dd565b34801561039157600080fd5b506102816103a0366004611b16565b610964565b3480156103b157600080fd5b506102ce6103c0366004611a6b565b610a41565b3480156103d157600080fd5b5061032e61dead81565b3480156103e757600080fd5b50604051601281526020016102a5565b34801561040357600080fd5b5060075461032e906001600160a01b031681565b34801561042357600080fd5b50600d546102ce9060ff1681565b34801561043d57600080fd5b506102ce61044c366004611a1d565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561047657600080fd5b50610281610485366004611b2f565b610aeb565b34801561049657600080fd5b5061035760115481565b3480156104ac57600080fd5b50600d546102ce9062010000900460ff1681565b3480156104cc57600080fd5b506103576104db366004611a1d565b6001600160a01b031660009081526020819052604090205490565b34801561050257600080fd5b50610281610b76565b34801561051757600080fd5b506102ce610bac565b34801561052c57600080fd5b5061028161053b366004611aa7565b610be9565b34801561054c57600080fd5b5060085461032e906001600160a01b031681565b34801561056c57600080fd5b50610281610c3e565b34801561058157600080fd5b506005546001600160a01b031661032e565b34801561059f57600080fd5b5060095461032e906001600160a01b031681565b3480156105bf57600080fd5b506102816105ce366004611afb565b610c7b565b3480156105df57600080fd5b50610298610cc1565b3480156105f457600080fd5b50610357600f5481565b34801561060a57600080fd5b5061035760125481565b34801561062057600080fd5b506102ce61062f366004611ad1565b610cd0565b34801561064057600080fd5b50600d546102ce90610100900460ff1681565b34801561065f57600080fd5b5061028161066e366004611aa7565b610cdd565b34801561067f57600080fd5b5061028161068e366004611b16565b610d66565b34801561069f57600080fd5b50610357600a5481565b3480156106b557600080fd5b506102ce6106c4366004611b16565b610e37565b3480156106d557600080fd5b50610357600e5481565b3480156106eb57600080fd5b506103576106fa366004611a38565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b50610357600b5481565b34801561074757600080fd5b5061035760105481565b34801561075d57600080fd5b5061028161076c366004611a1d565b610f8e565b34801561077d57600080fd5b5061035760135481565b34801561079357600080fd5b50610357600c5481565b6005546001600160a01b031633146107d05760405162461bcd60e51b81526004016107c790611be9565b60405180910390fd5b601282905560138190556107e48183611cd4565b6011819055600a10156108315760405162461bcd60e51b815260206004820152601560248201527443616e74206265206d6f7265207468616e2031302560581b60448201526064016107c7565b5050565b60606003805461084490611d44565b80601f016020809104026020016040519081016040528092919081815260200182805461087090611d44565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d4338484611029565b50600192915050565b6005546001600160a01b031633146109075760405162461bcd60e51b81526004016107c790611be9565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461098e5760405162461bcd60e51b81526004016107c790611be9565b670de0b6b3a76400006103e86109a360025490565b6109ae906001611d0e565b6109b89190611cec565b6109c29190611cec565b811015610a295760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107c7565b610a3b81670de0b6b3a7640000611d0e565b600a5550565b6000610a4e84848461114d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ad35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c7565b610ae08533858403611029565b506001949350505050565b6005546001600160a01b03163314610b155760405162461bcd60e51b81526004016107c790611be9565b600f8290556010819055610b298183611cd4565b600e819055600a10156108315760405162461bcd60e51b815260206004820152601560248201527443616e74206265206d6f7265207468616e2031302560581b60448201526064016107c7565b6005546001600160a01b03163314610ba05760405162461bcd60e51b81526004016107c790611be9565b610baa60006116ea565b565b6005546000906001600160a01b03163314610bd95760405162461bcd60e51b81526004016107c790611be9565b50600d805460ff19169055600190565b6005546001600160a01b03163314610c135760405162461bcd60e51b81526004016107c790611be9565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c685760405162461bcd60e51b81526004016107c790611be9565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610ca55760405162461bcd60e51b81526004016107c790611be9565b600d8054911515620100000262ff000019909216919091179055565b60606004805461084490611d44565b60006108d433848461114d565b6005546001600160a01b03163314610d075760405162461bcd60e51b81526004016107c790611be9565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d905760405162461bcd60e51b81526004016107c790611be9565b670de0b6b3a76400006103e8610da560025490565b610db0906005611d0e565b610dba9190611cec565b610dc49190611cec565b811015610e1f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c7565b610e3181670de0b6b3a7640000611d0e565b600c5550565b6005546000906001600160a01b03163314610e645760405162461bcd60e51b81526004016107c790611be9565b620186a0610e7160025490565b610e7c906001611d0e565b610e869190611cec565b821015610ef35760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c7565b6103e8610eff60025490565b610f0a906005611d0e565b610f149190611cec565b821115610f805760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c7565b50600b81905560015b919050565b6005546001600160a01b03163314610fb85760405162461bcd60e51b81526004016107c790611be9565b6001600160a01b03811661101d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c7565b611026816116ea565b50565b6001600160a01b03831661108b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c7565b6001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111735760405162461bcd60e51b81526004016107c790611c1e565b6001600160a01b0382166111995760405162461bcd60e51b81526004016107c790611ba6565b806111af576111aa8383600061173c565b505050565b600d5460ff1615611463576005546001600160a01b038481169116148015906111e657506005546001600160a01b03838116911614155b80156111fa57506001600160a01b03821615155b801561121157506001600160a01b03821661dead14155b80156112275750600854600160a01b900460ff16155b1561146357600d54610100900460ff166112bf576001600160a01b03831660009081526014602052604090205460ff168061127a57506001600160a01b03821660009081526014602052604090205460ff165b6112bf5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c7565b6007546001600160a01b0384811691161480156112f557506001600160a01b03821660009081526015602052604090205460ff16155b156113d957600a5481111561136a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c7565b600c546001600160a01b0383166000908152602081905260409020546113909083611cd4565b11156113d45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c7565b611463565b6001600160a01b03821660009081526015602052604090205460ff1661146357600c546001600160a01b03831660009081526020819052604090205461141f9083611cd4565b11156114635760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c7565b30600090815260208190526040902054600b548110801590819061148f5750600d5462010000900460ff165b80156114a55750600854600160a01b900460ff16155b80156114be57506007546001600160a01b038581169116145b80156114e357506001600160a01b03851660009081526014602052604090205460ff16155b801561150857506001600160a01b03841660009081526014602052604090205460ff16155b15611536576008805460ff60a01b1916600160a01b179055611528611891565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061158457506001600160a01b03851660009081526014602052604090205460ff165b1561158d575060005b600080600083156116d4576007546001600160a01b0389811691161480156115b757506000601154115b1561161d576115dc60646115d66011548a6118d890919063ffffffff16565b906118eb565b9250601154601354846115ef9190611d0e565b6115f99190611cec565b91506011546012548461160c9190611d0e565b6116169190611cec565b9050611698565b6007546001600160a01b038a8116911614801561163c57506000600e54115b156116985761165b60646115d6600e548a6118d890919063ffffffff16565b9250600e546010548461166e9190611d0e565b6116789190611cec565b9150600e54600f548461168b9190611d0e565b6116959190611cec565b90505b82156116a9576116a989308561173c565b81156116c7576007546116c79030906001600160a01b03168461173c565b6116d18388611d2d565b96505b6116df89898961173c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117625760405162461bcd60e51b81526004016107c790611c1e565b6001600160a01b0382166117885760405162461bcd60e51b81526004016107c790611ba6565b6001600160a01b038316600090815260208190526040902054818110156118005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611837908490611cd4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161188391815260200190565b60405180910390a350505050565b30600090815260208190526040902054806118a95750565b600b546118b7906014611d0e565b8111156118cf57600b546118cc906014611d0e565b90505b611026816118f7565b60006118e48284611d0e565b9392505050565b60006118e48284611cec565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061192c5761192c611d95565b6001600160a01b03928316602091820292909201015260085482519116908290600190811061195d5761195d611d95565b6001600160a01b0392831660209182029290920101526006546119839130911684611029565b600654600954604051635c11d79560e01b81526001600160a01b0392831692635c11d795926119c092879260009288929116904290600401611c63565b600060405180830381600087803b1580156119da57600080fd5b505af11580156119ee573d6000803e3d6000fd5b505050505050565b80356001600160a01b0381168114610f8957600080fd5b80358015158114610f8957600080fd5b600060208284031215611a2f57600080fd5b6118e4826119f6565b60008060408385031215611a4b57600080fd5b611a54836119f6565b9150611a62602084016119f6565b90509250929050565b600080600060608486031215611a8057600080fd5b611a89846119f6565b9250611a97602085016119f6565b9150604084013590509250925092565b60008060408385031215611aba57600080fd5b611ac3836119f6565b9150611a6260208401611a0d565b60008060408385031215611ae457600080fd5b611aed836119f6565b946020939093013593505050565b600060208284031215611b0d57600080fd5b6118e482611a0d565b600060208284031215611b2857600080fd5b5035919050565b60008060408385031215611b4257600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b7e57858101830151858201604001528201611b62565b81811115611b90576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611cb35784516001600160a01b031683529383019391830191600101611c8e565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115611ce757611ce7611d7f565b500190565b600082611d0957634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611d2857611d28611d7f565b500290565b600082821015611d3f57611d3f611d7f565b500390565b600181811c90821680611d5857607f821691505b60208210811415611d7957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220bc7afaf89dfa92600f7d2d8769c3fe34eb968992cac87f1d98159aefebd96d4964736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106df578063e2f4560514610725578063f11a24d31461073b578063f2fde38b14610751578063f637434214610771578063f8b45b051461078757600080fd5b8063c024666814610653578063c18bc19514610673578063c8c8ebe414610693578063d257b34f146106a9578063d85ba063146106c957600080fd5b806395d89b41116100fd57806395d89b41146105d35780639c3b4fdc146105e8578063a0d82dc5146105fe578063a9059cbb14610614578063bbc0c7421461063457600080fd5b806389a30271146105405780638a8c523c146105605780638da5cb5b146105755780638ea5220f14610593578063924de9b7146105b357600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e1461048a5780636ddd1713146104a057806370a08231146104c0578063715018a6146104f6578063751039fc1461050b5780637571336a1461052057600080fd5b8063313ce567146103db57806349bd5a5e146103f75780634a62bb65146104175780634fbee1931461043157806366ca9b831461046a57600080fd5b806318160ddd1161021957806318160ddd146103465780631816467f14610365578063203e727e1461038557806323b872dd146103a557806327c8f835146103c557600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b2f565b61079d565b005b34801561028f57600080fd5b50610298610835565b6040516102a59190611b51565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611ad1565b6108c7565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611a1d565b60156020526000908152604090205460ff1681565b34801561031a57600080fd5b5060065461032e906001600160a01b031681565b6040516001600160a01b0390911681526020016102a5565b34801561035257600080fd5b506002545b6040519081526020016102a5565b34801561037157600080fd5b50610281610380366004611a1d565b6108dd565b34801561039157600080fd5b506102816103a0366004611b16565b610964565b3480156103b157600080fd5b506102ce6103c0366004611a6b565b610a41565b3480156103d157600080fd5b5061032e61dead81565b3480156103e757600080fd5b50604051601281526020016102a5565b34801561040357600080fd5b5060075461032e906001600160a01b031681565b34801561042357600080fd5b50600d546102ce9060ff1681565b34801561043d57600080fd5b506102ce61044c366004611a1d565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561047657600080fd5b50610281610485366004611b2f565b610aeb565b34801561049657600080fd5b5061035760115481565b3480156104ac57600080fd5b50600d546102ce9062010000900460ff1681565b3480156104cc57600080fd5b506103576104db366004611a1d565b6001600160a01b031660009081526020819052604090205490565b34801561050257600080fd5b50610281610b76565b34801561051757600080fd5b506102ce610bac565b34801561052c57600080fd5b5061028161053b366004611aa7565b610be9565b34801561054c57600080fd5b5060085461032e906001600160a01b031681565b34801561056c57600080fd5b50610281610c3e565b34801561058157600080fd5b506005546001600160a01b031661032e565b34801561059f57600080fd5b5060095461032e906001600160a01b031681565b3480156105bf57600080fd5b506102816105ce366004611afb565b610c7b565b3480156105df57600080fd5b50610298610cc1565b3480156105f457600080fd5b50610357600f5481565b34801561060a57600080fd5b5061035760125481565b34801561062057600080fd5b506102ce61062f366004611ad1565b610cd0565b34801561064057600080fd5b50600d546102ce90610100900460ff1681565b34801561065f57600080fd5b5061028161066e366004611aa7565b610cdd565b34801561067f57600080fd5b5061028161068e366004611b16565b610d66565b34801561069f57600080fd5b50610357600a5481565b3480156106b557600080fd5b506102ce6106c4366004611b16565b610e37565b3480156106d557600080fd5b50610357600e5481565b3480156106eb57600080fd5b506103576106fa366004611a38565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b50610357600b5481565b34801561074757600080fd5b5061035760105481565b34801561075d57600080fd5b5061028161076c366004611a1d565b610f8e565b34801561077d57600080fd5b5061035760135481565b34801561079357600080fd5b50610357600c5481565b6005546001600160a01b031633146107d05760405162461bcd60e51b81526004016107c790611be9565b60405180910390fd5b601282905560138190556107e48183611cd4565b6011819055600a10156108315760405162461bcd60e51b815260206004820152601560248201527443616e74206265206d6f7265207468616e2031302560581b60448201526064016107c7565b5050565b60606003805461084490611d44565b80601f016020809104026020016040519081016040528092919081815260200182805461087090611d44565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d4338484611029565b50600192915050565b6005546001600160a01b031633146109075760405162461bcd60e51b81526004016107c790611be9565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461098e5760405162461bcd60e51b81526004016107c790611be9565b670de0b6b3a76400006103e86109a360025490565b6109ae906001611d0e565b6109b89190611cec565b6109c29190611cec565b811015610a295760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107c7565b610a3b81670de0b6b3a7640000611d0e565b600a5550565b6000610a4e84848461114d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ad35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c7565b610ae08533858403611029565b506001949350505050565b6005546001600160a01b03163314610b155760405162461bcd60e51b81526004016107c790611be9565b600f8290556010819055610b298183611cd4565b600e819055600a10156108315760405162461bcd60e51b815260206004820152601560248201527443616e74206265206d6f7265207468616e2031302560581b60448201526064016107c7565b6005546001600160a01b03163314610ba05760405162461bcd60e51b81526004016107c790611be9565b610baa60006116ea565b565b6005546000906001600160a01b03163314610bd95760405162461bcd60e51b81526004016107c790611be9565b50600d805460ff19169055600190565b6005546001600160a01b03163314610c135760405162461bcd60e51b81526004016107c790611be9565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c685760405162461bcd60e51b81526004016107c790611be9565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610ca55760405162461bcd60e51b81526004016107c790611be9565b600d8054911515620100000262ff000019909216919091179055565b60606004805461084490611d44565b60006108d433848461114d565b6005546001600160a01b03163314610d075760405162461bcd60e51b81526004016107c790611be9565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d905760405162461bcd60e51b81526004016107c790611be9565b670de0b6b3a76400006103e8610da560025490565b610db0906005611d0e565b610dba9190611cec565b610dc49190611cec565b811015610e1f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c7565b610e3181670de0b6b3a7640000611d0e565b600c5550565b6005546000906001600160a01b03163314610e645760405162461bcd60e51b81526004016107c790611be9565b620186a0610e7160025490565b610e7c906001611d0e565b610e869190611cec565b821015610ef35760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c7565b6103e8610eff60025490565b610f0a906005611d0e565b610f149190611cec565b821115610f805760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c7565b50600b81905560015b919050565b6005546001600160a01b03163314610fb85760405162461bcd60e51b81526004016107c790611be9565b6001600160a01b03811661101d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c7565b611026816116ea565b50565b6001600160a01b03831661108b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c7565b6001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111735760405162461bcd60e51b81526004016107c790611c1e565b6001600160a01b0382166111995760405162461bcd60e51b81526004016107c790611ba6565b806111af576111aa8383600061173c565b505050565b600d5460ff1615611463576005546001600160a01b038481169116148015906111e657506005546001600160a01b03838116911614155b80156111fa57506001600160a01b03821615155b801561121157506001600160a01b03821661dead14155b80156112275750600854600160a01b900460ff16155b1561146357600d54610100900460ff166112bf576001600160a01b03831660009081526014602052604090205460ff168061127a57506001600160a01b03821660009081526014602052604090205460ff165b6112bf5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c7565b6007546001600160a01b0384811691161480156112f557506001600160a01b03821660009081526015602052604090205460ff16155b156113d957600a5481111561136a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c7565b600c546001600160a01b0383166000908152602081905260409020546113909083611cd4565b11156113d45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c7565b611463565b6001600160a01b03821660009081526015602052604090205460ff1661146357600c546001600160a01b03831660009081526020819052604090205461141f9083611cd4565b11156114635760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c7565b30600090815260208190526040902054600b548110801590819061148f5750600d5462010000900460ff165b80156114a55750600854600160a01b900460ff16155b80156114be57506007546001600160a01b038581169116145b80156114e357506001600160a01b03851660009081526014602052604090205460ff16155b801561150857506001600160a01b03841660009081526014602052604090205460ff16155b15611536576008805460ff60a01b1916600160a01b179055611528611891565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061158457506001600160a01b03851660009081526014602052604090205460ff165b1561158d575060005b600080600083156116d4576007546001600160a01b0389811691161480156115b757506000601154115b1561161d576115dc60646115d66011548a6118d890919063ffffffff16565b906118eb565b9250601154601354846115ef9190611d0e565b6115f99190611cec565b91506011546012548461160c9190611d0e565b6116169190611cec565b9050611698565b6007546001600160a01b038a8116911614801561163c57506000600e54115b156116985761165b60646115d6600e548a6118d890919063ffffffff16565b9250600e546010548461166e9190611d0e565b6116789190611cec565b9150600e54600f548461168b9190611d0e565b6116959190611cec565b90505b82156116a9576116a989308561173c565b81156116c7576007546116c79030906001600160a01b03168461173c565b6116d18388611d2d565b96505b6116df89898961173c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117625760405162461bcd60e51b81526004016107c790611c1e565b6001600160a01b0382166117885760405162461bcd60e51b81526004016107c790611ba6565b6001600160a01b038316600090815260208190526040902054818110156118005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611837908490611cd4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161188391815260200190565b60405180910390a350505050565b30600090815260208190526040902054806118a95750565b600b546118b7906014611d0e565b8111156118cf57600b546118cc906014611d0e565b90505b611026816118f7565b60006118e48284611d0e565b9392505050565b60006118e48284611cec565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061192c5761192c611d95565b6001600160a01b03928316602091820292909201015260085482519116908290600190811061195d5761195d611d95565b6001600160a01b0392831660209182029290920101526006546119839130911684611029565b600654600954604051635c11d79560e01b81526001600160a01b0392831692635c11d795926119c092879260009288929116904290600401611c63565b600060405180830381600087803b1580156119da57600080fd5b505af11580156119ee573d6000803e3d6000fd5b505050505050565b80356001600160a01b0381168114610f8957600080fd5b80358015158114610f8957600080fd5b600060208284031215611a2f57600080fd5b6118e4826119f6565b60008060408385031215611a4b57600080fd5b611a54836119f6565b9150611a62602084016119f6565b90509250929050565b600080600060608486031215611a8057600080fd5b611a89846119f6565b9250611a97602085016119f6565b9150604084013590509250925092565b60008060408385031215611aba57600080fd5b611ac3836119f6565b9150611a6260208401611a0d565b60008060408385031215611ae457600080fd5b611aed836119f6565b946020939093013593505050565b600060208284031215611b0d57600080fd5b6118e482611a0d565b600060208284031215611b2857600080fd5b5035919050565b60008060408385031215611b4257600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b7e57858101830151858201604001528201611b62565b81811115611b90576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611cb35784516001600160a01b031683529383019391830191600101611c8e565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115611ce757611ce7611d7f565b500190565b600082611d0957634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611d2857611d28611d7f565b500290565b600082821015611d3f57611d3f611d7f565b500390565b600181811c90821680611d5857607f821691505b60208210811415611d7957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220bc7afaf89dfa92600f7d2d8769c3fe34eb968992cac87f1d98159aefebd96d4964736f6c63430008070033
Deployed Bytecode Sourcemap
23336:10636:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28519:310;;;;;;;;;;-1:-1:-1;28519:310:0;;;;;:::i;:::-;;:::i;:::-;;8192:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10359:169;;;;;;;;;;-1:-1:-1;10359:169:0;;;;;:::i;:::-;;:::i;:::-;;;2660:14:1;;2653:22;2635:41;;2623:2;2608:18;10359:169:0;2495:187:1;24285:63:0;;;;;;;;;;-1:-1:-1;24285:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23421:41;;;;;;;;;;-1:-1:-1;23421:41:0;;;;-1:-1:-1;;;;;23421:41:0;;;;;;-1:-1:-1;;;;;2451:32:1;;;2433:51;;2421:2;2406:18;23421:41:0;2287:203:1;9312:108:0;;;;;;;;;;-1:-1:-1;9400:12:0;;9312:108;;;10006:25:1;;;9994:2;9979:18;9312:108:0;9860:177:1;29027:189:0;;;;;;;;;;-1:-1:-1;29027:189:0;;;;;:::i;:::-;;:::i;27290:275::-;;;;;;;;;;-1:-1:-1;27290:275:0;;;;;:::i;:::-;;:::i;11010:492::-;;;;;;;;;;-1:-1:-1;11010:492:0;;;;;:::i;:::-;;:::i;23504:53::-;;;;;;;;;;;;23550:6;23504:53;;9154:93;;;;;;;;;;-1:-1:-1;9154:93:0;;9237:2;11169:36:1;;11157:2;11142:18;9154:93:0;11027:184:1;23469:28:0;;;;;;;;;;-1:-1:-1;23469:28:0;;;;-1:-1:-1;;;;;23469:28:0;;;23815:33;;;;;;;;;;-1:-1:-1;23815:33:0;;;;;;;;29226:126;;;;;;;;;;-1:-1:-1;29226:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29316:28:0;29292:4;29316:28;;;:19;:28;;;;;;;;;29226:126;28208:303;;;;;;;;;;-1:-1:-1;28208:303:0;;;;;:::i;:::-;;:::i;24038:28::-;;;;;;;;;;;;;;;;23895:30;;;;;;;;;;-1:-1:-1;23895:30:0;;;;;;;;;;;9483:127;;;;;;;;;;-1:-1:-1;9483:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9584:18:0;9557:7;9584:18;;;;;;;;;;;;9483:127;1427:103;;;;;;;;;;;;;:::i;26594:121::-;;;;;;;;;;;;;:::i;27837:167::-;;;;;;;;;;-1:-1:-1;27837:167:0;;;;;:::i;:::-;;:::i;23564:64::-;;;;;;;;;;-1:-1:-1;23564:64:0;;;;-1:-1:-1;;;;;23564:64:0;;;26430:112;;;;;;;;;;;;;:::i;776:87::-;;;;;;;;;;-1:-1:-1;849:6:0;;-1:-1:-1;;;;;849:6:0;776:87;;23667:24;;;;;;;;;;-1:-1:-1;23667:24:0;;;;-1:-1:-1;;;;;23667:24:0;;;28100:100;;;;;;;;;;-1:-1:-1;28100:100:0;;;;;:::i;:::-;;:::i;8411:104::-;;;;;;;;;;;;;:::i;23968:24::-;;;;;;;;;;;;;;;;24073:25;;;;;;;;;;;;;;;;9823:175;;;;;;;;;;-1:-1:-1;9823:175:0;;;;;:::i;:::-;;:::i;23855:33::-;;;;;;;;;;-1:-1:-1;23855:33:0;;;;;;;;;;;28837:182;;;;;;;;;;-1:-1:-1;28837:182:0;;;;;:::i;:::-;;:::i;27573:256::-;;;;;;;;;;-1:-1:-1;27573:256:0;;;;;:::i;:::-;;:::i;23700:35::-;;;;;;;;;;;;;;;;26785:497;;;;;;;;;;-1:-1:-1;26785:497:0;;;;;:::i;:::-;;:::i;23934:27::-;;;;;;;;;;;;;;;;10061:151;;;;;;;;;;-1:-1:-1;10061:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10177:18:0;;;10150:7;10177:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10061:151;23742:33;;;;;;;;;;;;;;;;23999:30;;;;;;;;;;;;;;;;1685:201;;;;;;;;;;-1:-1:-1;1685:201:0;;;;;:::i;:::-;;:::i;24105:31::-;;;;;;;;;;;;;;;;23782:24;;;;;;;;;;;;;;;;28519:310;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;;;;;;;;;28638:10:::1;:20:::0;;;28669:16:::1;:32:::0;;;28728:29:::1;28688:13:::0;28651:7;28728:29:::1;:::i;:::-;28712:13;:45:::0;;;28793:2:::1;-1:-1:-1::0;28776:19:0::1;28768:53;;;::::0;-1:-1:-1;;;28768:53:0;;9296:2:1;28768:53:0::1;::::0;::::1;9278:21:1::0;9335:2;9315:18;;;9308:30;-1:-1:-1;;;9354:18:1;;;9347:51;9415:18;;28768:53:0::1;9094:345:1::0;28768:53:0::1;28519:310:::0;;:::o;8192:100::-;8246:13;8279:5;8272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8192:100;:::o;10359:169::-;10442:4;10459:39;228:10;10482:7;10491:6;10459:8;:39::i;:::-;-1:-1:-1;10516:4:0;10359:169;;;;:::o;29027:189::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;29163:9:::1;::::0;29132:41:::1;::::0;-1:-1:-1;;;;;29163:9:0;;::::1;::::0;29132:41;::::1;::::0;::::1;::::0;29163:9:::1;::::0;29132:41:::1;29184:9;:24:::0;;-1:-1:-1;;;;;;29184:24:0::1;-1:-1:-1::0;;;;;29184:24:0;;;::::1;::::0;;;::::1;::::0;;29027:189::o;27290:275::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;27427:4:::1;27419;27398:13;9400:12:::0;;;9312:108;27398:13:::1;:17;::::0;27414:1:::1;27398:17;:::i;:::-;27397:26;;;;:::i;:::-;27396:35;;;;:::i;:::-;27386:6;:45;;27364:142;;;::::0;-1:-1:-1;;;27364:142:0;;9646:2:1;27364:142:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:45;9830:19;;27364:142:0::1;9444:411:1::0;27364:142:0::1;27540:17;:6:::0;27550::::1;27540:17;:::i;:::-;27517:20;:40:::0;-1:-1:-1;27290:275:0:o;11010:492::-;11150:4;11167:36;11177:6;11185:9;11196:6;11167:9;:36::i;:::-;-1:-1:-1;;;;;11243:19:0;;11216:24;11243:19;;;:11;:19;;;;;;;;228:10;11243:33;;;;;;;;11295:26;;;;11287:79;;;;-1:-1:-1;;;11287:79:0;;7367:2:1;11287:79:0;;;7349:21:1;7406:2;7386:18;;;7379:30;7445:34;7425:18;;;7418:62;-1:-1:-1;;;7496:18:1;;;7489:38;7544:19;;11287:79:0;7165:404:1;11287:79:0;11402:57;11411:6;228:10;11452:6;11433:16;:25;11402:8;:57::i;:::-;-1:-1:-1;11490:4:0;;11010:492;-1:-1:-1;;;;11010:492:0:o;28208:303::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;28326:9:::1;:19:::0;;;28356:15:::1;:31:::0;;;28413:27:::1;28374:13:::0;28338:7;28413:27:::1;:::i;:::-;28398:12;:42:::0;;;28475:2:::1;-1:-1:-1::0;28459:18:0::1;28451:52;;;::::0;-1:-1:-1;;;28451:52:0;;9296:2:1;28451:52:0::1;::::0;::::1;9278:21:1::0;9335:2;9315:18;;;9308:30;-1:-1:-1;;;9354:18:1;;;9347:51;9415:18;;28451:52:0::1;9094:345:1::0;1427:103:0;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;1492:30:::1;1519:1;1492:18;:30::i;:::-;1427:103::o:0;26594:121::-;849:6;;26646:4;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;-1:-1:-1;26663:14:0::1;:22:::0;;-1:-1:-1;;26663:22:0::1;::::0;;;26594:121;:::o;27837:167::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27950:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27950:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27837:167::o;26430:112::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;26485:13:::1;:20:::0;;-1:-1:-1;;26516:18:0;;;;;26430:112::o;28100:100::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;28171:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28171:21:0;;::::1;::::0;;;::::1;::::0;;28100:100::o;8411:104::-;8467:13;8500:7;8493:14;;;;;:::i;9823:175::-;9909:4;9926:42;228:10;9950:9;9961:6;9926:9;:42::i;28837:182::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28922:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;28922:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28977:34;;2635:41:1;;;28977:34:0::1;::::0;2608:18:1;28977:34:0::1;;;;;;;28837:182:::0;;:::o;27573:256::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;27713:4:::1;27705;27684:13;9400:12:::0;;;9312:108;27684:13:::1;:17;::::0;27700:1:::1;27684:17;:::i;:::-;27683:26;;;;:::i;:::-;27682:35;;;;:::i;:::-;27672:6;:45;;27650:131;;;::::0;-1:-1:-1;;;27650:131:0;;5290:2:1;27650:131:0::1;::::0;::::1;5272:21:1::0;5329:2;5309:18;;;5302:30;5368:34;5348:18;;;5341:62;-1:-1:-1;;;5419:18:1;;;5412:34;5463:19;;27650:131:0::1;5088:400:1::0;27650:131:0::1;27804:17;:6:::0;27814::::1;27804:17;:::i;:::-;27792:9;:29:::0;-1:-1:-1;27573:256:0:o;26785:497::-;849:6;;26893:4;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;26972:6:::1;26951:13;9400:12:::0;;;9312:108;26951:13:::1;:17;::::0;26967:1:::1;26951:17;:::i;:::-;26950:28;;;;:::i;:::-;26937:9;:41;;26915:144;;;::::0;-1:-1:-1;;;26915:144:0;;6102:2:1;26915:144:0::1;::::0;::::1;6084:21:1::0;6141:2;6121:18;;;6114:30;6180:34;6160:18;;;6153:62;-1:-1:-1;;;6231:18:1;;;6224:51;6292:19;;26915:144:0::1;5900:417:1::0;26915:144:0::1;27127:4;27106:13;9400:12:::0;;;9312:108;27106:13:::1;:17;::::0;27122:1:::1;27106:17;:::i;:::-;27105:26;;;;:::i;:::-;27092:9;:39;;27070:141;;;::::0;-1:-1:-1;;;27070:141:0;;6524:2:1;27070:141:0::1;::::0;::::1;6506:21:1::0;6563:2;6543:18;;;6536:30;6602:34;6582:18;;;6575:62;-1:-1:-1;;;6653:18:1;;;6646:50;6713:19;;27070:141:0::1;6322:416:1::0;27070:141:0::1;-1:-1:-1::0;27222:18:0::1;:30:::0;;;27270:4:::1;1067:1;26785:497:::0;;;:::o;1685:201::-;849:6;;-1:-1:-1;;;;;849:6:0;228:10;996:23;988:68;;;;-1:-1:-1;;;988:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1774:22:0;::::1;1766:73;;;::::0;-1:-1:-1;;;1766:73:0;;4480:2:1;1766:73:0::1;::::0;::::1;4462:21:1::0;4519:2;4499:18;;;4492:30;4558:34;4538:18;;;4531:62;-1:-1:-1;;;4609:18:1;;;4602:36;4655:19;;1766:73:0::1;4278:402:1::0;1766:73:0::1;1850:28;1869:8;1850:18;:28::i;:::-;1685:201:::0;:::o;13851:380::-;-1:-1:-1;;;;;13987:19:0;;13979:68;;;;-1:-1:-1;;;13979:68:0;;8543:2:1;13979:68:0;;;8525:21:1;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;-1:-1:-1;;;8672:18:1;;;8665:34;8716:19;;13979:68:0;8341:400:1;13979:68:0;-1:-1:-1;;;;;14066:21:0;;14058:68;;;;-1:-1:-1;;;14058:68:0;;4887:2:1;14058:68:0;;;4869:21:1;4926:2;4906:18;;;4899:30;4965:34;4945:18;;;4938:62;-1:-1:-1;;;5016:18:1;;;5009:32;5058:19;;14058:68:0;4685:398:1;14058:68:0;-1:-1:-1;;;;;14139:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14191:32;;10006:25:1;;;14191:32:0;;9979:18:1;14191:32:0;;;;;;;13851:380;;;:::o;29360:3679::-;-1:-1:-1;;;;;29492:18:0;;29484:68;;;;-1:-1:-1;;;29484:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29571:16:0;;29563:64;;;;-1:-1:-1;;;29563:64:0;;;;;;;:::i;:::-;29644:11;29640:93;;29672:28;29688:4;29694:2;29698:1;29672:15;:28::i;:::-;29360:3679;;;:::o;29640:93::-;29749:14;;;;29745:1430;;;849:6;;-1:-1:-1;;;;;29802:15:0;;;849:6;;29802:15;;;;:49;;-1:-1:-1;849:6:0;;-1:-1:-1;;;;;29838:13:0;;;849:6;;29838:13;;29802:49;:86;;;;-1:-1:-1;;;;;;29872:16:0;;;;29802:86;:128;;;;-1:-1:-1;;;;;;29909:21:0;;29923:6;29909:21;;29802:128;:158;;;;-1:-1:-1;29952:8:0;;-1:-1:-1;;;29952:8:0;;;;29951:9;29802:158;29780:1384;;;30000:13;;;;;;;29995:223;;-1:-1:-1;;;;;30072:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30101:23:0;;;;;;:19;:23;;;;;;;;30072:52;30038:160;;;;-1:-1:-1;;;30038:160:0;;4129:2:1;30038:160:0;;;4111:21:1;4168:2;4148:18;;;4141:30;-1:-1:-1;;;4187:18:1;;;4180:52;4249:18;;30038:160:0;3927:346:1;30038:160:0;30432:13;;-1:-1:-1;;;;;30424:21:0;;;30432:13;;30424:21;:82;;;;-1:-1:-1;;;;;;30471:35:0;;;;;;:31;:35;;;;;;;;30470:36;30424:82;30398:751;;;30593:20;;30583:6;:30;;30549:169;;;;-1:-1:-1;;;30549:169:0;;6945:2:1;30549:169:0;;;6927:21:1;6984:2;6964:18;;;6957:30;7023:34;7003:18;;;6996:62;-1:-1:-1;;;7074:18:1;;;7067:51;7135:19;;30549:169:0;6743:417:1;30549:169:0;30801:9;;-1:-1:-1;;;;;9584:18:0;;9557:7;9584:18;;;;;;;;;;;30775:22;;:6;:22;:::i;:::-;:35;;30741:140;;;;-1:-1:-1;;;30741:140:0;;8948:2:1;30741:140:0;;;8930:21:1;8987:2;8967:18;;;8960:30;-1:-1:-1;;;9006:18:1;;;8999:49;9065:18;;30741:140:0;8746:343:1;30741:140:0;30398:751;;;-1:-1:-1;;;;;30929:35:0;;;;;;:31;:35;;;;;;;;30924:225;;31049:9;;-1:-1:-1;;;;;9584:18:0;;9557:7;9584:18;;;;;;;;;;;31023:22;;:6;:22;:::i;:::-;:35;;30989:140;;;;-1:-1:-1;;;30989:140:0;;8948:2:1;30989:140:0;;;8930:21:1;8987:2;8967:18;;;8960:30;-1:-1:-1;;;9006:18:1;;;8999:49;9065:18;;30989:140:0;8746:343:1;30989:140:0;31236:4;31187:28;9584:18;;;;;;;;;;;31294;;31270:42;;;;;;;31343:35;;-1:-1:-1;31367:11:0;;;;;;;31343:35;:61;;;;-1:-1:-1;31396:8:0;;-1:-1:-1;;;31396:8:0;;;;31395:9;31343:61;:97;;;;-1:-1:-1;31427:13:0;;-1:-1:-1;;;;;31421:19:0;;;31427:13;;31421:19;31343:97;:140;;;;-1:-1:-1;;;;;;31458:25:0;;;;;;:19;:25;;;;;;;;31457:26;31343:140;:181;;;;-1:-1:-1;;;;;;31501:23:0;;;;;;:19;:23;;;;;;;;31500:24;31343:181;31325:313;;;31551:8;:15;;-1:-1:-1;;;;31551:15:0;-1:-1:-1;;;31551:15:0;;;31583:10;:8;:10::i;:::-;31610:8;:16;;-1:-1:-1;;;;31610:16:0;;;31325:313;31666:8;;-1:-1:-1;;;;;31776:25:0;;31650:12;31776:25;;;31666:8;31776:25;;;;;;31666:8;-1:-1:-1;;;31666:8:0;;;;;31665:9;;31776:25;;:52;;-1:-1:-1;;;;;;31805:23:0;;;;;;:19;:23;;;;;;;;31776:52;31772:100;;;-1:-1:-1;31855:5:0;31772:100;31884:12;31911:26;31952:20;32065:7;32061:925;;;32123:13;;-1:-1:-1;;;;;32117:19:0;;;32123:13;;32117:19;:40;;;;;32156:1;32140:13;;:17;32117:40;32113:583;;;32185:34;32215:3;32185:25;32196:13;;32185:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32178:41;;32287:13;;32267:16;;32260:4;:23;;;;:::i;:::-;32259:41;;;;:::i;:::-;32238:62;;32356:13;;32342:10;;32335:4;:17;;;;:::i;:::-;32334:35;;;;:::i;:::-;32319:50;;32113:583;;;32439:13;;-1:-1:-1;;;;;32431:21:0;;;32439:13;;32431:21;:41;;;;;32471:1;32456:12;;:16;32431:41;32427:269;;;32500:33;32529:3;32500:24;32511:12;;32500:6;:10;;:24;;;;:::i;:33::-;32493:40;;32600:12;;32581:15;;32574:4;:22;;;;:::i;:::-;32573:39;;;;:::i;:::-;32552:60;;32668:12;;32655:9;;32648:4;:16;;;;:::i;:::-;32647:33;;;;:::i;:::-;32632:48;;32427:269;32716:7;;32712:90;;32744:42;32760:4;32774;32781;32744:15;:42::i;:::-;32820:22;;32816:128;;32894:13;;32863:65;;32887:4;;-1:-1:-1;;;;;32894:13:0;32909:18;32863:15;:65::i;:::-;32960:14;32970:4;32960:14;;:::i;:::-;;;32061:925;32998:33;33014:4;33020:2;33024:6;32998:15;:33::i;:::-;29473:3566;;;;;;29360:3679;;;:::o;2046:191::-;2139:6;;;-1:-1:-1;;;;;2156:17:0;;;-1:-1:-1;;;;;;2156:17:0;;;;;;;2189:40;;2139:6;;;2156:17;2139:6;;2189:40;;2120:16;;2189:40;2109:128;2046:191;:::o;11992:733::-;-1:-1:-1;;;;;12132:20:0;;12124:70;;;;-1:-1:-1;;;12124:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12213:23:0;;12205:71;;;;-1:-1:-1;;;12205:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12373:17:0;;12349:21;12373:17;;;;;;;;;;;12409:23;;;;12401:74;;;;-1:-1:-1;;;12401:74:0;;5695:2:1;12401:74:0;;;5677:21:1;5734:2;5714:18;;;5707:30;5773:34;5753:18;;;5746:62;-1:-1:-1;;;5824:18:1;;;5817:36;5870:19;;12401:74:0;5493:402:1;12401:74:0;-1:-1:-1;;;;;12511:17:0;;;:9;:17;;;;;;;;;;;12531:22;;;12511:42;;12575:20;;;;;;;;:30;;12547:6;;12511:9;12575:30;;12547:6;;12575:30;:::i;:::-;;;;;;;;12640:9;-1:-1:-1;;;;;12623:35:0;12632:6;-1:-1:-1;;;;;12623:35:0;;12651:6;12623:35;;;;10006:25:1;;9994:2;9979:18;;9860:177;12623:35:0;;;;;;;;12113:612;11992:733;;;:::o;33627:340::-;33710:4;33666:23;9584:18;;;;;;;;;;;;33727:59;;33768:7;33627:340::o;33727:59::-;33820:18;;:23;;33841:2;33820:23;:::i;:::-;33802:15;:41;33798:115;;;33878:18;;:23;;33899:2;33878:23;:::i;:::-;33860:41;;33798:115;33925:34;33943:15;33925:17;:34::i;19304:98::-;19362:7;19389:5;19393:1;19389;:5;:::i;:::-;19382:12;19304:98;-1:-1:-1;;;19304:98:0:o;19703:::-;19761:7;19788:5;19792:1;19788;:5;:::i;33047:572::-;33198:16;;;33212:1;33198:16;;;;;;;;33174:21;;33198:16;;;;;;;;;;-1:-1:-1;33198:16:0;33174:40;;33243:4;33225;33230:1;33225:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33225:23:0;;;:7;;;;;;;;;:23;33269:4;;33259:7;;33269:4;;;33259;;33269;;33259:7;;;;;;:::i;:::-;-1:-1:-1;;;;;33259:14:0;;;:7;;;;;;;;;:14;33318:15;;33286:62;;33303:4;;33318:15;33336:11;33286:8;:62::i;:::-;33387:15;;33561:9;;33387:224;;-1:-1:-1;;;33387:224:0;;-1:-1:-1;;;;;33387:15:0;;;;:69;;:224;;33471:11;;33387:15;;33542:4;;33561:9;;;33585:15;;33387:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33103:516;33047:572;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:160;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:254::-;1211:6;1219;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1311:29;1330:9;1311:29;:::i;:::-;1301:39;;1359:35;1390:2;1379:9;1375:18;1359:35;:::i;1405:254::-;1473:6;1481;1534:2;1522:9;1513:7;1509:23;1505:32;1502:52;;;1550:1;1547;1540:12;1502:52;1573:29;1592:9;1573:29;:::i;:::-;1563:39;1649:2;1634:18;;;;1621:32;;-1:-1:-1;;;1405:254:1:o;1664:180::-;1720:6;1773:2;1761:9;1752:7;1748:23;1744:32;1741:52;;;1789:1;1786;1779:12;1741:52;1812:26;1828:9;1812:26;:::i;1849:180::-;1908:6;1961:2;1949:9;1940:7;1936:23;1932:32;1929:52;;;1977:1;1974;1967:12;1929:52;-1:-1:-1;2000:23:1;;1849:180;-1:-1:-1;1849:180:1:o;2034:248::-;2102:6;2110;2163:2;2151:9;2142:7;2138:23;2134:32;2131:52;;;2179:1;2176;2169:12;2131:52;-1:-1:-1;;2202:23:1;;;2272:2;2257:18;;;2244:32;;-1:-1:-1;2034:248:1:o;2921:597::-;3033:4;3062:2;3091;3080:9;3073:21;3123:6;3117:13;3166:6;3161:2;3150:9;3146:18;3139:34;3191:1;3201:140;3215:6;3212:1;3209:13;3201:140;;;3310:14;;;3306:23;;3300:30;3276:17;;;3295:2;3272:26;3265:66;3230:10;;3201:140;;;3359:6;3356:1;3353:13;3350:91;;;3429:1;3424:2;3415:6;3404:9;3400:22;3396:31;3389:42;3350:91;-1:-1:-1;3502:2:1;3481:15;-1:-1:-1;;3477:29:1;3462:45;;;;3509:2;3458:54;;2921:597;-1:-1:-1;;;2921:597:1:o;3523:399::-;3725:2;3707:21;;;3764:2;3744:18;;;3737:30;3803:34;3798:2;3783:18;;3776:62;-1:-1:-1;;;3869:2:1;3854:18;;3847:33;3912:3;3897:19;;3523:399::o;7574:356::-;7776:2;7758:21;;;7795:18;;;7788:30;7854:34;7849:2;7834:18;;7827:62;7921:2;7906:18;;7574:356::o;7935:401::-;8137:2;8119:21;;;8176:2;8156:18;;;8149:30;8215:34;8210:2;8195:18;;8188:62;-1:-1:-1;;;8281:2:1;8266:18;;8259:35;8326:3;8311:19;;7935:401::o;10042:980::-;10304:4;10352:3;10341:9;10337:19;10383:6;10372:9;10365:25;10409:2;10447:6;10442:2;10431:9;10427:18;10420:34;10490:3;10485:2;10474:9;10470:18;10463:31;10514:6;10549;10543:13;10580:6;10572;10565:22;10618:3;10607:9;10603:19;10596:26;;10657:2;10649:6;10645:15;10631:29;;10678:1;10688:195;10702:6;10699:1;10696:13;10688:195;;;10767:13;;-1:-1:-1;;;;;10763:39:1;10751:52;;10858:15;;;;10823:12;;;;10799:1;10717:9;10688:195;;;-1:-1:-1;;;;;;;10939:32:1;;;;10934:2;10919:18;;10912:60;-1:-1:-1;;;11003:3:1;10988:19;10981:35;10900:3;10042:980;-1:-1:-1;;;10042:980:1:o;11216:128::-;11256:3;11287:1;11283:6;11280:1;11277:13;11274:39;;;11293:18;;:::i;:::-;-1:-1:-1;11329:9:1;;11216:128::o;11349:217::-;11389:1;11415;11405:132;;11459:10;11454:3;11450:20;11447:1;11440:31;11494:4;11491:1;11484:15;11522:4;11519:1;11512:15;11405:132;-1:-1:-1;11551:9:1;;11349:217::o;11571:168::-;11611:7;11677:1;11673;11669:6;11665:14;11662:1;11659:21;11654:1;11647:9;11640:17;11636:45;11633:71;;;11684:18;;:::i;:::-;-1:-1:-1;11724:9:1;;11571:168::o;11744:125::-;11784:4;11812:1;11809;11806:8;11803:34;;;11817:18;;:::i;:::-;-1:-1:-1;11854:9:1;;11744:125::o;11874:380::-;11953:1;11949:12;;;;11996;;;12017:61;;12071:4;12063:6;12059:17;12049:27;;12017:61;12124:2;12116:6;12113:14;12093:18;12090:38;12087:161;;;12170:10;12165:3;12161:20;12158:1;12151:31;12205:4;12202:1;12195:15;12233:4;12230:1;12223:15;12087:161;;11874:380;;;:::o;12259:127::-;12320:10;12315:3;12311:20;12308:1;12301:31;12351:4;12348:1;12341:15;12375:4;12372:1;12365:15;12391:127;12452:10;12447:3;12443:20;12440:1;12433:31;12483:4;12480:1;12473:15;12507:4;12504:1;12497:15
Swarm Source
ipfs://bc7afaf89dfa92600f7d2d8769c3fe34eb968992cac87f1d98159aefebd96d49
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.