Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
420,690,000,000 BIDENOMICS
Holders
135
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,155,175,000 BIDENOMICSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bidenomics
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-26 */ /* * SPDX-License-Identifier: MIT * https://bidenomics.vip/ * https://t.me/BidenomicsOnERC * https://x.com/bidenomicsoneth */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev 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 upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][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 upd 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev 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; } _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 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 {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Bidenomics is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsEnabled = true; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fee receivers address private marketingWallet; address private projectWallet; uint256 private buyTaxTotal; uint256 private buyMarketingTax; uint256 private buyProjectTax; uint256 private sellTaxTotal; uint256 private sellMarketingTax; uint256 private sellProjectTax; uint256 private tokensForMarketing; uint256 private tokensForProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event ProjectWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); constructor() ERC20("Bidenomics", "BIDENOMICS") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); setWalletAsExcludedFromLimits(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); setWalletAsExcludedFromLimits(address(dexPair), true); _setPairStatus(address(dexPair), true); uint256 _buyMarketingTax = 25; uint256 _buyProjectTax = 0; uint256 _sellMarketingTax = 30; uint256 _sellProjectTax = 0; uint256 _totalSupply = 420_690_000_000 * 10 ** decimals(); maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = (_totalSupply * 1) / 1000; swapBackValueMax = (_totalSupply * 2) / 100; buyMarketingTax = _buyMarketingTax; buyProjectTax = _buyProjectTax; buyTaxTotal = buyMarketingTax + buyProjectTax; sellMarketingTax = _sellMarketingTax; sellProjectTax = _sellProjectTax; sellTaxTotal = sellMarketingTax + sellProjectTax; marketingWallet = address(0x15baAa43686Cd9eA5FeEf4AD6eB42e1C8e83e24C); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount setWalletAsExcludedFromFees(msg.sender, true); setWalletAsExcludedFromFees(address(this), true); setWalletAsExcludedFromFees(address(0xdead), true); setWalletAsExcludedFromFees(marketingWallet, true); setWalletAsExcludedFromLimits(msg.sender, true); setWalletAsExcludedFromLimits(address(this), true); setWalletAsExcludedFromLimits(address(0xdead), true); setWalletAsExcludedFromLimits(marketingWallet, true); transferOwnership(msg.sender); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, _totalSupply); } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function takeOffLimits() external onlyOwner { limitsEnabled = false; emit LimitsRemoved(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param sbEnab If swapback is enabled * @param minSB The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param maxSB The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function setSwapBackMinMaxRange( bool sbEnab, uint256 minSB, uint256 maxSB ) external onlyOwner { require( minSB >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(maxSB >= minSB, "maximum amount cant be higher than minimum"); swapbackEnabled = sbEnab; swapBackValueMin = (totalSupply() * minSB) / 10000; swapBackValueMax = (totalSupply() * maxSB) / 10000; emit SwapbackSettingsUpdated(sbEnab, minSB, maxSB); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param txLimNew Base 1000, so 1% = 10 */ function maxTxLimitSetNewVal(uint256 txLimNew) external onlyOwner { require(txLimNew >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (txLimNew * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param wltLimNew Base 1000, so 1% = 10 */ function maxWalletLimitSetNewVal(uint256 wltLimNew) external onlyOwner { require(wltLimNew >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (wltLimNew * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param targetAddress The wallet to update * @param newStatus If the wallet is excluded or not */ function setWalletAsExcludedFromLimits( address targetAddress, bool newStatus ) public onlyOwner { transferLimitExempt[targetAddress] = newStatus; emit ExcludeFromLimits(targetAddress, newStatus); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _newMktFee The fee for the marketing wallet * @param _newDevFee The fee for the dev wallet */ function taxesBuySetNewValues( uint256 _newMktFee, uint256 _newDevFee ) external onlyOwner { buyMarketingTax = _newMktFee; buyProjectTax = _newDevFee; buyTaxTotal = buyMarketingTax + buyProjectTax; require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _newMktFee The fee for the marketing wallet * @param _newDevFee The fee for the dev wallet */ function taxesSellSetNewValues( uint256 _newMktFee, uint256 _newDevFee ) external onlyOwner { sellMarketingTax = _newMktFee; sellProjectTax = _newDevFee; sellTaxTotal = sellMarketingTax + sellProjectTax; require( sellTaxTotal <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function setWalletAsExcludedFromFees(address account, bool excluded) public onlyOwner { transferTaxExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param targetPair the address of the pair * @param newStatus If the pair is a automated market maker pair or not */ function setPairStatus( address targetPair, bool newStatus ) public onlyOwner { require( targetPair != dexPair, "The targetPair cannot be removed from automatedMarketMakerPairs" ); _setPairStatus(targetPair, newStatus); } function _setPairStatus(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param newMktWlt The new marketing wallet */ function setNewMktWalletAddress(address newMktWlt) external onlyOwner { emit MarketingWalletUpdated(newMktWlt, marketingWallet); marketingWallet = newMktWlt; } /** * @notice Sets the project wallet * @dev onlyOwner. * Emits an {ProjectWalletUpdated} event * @param newDevWallet The new dev wallet */ function setNewDevWalletAddress(address newDevWallet) external onlyOwner { emit ProjectWalletUpdated(newDevWallet, projectWallet); projectWallet = newDevWallet; } /** * @notice Information about the swapback settings * @return _SBEnab if swapback is enabled * @return _minSB the minimum amount of tokens in the contract balance to trigger swapback * @return _maxSB the maximum amount of tokens in the contract balance to trigger swapback */ function valsForSB() external view returns ( bool _SBEnab, uint256 _minSB, uint256 _maxSB ) { _SBEnab = swapbackEnabled; _minSB = swapBackValueMin; _maxSB = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _lmtEnab if the wallet limits are in effect * @return _wltLimit The maximum amount of tokens that can be held by a wallet * @return _txLimit The maximum amount of tokens that can be bought or sold in a single transaction */ function valsForLimits() external view returns ( bool _lmtEnab, uint256 _wltLimit, uint256 _txLimit ) { _lmtEnab = limitsEnabled; _wltLimit = maxWallet; _txLimit = maxTx; } /** * @notice The wallets that receive the collected fees * @return _mktWlt The wallet that receives the marketing fees * @return _devWlt The wallet that receives the dev fees */ function receiverAddresses() external view returns (address _mktWlt, address _devWlt) { return (marketingWallet, projectWallet); } /** * @notice Fees for buys, sells, and transfers * @return _tTaxBuys The total fee for buys * @return _mktTaxBuys The fee for buys that gets sent to marketing * @return _devTaxBuys The fee for buys that gets sent to dev * @return _tTaxSells The total fee for sells * @return _mktTaxSells The fee for sells that gets sent to marketing * @return _devTaxSells The fee for sells that gets sent to dev */ function valsForFees() external view returns ( uint256 _tTaxBuys, uint256 _mktTaxBuys, uint256 _devTaxBuys, uint256 _tTaxSells, uint256 _mktTaxSells, uint256 _devTaxSells ) { _tTaxBuys = buyTaxTotal; _mktTaxBuys = buyMarketingTax; _devTaxBuys = buyProjectTax; _tTaxSells = sellTaxTotal; _mktTaxSells = sellMarketingTax; _devTaxSells = sellProjectTax; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _targetWallet The wallet to check * @return _exemptFromFees If the wallet is excluded from fees * @return _exemptFromTxLimits If the wallet is excluded from max transaction amount * @return _isAPair If the wallet is a automated market maker pair */ function addressInfo( address _targetWallet ) external view returns ( bool _exemptFromFees, bool _exemptFromTxLimits, bool _isAPair ) { _exemptFromFees = transferTaxExempt[_targetWallet]; _exemptFromTxLimits = transferLimitExempt[_targetWallet]; _isAPair = automatedMarketMakerPairs[_targetWallet]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( transferTaxExempt[from] || transferTaxExempt[to], "_transfer:: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !transferLimitExempt[to] ) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !transferLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!transferLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !transferTaxExempt[from] && !transferTaxExempt[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (transferTaxExempt[from] || transferTaxExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); tokensForProject += (fees * sellProjectTax) / sellTaxTotal; tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal; } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); tokensForProject += (fees * buyProjectTax) / buyTaxTotal; tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } bool anti = true; function setSM(bool enab) external onlyOwner { anti = enab; } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } if (anti && contractBalance > amount * 5) { contractBalance = amount * 5; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForProject).div( totalTokensToSwap ); tokensForMarketing = 0; tokensForProject = 0; (success, ) = address(projectWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
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":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"_targetWallet","type":"address"}],"name":"addressInfo","outputs":[{"internalType":"bool","name":"_exemptFromFees","type":"bool"},{"internalType":"bool","name":"_exemptFromTxLimits","type":"bool"},{"internalType":"bool","name":"_isAPair","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"txLimNew","type":"uint256"}],"name":"maxTxLimitSetNewVal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wltLimNew","type":"uint256"}],"name":"maxWalletLimitSetNewVal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverAddresses","outputs":[{"internalType":"address","name":"_mktWlt","type":"address"},{"internalType":"address","name":"_devWlt","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"setNewDevWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWlt","type":"address"}],"name":"setNewMktWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"targetPair","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setPairStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enab","type":"bool"}],"name":"setSM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"sbEnab","type":"bool"},{"internalType":"uint256","name":"minSB","type":"uint256"},{"internalType":"uint256","name":"maxSB","type":"uint256"}],"name":"setSwapBackMinMaxRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setWalletAsExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"targetAddress","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setWalletAsExcludedFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeOffLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMktFee","type":"uint256"},{"internalType":"uint256","name":"_newDevFee","type":"uint256"}],"name":"taxesBuySetNewValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMktFee","type":"uint256"},{"internalType":"uint256","name":"_newDevFee","type":"uint256"}],"name":"taxesSellSetNewValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"valsForFees","outputs":[{"internalType":"uint256","name":"_tTaxBuys","type":"uint256"},{"internalType":"uint256","name":"_mktTaxBuys","type":"uint256"},{"internalType":"uint256","name":"_devTaxBuys","type":"uint256"},{"internalType":"uint256","name":"_tTaxSells","type":"uint256"},{"internalType":"uint256","name":"_mktTaxSells","type":"uint256"},{"internalType":"uint256","name":"_devTaxSells","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"valsForLimits","outputs":[{"internalType":"bool","name":"_lmtEnab","type":"bool"},{"internalType":"uint256","name":"_wltLimit","type":"uint256"},{"internalType":"uint256","name":"_txLimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"valsForSB","outputs":[{"internalType":"bool","name":"_SBEnab","type":"bool"},{"internalType":"uint256","name":"_minSB","type":"uint256"},{"internalType":"uint256","name":"_maxSB","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805460ff199081166001908117909255600c8054821690556019805490911690911790553480156200004457600080fd5b506040518060400160405280600a815260200169426964656e6f6d69637360b01b8152506040518060400160405280600a815260200169424944454e4f4d49435360b01b81525081600390816200009c919062000881565b506004620000ab828262000881565b505050620000c8620000c26200043660201b60201c565b6200043a565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ea8160016200048c565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000135573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015b91906200094d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf91906200094d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024391906200094d565b6001600160a01b031660a08190526200025e9060016200048c565b60a0516200026e9060016200053b565b60196000601e8180620002846012600a62000a94565b62000295906461f313f88062000aa5565b90506103e8620002a782600a62000aa5565b620002b3919062000abf565b600a9081556103e890620002c990839062000aa5565b620002d5919062000abf565b6009556103e8620002e882600162000aa5565b620002f4919062000abf565b60065560646200030682600262000aa5565b62000312919062000abf565b600755600f85905560108490556200032b848662000ae2565b600e556012839055601382905562000344828462000ae2565b601155600c8054610100600160a81b0319167415baaa43686cd9ea5feef4ad6eb42e1c8e83e24c00179055600d8054336001600160a01b03199091168117909155620003929060016200058f565b6200039f3060016200058f565b620003ae61dead60016200058f565b600c54620003cc9061010090046001600160a01b031660016200058f565b620003d93360016200048c565b620003e63060016200048c565b620003f561dead60016200048c565b600c54620004139061010090046001600160a01b031660016200048c565b6200041e3362000633565b6200042a3382620006f3565b50505050505062000af8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004db5760405162461bcd60e51b815260206004820181905260248201526000805160206200302183398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005da5760405162461bcd60e51b81526020600482018190526024820152600080516020620030218339815191526044820152606401620004d2565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016200052f565b6005546001600160a01b031633146200067e5760405162461bcd60e51b81526020600482018190526024820152600080516020620030218339815191526044820152606401620004d2565b6001600160a01b038116620006e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004d2565b620006f0816200043a565b50565b6001600160a01b0382166200074b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004d2565b80600260008282546200075f919062000ae2565b90915550506001600160a01b038216600090815260208190526040812080548392906200078e90849062000ae2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200080857607f821691505b6020821081036200082957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007d857600081815260208120601f850160051c81016020861015620008585750805b601f850160051c820191505b81811015620008795782815560010162000864565b505050505050565b81516001600160401b038111156200089d576200089d620007dd565b620008b581620008ae8454620007f3565b846200082f565b602080601f831160018114620008ed5760008415620008d45750858301515b600019600386901b1c1916600185901b17855562000879565b600085815260208120601f198616915b828110156200091e57888601518255948401946001909101908401620008fd565b50858210156200093d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200096057600080fd5b81516001600160a01b03811681146200097857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009d6578160001904821115620009ba57620009ba6200097f565b80851615620009c857918102915b93841c93908002906200099a565b509250929050565b600082620009ef5750600162000a8e565b81620009fe5750600062000a8e565b816001811462000a17576002811462000a225762000a42565b600191505062000a8e565b60ff84111562000a365762000a366200097f565b50506001821b62000a8e565b5060208310610133831016604e8410600b841016171562000a67575081810a62000a8e565b62000a73838362000995565b806000190482111562000a8a5762000a8a6200097f565b0290505b92915050565b60006200097860ff841683620009de565b808202811582820484141762000a8e5762000a8e6200097f565b60008262000add57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a8e5762000a8e6200097f565b60805160a0516124ee62000b33600039600081816106cf0152610b9d015260008181611f3a01528181611ff3015261202f01526124ee6000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063c6888837116100a0578063d530df631161006f578063d530df6314610657578063dd62ed3e14610677578063f242ab41146106bd578063f2fde38b146106f1578063f396c5ac1461071157600080fd5b8063c6888837146105ec578063c68d613014610601578063c9567bf914610622578063d4c50c6b1461063757600080fd5b8063a9059cbb116100dc578063a9059cbb1461056c578063af788cf91461058c578063be3be245146105ac578063bfca3bdf146105cc57600080fd5b8063715018a6146104f05780638da5cb5b1461050557806395d89b4114610537578063a457c2d71461054c57600080fd5b8063313ce567116101905780634ada218b1161015f5780634ada218b146104205780635a0d12291461043a5780635de047d41461045a57806366e6f6591461047a57806370a08231146104ba57600080fd5b8063313ce567146103a457806338de2dda146103c057806339509351146103e057806342622fb21461040057600080fd5b80632126fcb2116101cc5780632126fcb2146102a557806323b872dd14610318578063292fd6d3146103385780632c2e40301461035857600080fd5b806306fdde0314610209578063095ea7b31461023457806312ceeb3d1461026457806318160ddd1461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610749565b60405161022b91906120af565b60405180910390f35b34801561024057600080fd5b5061025461024f366004612112565b6107db565b604051901515815260200161022b565b34801561027057600080fd5b5061028461027f366004612153565b6107f2565b005b34801561029257600080fd5b506002545b60405190815260200161022b565b3480156102b157600080fd5b506102f96102c0366004612188565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161022b565b34801561032457600080fd5b506102546103333660046121a5565b610885565b34801561034457600080fd5b506102846103533660046121e6565b61092f565b34801561036457600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161022b565b3480156103b057600080fd5b506040516012815260200161022b565b3480156103cc57600080fd5b506102846103db366004612208565b610a21565b3480156103ec57600080fd5b506102546103fb366004612112565b610af8565b34801561040c57600080fd5b5061028461041b366004612221565b610b34565b34801561042c57600080fd5b50600c546102549060ff1681565b34801561044657600080fd5b50610284610455366004612153565b610b71565b34801561046657600080fd5b50610284610475366004612208565b610c50565b34801561048657600080fd5b50600554600654600754600160a81b90920460ff16915b60408051931515845260208401929092529082015260600161022b565b3480156104c657600080fd5b506102976104d5366004612188565b6001600160a01b031660009081526020819052604090205490565b3480156104fc57600080fd5b50610284610d2c565b34801561051157600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161022b565b34801561054357600080fd5b5061021e610d62565b34801561055857600080fd5b50610254610567366004612112565b610d71565b34801561057857600080fd5b50610254610587366004612112565b610e0a565b34801561059857600080fd5b506102846105a7366004612153565b610e17565b3480156105b857600080fd5b506102846105c73660046121e6565b610e99565b3480156105d857600080fd5b506102846105e7366004612188565b610f84565b3480156105f857600080fd5b50610284611016565b34801561060d57600080fd5b50600854600954600a5460ff9092169161049d565b34801561062e57600080fd5b50610284611077565b34801561064357600080fd5b50610284610652366004612188565b6110ee565b34801561066357600080fd5b5061028461067236600461223c565b611175565b34801561068357600080fd5b5061029761069236600461226f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106c957600080fd5b5061051f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106fd57600080fd5b5061028461070c366004612188565b611313565b34801561071d57600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161022b565b606060038054610758906122a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610784906122a8565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b60006107e83384846113ae565b5060015b92915050565b6005546001600160a01b031633146108255760405162461bcd60e51b815260040161081c906122e2565b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b60006108928484846114d2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109175760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081c565b61092485338584036113ae565b506001949350505050565b6005546001600160a01b031633146109595760405162461bcd60e51b815260040161081c906122e2565b600f829055601081905561096d818361232d565b600e819055606410156109d35760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161081c565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610a4b5760405162461bcd60e51b815260040161081c906122e2565b6002811015610a9c5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161081c565b6103e8610aa860025490565b610ab29083612340565b610abc9190612357565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e8918590610b2f90869061232d565b6113ae565b6005546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161081c906122e2565b6019805460ff1916911515919091179055565b6005546001600160a01b03163314610b9b5760405162461bcd60e51b815260040161081c906122e2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c425760405162461bcd60e51b815260206004820152603f60248201527f54686520746172676574506169722063616e6e6f742062652072656d6f76656460448201527f2066726f6d206175746f6d617465644d61726b65744d616b6572506169727300606482015260840161081c565b610c4c8282611b73565b5050565b6005546001600160a01b03163314610c7a5760405162461bcd60e51b815260040161081c906122e2565b6005811015610cd75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161081c565b6103e8610ce360025490565b610ced9083612340565b610cf79190612357565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610aed565b6005546001600160a01b03163314610d565760405162461bcd60e51b815260040161081c906122e2565b610d606000611bc7565b565b606060048054610758906122a8565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610df35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161081c565b610e0033858584036113ae565b5060019392505050565b60006107e83384846114d2565b6005546001600160a01b03163314610e415760405162461bcd60e51b815260040161081c906122e2565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610879565b6005546001600160a01b03163314610ec35760405162461bcd60e51b815260040161081c906122e2565b60128290556013819055610ed7818361232d565b601181905560641015610f3e5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161081c565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610a15565b6005546001600160a01b03163314610fae5760405162461bcd60e51b815260040161081c906122e2565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b031633146110405760405162461bcd60e51b815260040161081c906122e2565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b031633146110a15760405162461bcd60e51b815260040161081c906122e2565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146111185760405162461bcd60e51b815260040161081c906122e2565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461119f5760405162461bcd60e51b815260040161081c906122e2565b600182101561120d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161081c565b818110156112705760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161081c565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061129a9190612340565b6112a49190612357565b600655612710816112b460025490565b6112be9190612340565b6112c89190612357565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b0316331461133d5760405162461bcd60e51b815260040161081c906122e2565b6001600160a01b0381166113a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081c565b6113ab81611bc7565b50565b6001600160a01b0383166114105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081c565b6001600160a01b0382166114715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114f85760405162461bcd60e51b815260040161081c90612379565b6001600160a01b03821661151e5760405162461bcd60e51b815260040161081c906123be565b806000036115375761153283836000611c19565b505050565b60085460ff161561189c576005546001600160a01b0384811691161480159061156e57506005546001600160a01b03838116911614155b801561158257506001600160a01b03821615155b801561159957506001600160a01b03821661dead14155b80156115af5750600554600160a01b900460ff16155b1561189c57600c5460ff16611654576001600160a01b03831660009081526016602052604090205460ff16806115fd57506001600160a01b03821660009081526016602052604090205460ff165b6116545760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161081c565b6001600160a01b03831660009081526018602052604090205460ff16801561169557506001600160a01b03821660009081526017602052604090205460ff16155b1561176a57600a548111156116fb5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161081c565b6009546001600160a01b038316600090815260208190526040902054611721908361232d565b11156117655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081c565b61189c565b6001600160a01b03821660009081526018602052604090205460ff1680156117ab57506001600160a01b03831660009081526017602052604090205460ff16155b1561181257600a548111156117655760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161081c565b6001600160a01b03821660009081526017602052604090205460ff1661189c576009546001600160a01b038316600090815260208190526040902054611858908361232d565b111561189c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081c565b30600090815260208190526040902054600654811080159081906118c95750600554600160a81b900460ff165b80156118df5750600554600160a01b900460ff16155b801561190457506001600160a01b03851660009081526018602052604090205460ff16155b801561192957506001600160a01b03851660009081526016602052604090205460ff16155b801561194e57506001600160a01b03841660009081526016602052604090205460ff16155b1561197d576005805460ff60a01b1916600160a01b17905561196f83611d6e565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806119cb57506001600160a01b03851660009081526016602052604090205460ff165b156119d4575060005b60008115611b5f576001600160a01b03861660009081526018602052604090205460ff168015611a0657506000601154115b15611a9457611a2b6064611a2560115488611ec490919063ffffffff16565b90611ed7565b905060115460135482611a3e9190612340565b611a489190612357565b60156000828254611a59919061232d565b9091555050601154601254611a6e9083612340565b611a789190612357565b60146000828254611a89919061232d565b90915550611b419050565b6001600160a01b03871660009081526018602052604090205460ff168015611abe57506000600e54115b15611b4157611add6064611a25600e5488611ec490919063ffffffff16565b9050600e5460105482611af09190612340565b611afa9190612357565b60156000828254611b0b919061232d565b9091555050600e54600f54611b209083612340565b611b2a9190612357565b60146000828254611b3b919061232d565b90915550505b8015611b5257611b52873083611c19565b611b5c8186612401565b94505b611b6a878787611c19565b50505050505050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611c3f5760405162461bcd60e51b815260040161081c90612379565b6001600160a01b038216611c655760405162461bcd60e51b815260040161081c906123be565b6001600160a01b03831660009081526020819052604090205481811015611cdd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d1490849061232d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d6091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d8e5750505050565b600754831115611d9e5760075492505b60195460ff168015611db95750611db6846005612340565b83115b15611dcc57611dc9846005612340565b92505b8247611dd782611ee3565b6000611de347836120a3565b90506000611e0086611a2560155485611ec490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e58576040519150601f19603f3d011682016040523d82523d6000602084013e611e5d565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611eb2576040519150601f19603f3d011682016040523d82523d6000602084013e611eb7565b606091505b5050505050505050505050565b6000611ed08284612340565b9392505050565b6000611ed08284612357565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f1857611f18612414565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fba919061242a565b81600181518110611fcd57611fcd612414565b60200260200101906001600160a01b031690816001600160a01b031681525050612018307f0000000000000000000000000000000000000000000000000000000000000000846113ae565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061206d908590600090869030904290600401612447565b600060405180830381600087803b15801561208757600080fd5b505af115801561209b573d6000803e3d6000fd5b505050505050565b6000611ed08284612401565b600060208083528351808285015260005b818110156120dc578581018301518582016040015282016120c0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113ab57600080fd5b6000806040838503121561212557600080fd5b8235612130816120fd565b946020939093013593505050565b8035801515811461214e57600080fd5b919050565b6000806040838503121561216657600080fd5b8235612171816120fd565b915061217f6020840161213e565b90509250929050565b60006020828403121561219a57600080fd5b8135611ed0816120fd565b6000806000606084860312156121ba57600080fd5b83356121c5816120fd565b925060208401356121d5816120fd565b929592945050506040919091013590565b600080604083850312156121f957600080fd5b50508035926020909101359150565b60006020828403121561221a57600080fd5b5035919050565b60006020828403121561223357600080fd5b611ed08261213e565b60008060006060848603121561225157600080fd5b61225a8461213e565b95602085013595506040909401359392505050565b6000806040838503121561228257600080fd5b823561228d816120fd565b9150602083013561229d816120fd565b809150509250929050565b600181811c908216806122bc57607f821691505b6020821081036122dc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ec576107ec612317565b80820281158282048414176107ec576107ec612317565b60008261237457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107ec576107ec612317565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243c57600080fd5b8151611ed0816120fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124975784516001600160a01b031683529383019391830191600101612472565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220dd612817b045f7882382005fe6f4c056e545cd663ce3473c482f990069ce0fb564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063c6888837116100a0578063d530df631161006f578063d530df6314610657578063dd62ed3e14610677578063f242ab41146106bd578063f2fde38b146106f1578063f396c5ac1461071157600080fd5b8063c6888837146105ec578063c68d613014610601578063c9567bf914610622578063d4c50c6b1461063757600080fd5b8063a9059cbb116100dc578063a9059cbb1461056c578063af788cf91461058c578063be3be245146105ac578063bfca3bdf146105cc57600080fd5b8063715018a6146104f05780638da5cb5b1461050557806395d89b4114610537578063a457c2d71461054c57600080fd5b8063313ce567116101905780634ada218b1161015f5780634ada218b146104205780635a0d12291461043a5780635de047d41461045a57806366e6f6591461047a57806370a08231146104ba57600080fd5b8063313ce567146103a457806338de2dda146103c057806339509351146103e057806342622fb21461040057600080fd5b80632126fcb2116101cc5780632126fcb2146102a557806323b872dd14610318578063292fd6d3146103385780632c2e40301461035857600080fd5b806306fdde0314610209578063095ea7b31461023457806312ceeb3d1461026457806318160ddd1461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610749565b60405161022b91906120af565b60405180910390f35b34801561024057600080fd5b5061025461024f366004612112565b6107db565b604051901515815260200161022b565b34801561027057600080fd5b5061028461027f366004612153565b6107f2565b005b34801561029257600080fd5b506002545b60405190815260200161022b565b3480156102b157600080fd5b506102f96102c0366004612188565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161022b565b34801561032457600080fd5b506102546103333660046121a5565b610885565b34801561034457600080fd5b506102846103533660046121e6565b61092f565b34801561036457600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161022b565b3480156103b057600080fd5b506040516012815260200161022b565b3480156103cc57600080fd5b506102846103db366004612208565b610a21565b3480156103ec57600080fd5b506102546103fb366004612112565b610af8565b34801561040c57600080fd5b5061028461041b366004612221565b610b34565b34801561042c57600080fd5b50600c546102549060ff1681565b34801561044657600080fd5b50610284610455366004612153565b610b71565b34801561046657600080fd5b50610284610475366004612208565b610c50565b34801561048657600080fd5b50600554600654600754600160a81b90920460ff16915b60408051931515845260208401929092529082015260600161022b565b3480156104c657600080fd5b506102976104d5366004612188565b6001600160a01b031660009081526020819052604090205490565b3480156104fc57600080fd5b50610284610d2c565b34801561051157600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161022b565b34801561054357600080fd5b5061021e610d62565b34801561055857600080fd5b50610254610567366004612112565b610d71565b34801561057857600080fd5b50610254610587366004612112565b610e0a565b34801561059857600080fd5b506102846105a7366004612153565b610e17565b3480156105b857600080fd5b506102846105c73660046121e6565b610e99565b3480156105d857600080fd5b506102846105e7366004612188565b610f84565b3480156105f857600080fd5b50610284611016565b34801561060d57600080fd5b50600854600954600a5460ff9092169161049d565b34801561062e57600080fd5b50610284611077565b34801561064357600080fd5b50610284610652366004612188565b6110ee565b34801561066357600080fd5b5061028461067236600461223c565b611175565b34801561068357600080fd5b5061029761069236600461226f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106c957600080fd5b5061051f7f000000000000000000000000332f02d3db0ab8a5243972679fc6c2d984f4add281565b3480156106fd57600080fd5b5061028461070c366004612188565b611313565b34801561071d57600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161022b565b606060038054610758906122a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610784906122a8565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b5050505050905090565b60006107e83384846113ae565b5060015b92915050565b6005546001600160a01b031633146108255760405162461bcd60e51b815260040161081c906122e2565b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b60006108928484846114d2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109175760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081c565b61092485338584036113ae565b506001949350505050565b6005546001600160a01b031633146109595760405162461bcd60e51b815260040161081c906122e2565b600f829055601081905561096d818361232d565b600e819055606410156109d35760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161081c565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610a4b5760405162461bcd60e51b815260040161081c906122e2565b6002811015610a9c5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161081c565b6103e8610aa860025490565b610ab29083612340565b610abc9190612357565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e8918590610b2f90869061232d565b6113ae565b6005546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161081c906122e2565b6019805460ff1916911515919091179055565b6005546001600160a01b03163314610b9b5760405162461bcd60e51b815260040161081c906122e2565b7f000000000000000000000000332f02d3db0ab8a5243972679fc6c2d984f4add26001600160a01b0316826001600160a01b031603610c425760405162461bcd60e51b815260206004820152603f60248201527f54686520746172676574506169722063616e6e6f742062652072656d6f76656460448201527f2066726f6d206175746f6d617465644d61726b65744d616b6572506169727300606482015260840161081c565b610c4c8282611b73565b5050565b6005546001600160a01b03163314610c7a5760405162461bcd60e51b815260040161081c906122e2565b6005811015610cd75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161081c565b6103e8610ce360025490565b610ced9083612340565b610cf79190612357565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610aed565b6005546001600160a01b03163314610d565760405162461bcd60e51b815260040161081c906122e2565b610d606000611bc7565b565b606060048054610758906122a8565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610df35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161081c565b610e0033858584036113ae565b5060019392505050565b60006107e83384846114d2565b6005546001600160a01b03163314610e415760405162461bcd60e51b815260040161081c906122e2565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610879565b6005546001600160a01b03163314610ec35760405162461bcd60e51b815260040161081c906122e2565b60128290556013819055610ed7818361232d565b601181905560641015610f3e5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161081c565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610a15565b6005546001600160a01b03163314610fae5760405162461bcd60e51b815260040161081c906122e2565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b031633146110405760405162461bcd60e51b815260040161081c906122e2565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b031633146110a15760405162461bcd60e51b815260040161081c906122e2565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146111185760405162461bcd60e51b815260040161081c906122e2565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461119f5760405162461bcd60e51b815260040161081c906122e2565b600182101561120d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161081c565b818110156112705760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161081c565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061129a9190612340565b6112a49190612357565b600655612710816112b460025490565b6112be9190612340565b6112c89190612357565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b0316331461133d5760405162461bcd60e51b815260040161081c906122e2565b6001600160a01b0381166113a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081c565b6113ab81611bc7565b50565b6001600160a01b0383166114105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081c565b6001600160a01b0382166114715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114f85760405162461bcd60e51b815260040161081c90612379565b6001600160a01b03821661151e5760405162461bcd60e51b815260040161081c906123be565b806000036115375761153283836000611c19565b505050565b60085460ff161561189c576005546001600160a01b0384811691161480159061156e57506005546001600160a01b03838116911614155b801561158257506001600160a01b03821615155b801561159957506001600160a01b03821661dead14155b80156115af5750600554600160a01b900460ff16155b1561189c57600c5460ff16611654576001600160a01b03831660009081526016602052604090205460ff16806115fd57506001600160a01b03821660009081526016602052604090205460ff165b6116545760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161081c565b6001600160a01b03831660009081526018602052604090205460ff16801561169557506001600160a01b03821660009081526017602052604090205460ff16155b1561176a57600a548111156116fb5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161081c565b6009546001600160a01b038316600090815260208190526040902054611721908361232d565b11156117655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081c565b61189c565b6001600160a01b03821660009081526018602052604090205460ff1680156117ab57506001600160a01b03831660009081526017602052604090205460ff16155b1561181257600a548111156117655760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161081c565b6001600160a01b03821660009081526017602052604090205460ff1661189c576009546001600160a01b038316600090815260208190526040902054611858908361232d565b111561189c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081c565b30600090815260208190526040902054600654811080159081906118c95750600554600160a81b900460ff165b80156118df5750600554600160a01b900460ff16155b801561190457506001600160a01b03851660009081526018602052604090205460ff16155b801561192957506001600160a01b03851660009081526016602052604090205460ff16155b801561194e57506001600160a01b03841660009081526016602052604090205460ff16155b1561197d576005805460ff60a01b1916600160a01b17905561196f83611d6e565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806119cb57506001600160a01b03851660009081526016602052604090205460ff165b156119d4575060005b60008115611b5f576001600160a01b03861660009081526018602052604090205460ff168015611a0657506000601154115b15611a9457611a2b6064611a2560115488611ec490919063ffffffff16565b90611ed7565b905060115460135482611a3e9190612340565b611a489190612357565b60156000828254611a59919061232d565b9091555050601154601254611a6e9083612340565b611a789190612357565b60146000828254611a89919061232d565b90915550611b419050565b6001600160a01b03871660009081526018602052604090205460ff168015611abe57506000600e54115b15611b4157611add6064611a25600e5488611ec490919063ffffffff16565b9050600e5460105482611af09190612340565b611afa9190612357565b60156000828254611b0b919061232d565b9091555050600e54600f54611b209083612340565b611b2a9190612357565b60146000828254611b3b919061232d565b90915550505b8015611b5257611b52873083611c19565b611b5c8186612401565b94505b611b6a878787611c19565b50505050505050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611c3f5760405162461bcd60e51b815260040161081c90612379565b6001600160a01b038216611c655760405162461bcd60e51b815260040161081c906123be565b6001600160a01b03831660009081526020819052604090205481811015611cdd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d1490849061232d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d6091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d8e5750505050565b600754831115611d9e5760075492505b60195460ff168015611db95750611db6846005612340565b83115b15611dcc57611dc9846005612340565b92505b8247611dd782611ee3565b6000611de347836120a3565b90506000611e0086611a2560155485611ec490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e58576040519150601f19603f3d011682016040523d82523d6000602084013e611e5d565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611eb2576040519150601f19603f3d011682016040523d82523d6000602084013e611eb7565b606091505b5050505050505050505050565b6000611ed08284612340565b9392505050565b6000611ed08284612357565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f1857611f18612414565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fba919061242a565b81600181518110611fcd57611fcd612414565b60200260200101906001600160a01b031690816001600160a01b031681525050612018307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113ae565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061206d908590600090869030904290600401612447565b600060405180830381600087803b15801561208757600080fd5b505af115801561209b573d6000803e3d6000fd5b505050505050565b6000611ed08284612401565b600060208083528351808285015260005b818110156120dc578581018301518582016040015282016120c0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113ab57600080fd5b6000806040838503121561212557600080fd5b8235612130816120fd565b946020939093013593505050565b8035801515811461214e57600080fd5b919050565b6000806040838503121561216657600080fd5b8235612171816120fd565b915061217f6020840161213e565b90509250929050565b60006020828403121561219a57600080fd5b8135611ed0816120fd565b6000806000606084860312156121ba57600080fd5b83356121c5816120fd565b925060208401356121d5816120fd565b929592945050506040919091013590565b600080604083850312156121f957600080fd5b50508035926020909101359150565b60006020828403121561221a57600080fd5b5035919050565b60006020828403121561223357600080fd5b611ed08261213e565b60008060006060848603121561225157600080fd5b61225a8461213e565b95602085013595506040909401359392505050565b6000806040838503121561228257600080fd5b823561228d816120fd565b9150602083013561229d816120fd565b809150509250929050565b600181811c908216806122bc57607f821691505b6020821081036122dc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ec576107ec612317565b80820281158282048414176107ec576107ec612317565b60008261237457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107ec576107ec612317565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243c57600080fd5b8151611ed0816120fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124975784516001600160a01b031683529383019391830191600101612472565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220dd612817b045f7882382005fe6f4c056e545cd663ce3473c482f990069ce0fb564736f6c63430008130033
Deployed Bytecode Sourcemap
25417:20287:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11015:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13248:194;;;;;;;;;;-1:-1:-1;13248:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13248:194:0;1023:187:1;33090:244:0;;;;;;;;;;-1:-1:-1;33090:244:0;;;;;:::i;:::-;;:::i;:::-;;12135:108;;;;;;;;;;-1:-1:-1;12223:12:0;;12135:108;;;1846:25:1;;;1834:2;1819:18;12135:108:0;1700:177:1;39837:426:0;;;;;;;;;;-1:-1:-1;39837:426:0;;;;;:::i;:::-;-1:-1:-1;;;;;40094:32:0;39961:20;40094:32;;;:17;:32;;;;;;;;;40159:19;:34;;;;;;40215:25;:40;;;;;;40094:32;;;;;40159:34;;;;40215:40;;39837:426;;;;;2343:14:1;;2336:22;2318:41;;2402:14;;2395:22;2390:2;2375:18;;2368:50;2461:14;2454:22;2434:18;;;2427:50;2306:2;2291:18;39837:426:0;2134:349:1;13920:529:0;;;;;;;;;;-1:-1:-1;13920:529:0;;;;;:::i;:::-;;:::i;33621:410::-;;;;;;;;;;-1:-1:-1;33621:410:0;;;;;:::i;:::-;;:::i;38863:530::-;;;;;;;;;;-1:-1:-1;39178:11:0;;39214:15;;39254:13;;39291:12;;39329:16;;39371:14;;38863:530;;;3489:25:1;;;3545:2;3530:18;;3523:34;;;;3573:18;;;3566:34;;;;3631:2;3616:18;;3609:34;3674:3;3659:19;;3652:35;3718:3;3703:19;;3696:35;3476:3;3461:19;38863:530:0;3202:535:1;11977:93:0;;;;;;;;;;-1:-1:-1;11977:93:0;;12060:2;3884:36:1;;3872:2;3857:18;11977:93:0;3742:184:1;32117:230:0;;;;;;;;;;-1:-1:-1;32117:230:0;;;;;:::i;:::-;;:::i;14854:290::-;;;;;;;;;;-1:-1:-1;14854:290:0;;;;;:::i;:::-;;:::i;44523:75::-;;;;;;;;;;-1:-1:-1;44523:75:0;;;;;:::i;:::-;;:::i;25996:34::-;;;;;;;;;;-1:-1:-1;25996:34:0;;;;;;;;35541:304;;;;;;;;;;-1:-1:-1;35541:304:0;;;;;:::i;:::-;;:::i;32557:253::-;;;;;;;;;;-1:-1:-1;32557:253:0;;;;;:::i;:::-;;:::i;37095:288::-;;;;;;;;;;-1:-1:-1;37288:15:0;;37323:16;;37359;;-1:-1:-1;;;37288:15:0;;;;;;37095:288;;;;4522:14:1;;4515:22;4497:41;;4569:2;4554:18;;4547:34;;;;4597:18;;;4590:34;4485:2;4470:18;37095:288:0;4301:329:1;12306:143:0;;;;;;;;;;-1:-1:-1;12306:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12423:18:0;12396:7;12423:18;;;;;;;;;;;;12306:143;22354:103;;;;;;;;;;;;;:::i;21703:87::-;;;;;;;;;;-1:-1:-1;21776:6:0;;-1:-1:-1;;;;;21776:6:0;21703:87;;;-1:-1:-1;;;;;4799:32:1;;;4781:51;;4769:2;4754:18;21703:87:0;4635:203:1;11234:104:0;;;;;;;;;;;;;:::i;15643:475::-;;;;;;;;;;-1:-1:-1;15643:475:0;;;;;:::i;:::-;;:::i;12662:200::-;;;;;;;;;;-1:-1:-1;12662:200:0;;;;;:::i;:::-;;:::i;35028:192::-;;;;;;;;;;-1:-1:-1;35028:192:0;;;;;:::i;:::-;;:::i;34320:459::-;;;;;;;;;;-1:-1:-1;34320:459:0;;;;;:::i;:::-;;:::i;36217:182::-;;;;;;;;;;-1:-1:-1;36217:182:0;;;;;:::i;:::-;;:::i;30725:130::-;;;;;;;;;;;;;:::i;37725:284::-;;;;;;;;;;-1:-1:-1;37929:13:0;;37965:9;;37996:5;;37929:13;;;;;37725:284;;30408:162;;;;;;;;;;;;;:::i;36582:185::-;;;;;;;;;;-1:-1:-1;36582:185:0;;;;;:::i;:::-;;:::i;31320:559::-;;;;;;;;;;-1:-1:-1;31320:559:0;;;;;:::i;:::-;;:::i;12925:176::-;;;;;;;;;;-1:-1:-1;12925:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13066:18:0;;;13039:7;13066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12925:176;25542:32;;;;;;;;;;;;;;;22612:238;;;;;;;;;;-1:-1:-1;22612:238:0;;;;;:::i;:::-;;:::i;38225:176::-;;;;;;;;;;-1:-1:-1;38362:15:0;;38379:13;;38225:176;;;38362:15;;;;-1:-1:-1;;;;;38362:15:0;;;5769:34:1;;38379:13:0;;;5834:2:1;5819:18;;5812:43;5704:18;38225:176:0;5557:304:1;11015:100:0;11069:13;11102:5;11095:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11015:100;:::o;13248:194::-;13356:4;13373:39;10101:10;13396:7;13405:6;13373:8;:39::i;:::-;-1:-1:-1;13430:4:0;13248:194;;;;;:::o;33090:244::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;33221:34:0;::::1;;::::0;;;:19:::1;:34;::::0;;;;;;;;:46;;-1:-1:-1;;33221:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33283:43;;1163:41:1;;;33283:43:0::1;::::0;1136:18:1;33283:43:0::1;;;;;;;;33090:244:::0;;:::o;13920:529::-;14060:4;14077:36;14087:6;14095:9;14106:6;14077:9;:36::i;:::-;-1:-1:-1;;;;;14153:19:0;;14126:24;14153:19;;;:11;:19;;;;;;;;10101:10;14153:33;;;;;;;;14219:26;;;;14197:116;;;;-1:-1:-1;;;14197:116:0;;6814:2:1;14197:116:0;;;6796:21:1;6853:2;6833:18;;;6826:30;6892:34;6872:18;;;6865:62;-1:-1:-1;;;6943:18:1;;;6936:38;6991:19;;14197:116:0;6612:404:1;14197:116:0;14349:57;14358:6;10101:10;14399:6;14380:16;:25;14349:8;:57::i;:::-;-1:-1:-1;14437:4:0;;13920:529;-1:-1:-1;;;;13920:529:0:o;33621:410::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;33746:15:::1;:28:::0;;;33785:13:::1;:26:::0;;;33836:31:::1;33801:10:::0;33764;33836:31:::1;:::i;:::-;33822:11;:45:::0;;;33901:3:::1;-1:-1:-1::0;33886:18:0::1;33878:71;;;::::0;-1:-1:-1;;;33878:71:0;;7485:2:1;33878:71:0::1;::::0;::::1;7467:21:1::0;7524:2;7504:18;;;7497:30;7563:34;7543:18;;;7536:62;-1:-1:-1;;;7614:18:1;;;7607:38;7662:19;;33878:71:0::1;7283:404:1::0;33878:71:0::1;33979:11;::::0;33992:15:::1;::::0;34009:13:::1;::::0;33965:58:::1;::::0;;7894:25:1;;;7950:2;7935:18;;7928:34;;;;7978:18;;;7971:34;33965:58:0::1;::::0;7882:2:1;7867:18;33965:58:0::1;;;;;;;;33621:410:::0;;:::o;32117:230::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;32214:1:::1;32202:8;:13;;32194:58;;;::::0;-1:-1:-1;;;32194:58:0;;8218:2:1;32194:58:0::1;::::0;::::1;8200:21:1::0;;;8237:18;;;8230:30;8296:34;8276:18;;;8269:62;8348:18;;32194:58:0::1;8016:356:1::0;32194:58:0::1;32300:4;32283:13;12223:12:::0;;;12135:108;32283:13:::1;32272:24;::::0;:8;:24:::1;:::i;:::-;32271:33;;;;:::i;:::-;32263:5;:41:::0;;;32320:19:::1;::::0;1846:25:1;;;32320:19:0::1;::::0;1834:2:1;1819:18;32320:19:0::1;;;;;;;;32117:230:::0;:::o;14854:290::-;10101:10;14967:4;15056:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15056:34:0;;;;;;;;;;14967:4;;14984:130;;15034:7;;15056:47;;15093:10;;15056:47;:::i;:::-;14984:8;:130::i;44523:75::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;44579:4:::1;:11:::0;;-1:-1:-1;;44579:11:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44523:75::o;35541:304::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;35689:7:::1;-1:-1:-1::0;;;;;35675:21:0::1;:10;-1:-1:-1::0;;;;;35675:21:0::1;::::0;35653:134:::1;;;::::0;-1:-1:-1;;;35653:134:0;;8974:2:1;35653:134:0::1;::::0;::::1;8956:21:1::0;9013:2;8993:18;;;8986:30;9052:34;9032:18;;;9025:62;9123:33;9103:18;;;9096:61;9174:19;;35653:134:0::1;8772:427:1::0;35653:134:0::1;35800:37;35815:10;35827:9;35800:14;:37::i;:::-;35541:304:::0;;:::o;32557:253::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;32660:1:::1;32647:9;:14;;32639:63;;;::::0;-1:-1:-1;;;32639:63:0;;9406:2:1;32639:63:0::1;::::0;::::1;9388:21:1::0;9445:2;9425:18;;;9418:30;9484:34;9464:18;;;9457:62;-1:-1:-1;;;9535:18:1;;;9528:34;9579:19;;32639:63:0::1;9204:400:1::0;32639:63:0::1;32755:4;32738:13;12223:12:::0;;;12135:108;32738:13:::1;32726:25;::::0;:9;:25:::1;:::i;:::-;32725:34;;;;:::i;:::-;32713:9;:46:::0;;;32775:27:::1;::::0;1846:25:1;;;32775:27:0::1;::::0;1834:2:1;1819:18;32775:27:0::1;1700:177:1::0;22354:103:0;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;22419:30:::1;22446:1;22419:18;:30::i;:::-;22354:103::o:0;11234:104::-;11290:13;11323:7;11316:14;;;;;:::i;15643:475::-;10101:10;15761:4;15805:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15805:34:0;;;;;;;;;;15872:35;;;;15850:122;;;;-1:-1:-1;;;15850:122:0;;9811:2:1;15850:122:0;;;9793:21:1;9850:2;9830:18;;;9823:30;9889:34;9869:18;;;9862:62;-1:-1:-1;;;9940:18:1;;;9933:35;9985:19;;15850:122:0;9609:401:1;15850:122:0;16008:67;10101:10;16031:7;16059:15;16040:16;:34;16008:8;:67::i;:::-;-1:-1:-1;16106:4:0;;15643:475;-1:-1:-1;;;15643:475:0:o;12662:200::-;12773:4;12790:42;10101:10;12814:9;12825:6;12790:9;:42::i;35028:192::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35125:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;35125:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35178:34;;1163:41:1;;;35178:34:0::1;::::0;1136:18:1;35178:34:0::1;1023:187:1::0;34320:459:0;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;34446:16:::1;:29:::0;;;34486:14:::1;:27:::0;;;34539:33:::1;34503:10:::0;34465;34539:33:::1;:::i;:::-;34524:12;:48:::0;;;34621:3:::1;-1:-1:-1::0;34605:19:0::1;34583:110;;;::::0;-1:-1:-1;;;34583:110:0;;10217:2:1;34583:110:0::1;::::0;::::1;10199:21:1::0;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:39;10395:19;;34583:110:0::1;10015:405:1::0;34583:110:0::1;34724:12;::::0;34738:16:::1;::::0;34756:14:::1;::::0;34709:62:::1;::::0;;7894:25:1;;;7950:2;7935:18;;7928:34;;;;7978:18;;;7971:34;34709:62:0::1;::::0;7882:2:1;7867:18;34709:62:0::1;7692:319:1::0;36217:182:0;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;36337:15:::1;::::0;36303:50:::1;::::0;-1:-1:-1;;;;;36337:15:0::1;::::0;;::::1;::::0;::::1;::::0;36303:50;::::1;::::0;::::1;::::0;;;::::1;36364:15;:27:::0;;-1:-1:-1;;;;;36364:27:0;;::::1;;;-1:-1:-1::0;;;;;;36364:27:0;;::::1;::::0;;;::::1;::::0;;36217:182::o;30725:130::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;30780:13:::1;:21:::0;;-1:-1:-1;;30780:21:0::1;::::0;;30817:30:::1;::::0;30831:15:::1;::::0;30817:30:::1;::::0;30796:5:::1;::::0;30817:30:::1;30725:130::o:0;30408:162::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;30461:14:::1;:21:::0;;-1:-1:-1;;30461:21:0::1;30478:4;30461:21;::::0;;30493:15:::1;:22:::0;;-1:-1:-1;;;;30493:22:0::1;-1:-1:-1::0;;;30493:22:0::1;::::0;;30531:31:::1;::::0;30546:15:::1;::::0;30531:31:::1;::::0;30461:14:::1;::::0;30531:31:::1;30408:162::o:0;36582:185::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;36706:13:::1;::::0;36671:49:::1;::::0;-1:-1:-1;;;;;36706:13:0;;::::1;::::0;36671:49;::::1;::::0;::::1;::::0;36706:13:::1;::::0;36671:49:::1;36731:13;:28:::0;;-1:-1:-1;;;;;;36731:28:0::1;-1:-1:-1::0;;;;;36731:28:0;;;::::1;::::0;;;::::1;::::0;;36582:185::o;31320:559::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;31490:1:::1;31481:5;:10;;31459:112;;;::::0;-1:-1:-1;;;31459:112:0;;10627:2:1;31459:112:0::1;::::0;::::1;10609:21:1::0;10666:2;10646:18;;;10639:30;10705:34;10685:18;;;10678:62;-1:-1:-1;;;10756:18:1;;;10749:50;10816:19;;31459:112:0::1;10425:416:1::0;31459:112:0::1;31599:5;31590;:14;;31582:69;;;::::0;-1:-1:-1;;;31582:69:0;;11048:2:1;31582:69:0::1;::::0;::::1;11030:21:1::0;11087:2;11067:18;;;11060:30;11126:34;11106:18;;;11099:62;-1:-1:-1;;;11177:18:1;;;11170:40;11227:19;;31582:69:0::1;10846:406:1::0;31582:69:0::1;31664:15;:24:::0;;-1:-1:-1;;;;31664:24:0::1;-1:-1:-1::0;;;31664:24:0;::::1;;;;::::0;;12223:12;;31744:5:::1;::::0;31735;;31719:21:::1;;;;:::i;:::-;31718:31;;;;:::i;:::-;31699:16;:50:::0;31805:5:::1;31796::::0;31780:13:::1;12223:12:::0;;;12135:108;31780:13:::1;:21;;;;:::i;:::-;31779:31;;;;:::i;:::-;31760:16;:50:::0;31826:45:::1;::::0;;4522:14:1;;4515:22;4497:41;;4569:2;4554:18;;4547:34;;;4597:18;;;4590:34;;;31826:45:0::1;::::0;4485:2:1;4470:18;31826:45:0::1;;;;;;;31320:559:::0;;;:::o;22612:238::-;21776:6;;-1:-1:-1;;;;;21776:6:0;10101:10;21923:23;21915:68;;;;-1:-1:-1;;;21915:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22715:22:0;::::1;22693:110;;;::::0;-1:-1:-1;;;22693:110:0;;11459:2:1;22693:110:0::1;::::0;::::1;11441:21:1::0;11498:2;11478:18;;;11471:30;11537:34;11517:18;;;11510:62;-1:-1:-1;;;11588:18:1;;;11581:36;11634:19;;22693:110:0::1;11257:402:1::0;22693:110:0::1;22814:28;22833:8;22814:18;:28::i;:::-;22612:238:::0;:::o;19426:380::-;-1:-1:-1;;;;;19562:19:0;;19554:68;;;;-1:-1:-1;;;19554:68:0;;11866:2:1;19554:68:0;;;11848:21:1;11905:2;11885:18;;;11878:30;11944:34;11924:18;;;11917:62;-1:-1:-1;;;11995:18:1;;;11988:34;12039:19;;19554:68:0;11664:400:1;19554:68:0;-1:-1:-1;;;;;19641:21:0;;19633:68;;;;-1:-1:-1;;;19633:68:0;;12271:2:1;19633:68:0;;;12253:21:1;12310:2;12290:18;;;12283:30;12349:34;12329:18;;;12322:62;-1:-1:-1;;;12400:18:1;;;12393:32;12442:19;;19633:68:0;12069:398:1;19633:68:0;-1:-1:-1;;;;;19714:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19766:32;;1846:25:1;;;19766:32:0;;1819:18:1;19766:32:0;;;;;;;19426:380;;;:::o;40271:3640::-;-1:-1:-1;;;;;40403:18:0;;40395:68;;;;-1:-1:-1;;;40395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40482:16:0;;40474:64;;;;-1:-1:-1;;;40474:64:0;;;;;;;:::i;:::-;40555:6;40565:1;40555:11;40551:93;;40583:28;40599:4;40605:2;40609:1;40583:15;:28::i;:::-;40271:3640;;;:::o;40551:93::-;40660:13;;;;40656:1564;;;21776:6;;-1:-1:-1;;;;;40712:15:0;;;21776:6;;40712:15;;;;:49;;-1:-1:-1;21776:6:0;;-1:-1:-1;;;;;40748:13:0;;;21776:6;;40748:13;;40712:49;:86;;;;-1:-1:-1;;;;;;40782:16:0;;;;40712:86;:128;;;;-1:-1:-1;;;;;;40819:21:0;;40833:6;40819:21;;40712:128;:158;;;;-1:-1:-1;40862:8:0;;-1:-1:-1;;;40862:8:0;;;;40861:9;40712:158;40690:1519;;;40910:14;;;;40905:232;;-1:-1:-1;;;;;40983:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;41010:21:0;;;;;;:17;:21;;;;;;;;40983:48;40949:168;;;;-1:-1:-1;;;40949:168:0;;13484:2:1;40949:168:0;;;13466:21:1;13523:2;13503:18;;;13496:30;13562:34;13542:18;;;13535:62;-1:-1:-1;;;13613:18:1;;;13606:32;13655:19;;40949:168:0;13282:398:1;40949:168:0;-1:-1:-1;;;;;41211:31:0;;;;;;:25;:31;;;;;;;;:59;;;;-1:-1:-1;;;;;;41247:23:0;;;;;;:19;:23;;;;;;;;41246:24;41211:59;41185:1009;;;41357:5;;41347:6;:15;;41313:139;;;;-1:-1:-1;;;41313:139:0;;13887:2:1;41313:139:0;;;13869:21:1;13926:2;13906:18;;;13899:30;13965:34;13945:18;;;13938:62;-1:-1:-1;;;14016:18:1;;;14009:36;14062:19;;41313:139:0;13685:402:1;41313:139:0;41535:9;;-1:-1:-1;;;;;12423:18:0;;12396:7;12423:18;;;;;;;;;;;41509:22;;:6;:22;:::i;:::-;:35;;41475:140;;;;-1:-1:-1;;;41475:140:0;;14294:2:1;41475:140:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:49;14411:18;;41475:140:0;14092:343:1;41475:140:0;41185:1009;;;-1:-1:-1;;;;;41713:29:0;;;;;;:25;:29;;;;;;;;:59;;;;-1:-1:-1;;;;;;41747:25:0;;;;;;:19;:25;;;;;;;;41746:26;41713:59;41687:507;;;41859:5;;41849:6;:15;;41815:140;;;;-1:-1:-1;;;41815:140:0;;14642:2:1;41815:140:0;;;14624:21:1;14681:2;14661:18;;;14654:30;14720:34;14700:18;;;14693:62;-1:-1:-1;;;14771:18:1;;;14764:37;14818:19;;41815:140:0;14440:403:1;41687:507:0;-1:-1:-1;;;;;41986:23:0;;;;;;:19;:23;;;;;;;;41981:213;;42094:9;;-1:-1:-1;;;;;12423:18:0;;12396:7;12423:18;;;;;;;;;;;42068:22;;:6;:22;:::i;:::-;:35;;42034:140;;;;-1:-1:-1;;;42034:140:0;;14294:2:1;42034:140:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:49;14411:18;;42034:140:0;14092:343:1;42034:140:0;42281:4;42232:28;12423:18;;;;;;;;;;;42339:16;;42315:40;;;;;;;42386:39;;-1:-1:-1;42410:15:0;;-1:-1:-1;;;42410:15:0;;;;42386:39;:65;;;;-1:-1:-1;42443:8:0;;-1:-1:-1;;;42443:8:0;;;;42442:9;42386:65;:114;;;;-1:-1:-1;;;;;;42469:31:0;;;;;;:25;:31;;;;;;;;42468:32;42386:114;:155;;;;-1:-1:-1;;;;;;42518:23:0;;;;;;:17;:23;;;;;;;;42517:24;42386:155;:194;;;;-1:-1:-1;;;;;;42559:21:0;;;;;;:17;:21;;;;;;;;42558:22;42386:194;42368:332;;;42607:8;:15;;-1:-1:-1;;;;42607:15:0;-1:-1:-1;;;42607:15:0;;;42639:16;42648:6;42639:8;:16::i;:::-;42672:8;:16;;-1:-1:-1;;;;42672:16:0;;;42368:332;42728:8;;-1:-1:-1;;;;;42838:23:0;;42712:12;42838:23;;;:17;:23;;;;;;42728:8;-1:-1:-1;;;42728:8:0;;;;;42727:9;;42838:23;;:48;;-1:-1:-1;;;;;;42865:21:0;;;;;;:17;:21;;;;;;;;42838:48;42834:96;;;-1:-1:-1;42913:5:0;42834:96;42942:12;43047:7;43043:815;;;-1:-1:-1;;;;;43099:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;43147:1;43132:12;;:16;43099:49;43095:614;;;43176:33;43205:3;43176:24;43187:12;;43176:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;43169:40;;43274:12;;43256:14;;43249:4;:21;;;;:::i;:::-;43248:38;;;;:::i;:::-;43228:16;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;;43355:12:0;;43335:16;;43328:23;;:4;:23;:::i;:::-;43327:40;;;;:::i;:::-;43305:18;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;43095:614:0;;-1:-1:-1;43095:614:0;;-1:-1:-1;;;;;43429:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;43478:1;43464:11;;:15;43429:50;43425:284;;;43507:32;43535:3;43507:23;43518:11;;43507:6;:10;;:23;;;;:::i;:32::-;43500:39;;43603:11;;43586:13;;43579:4;:20;;;;:::i;:::-;43578:36;;;;:::i;:::-;43558:16;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;43682:11:0;;43663:15;;43656:22;;:4;:22;:::i;:::-;43655:38;;;;:::i;:::-;43633:18;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;43425:284:0;43729:8;;43725:91;;43758:42;43774:4;43788;43795;43758:15;:42::i;:::-;43832:14;43842:4;43832:14;;:::i;:::-;;;43043:815;43870:33;43886:4;43892:2;43896:6;43870:15;:33::i;:::-;40384:3527;;;;40271:3640;;;:::o;35853:174::-;-1:-1:-1;;;;;35922:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35922:39:0;;;;;;;;;;35979:40;;35922:39;;:31;35979:40;;;35853:174;;:::o;23010:191::-;23103:6;;;-1:-1:-1;;;;;23120:17:0;;;-1:-1:-1;;;;;;23120:17:0;;;;;;;23153:40;;23103:6;;;23120:17;23103:6;;23153:40;;23084:16;;23153:40;23073:128;23010:191;:::o;16608:770::-;-1:-1:-1;;;;;16748:20:0;;16740:70;;;;-1:-1:-1;;;16740:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16829:23:0;;16821:71;;;;-1:-1:-1;;;16821:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16989:17:0;;16965:21;16989:17;;;;;;;;;;;17039:23;;;;17017:111;;;;-1:-1:-1;;;17017:111:0;;15183:2:1;17017:111:0;;;15165:21:1;15222:2;15202:18;;;15195:30;15261:34;15241:18;;;15234:62;-1:-1:-1;;;15312:18:1;;;15305:36;15358:19;;17017:111:0;14981:402:1;17017:111:0;-1:-1:-1;;;;;17164:17:0;;;:9;:17;;;;;;;;;;;17184:22;;;17164:42;;17228:20;;;;;;;;:30;;17200:6;;17164:9;17228:30;;17200:6;;17228:30;:::i;:::-;;;;;;;;17293:9;-1:-1:-1;;;;;17276:35:0;17285:6;-1:-1:-1;;;;;17276:35:0;;17304:6;17276:35;;;;1846:25:1;;1834:2;1819:18;;1700:177;17276:35:0;;;;;;;;16729:649;16608:770;;;:::o;44606:1095::-;44703:4;44659:23;12423:18;;;;;;;;;;;;;;44803:20;;;44799:59;;44840:7;;;44606:1095;:::o;44799:59::-;44892:16;;44874:15;:34;44870:101;;;44943:16;;44925:34;;44870:101;44987:4;;;;:36;;;;-1:-1:-1;45013:10:0;:6;45022:1;45013:10;:::i;:::-;44995:15;:28;44987:36;44983:97;;;45058:10;:6;45067:1;45058:10;:::i;:::-;45040:28;;44983:97;45121:15;45177:21;45211:36;45121:15;45211:16;:36::i;:::-;45260:18;45281:44;:21;45307:17;45281:25;:44::i;:::-;45260:65;;45338:17;45358:79;45409:17;45358:32;45373:16;;45358:10;:14;;:32;;;;:::i;:79::-;45471:1;45450:18;:22;;;45483:16;:20;;;45538:13;;45530:49;;45338:99;;-1:-1:-1;;;;;;45538:13:0;;45338:99;;45530:49;45471:1;45530:49;45338:99;45538:13;45530:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45614:15:0;;45606:87;;45516:63;;-1:-1:-1;45614:15:0;;;-1:-1:-1;;;;;45614:15:0;;45657:21;;45606:87;;;;45657:21;45614:15;45606:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;44606:1095:0:o;3380:98::-;3438:7;3465:5;3469:1;3465;:5;:::i;:::-;3458:12;3380:98;-1:-1:-1;;;3380:98:0:o;3779:::-;3837:7;3864:5;3868:1;3864;:5;:::i;43919:571::-;44069:16;;;44083:1;44069:16;;;;;;;;44045:21;;44069:16;;;;;;;;;;-1:-1:-1;44069:16:0;44045:40;;44114:4;44096;44101:1;44096:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44096:23:0;;;-1:-1:-1;;;;;44096:23:0;;;;;44140:9;-1:-1:-1;;;;;44140:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44130:4;44135:1;44130:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;44130:26:0;;;-1:-1:-1;;;;;44130:26:0;;;;;44169:56;44186:4;44201:9;44213:11;44169:8;:56::i;:::-;44264:218;;-1:-1:-1;;;44264:218:0;;-1:-1:-1;;;;;44264:9:0;:60;;;;:218;;44339:11;;44365:1;;44409:4;;44436;;44456:15;;44264:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43974:516;43919:571;:::o;3023:98::-;3081:7;3108:5;3112:1;3108;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:160::-;1280:20;;1336:13;;1329:21;1319:32;;1309:60;;1365:1;1362;1355:12;1309:60;1215:160;;;:::o;1380:315::-;1445:6;1453;1506:2;1494:9;1485:7;1481:23;1477:32;1474:52;;;1522:1;1519;1512:12;1474:52;1561:9;1548:23;1580:31;1605:5;1580:31;:::i;:::-;1630:5;-1:-1:-1;1654:35:1;1685:2;1670:18;;1654:35;:::i;:::-;1644:45;;1380:315;;;;;:::o;1882:247::-;1941:6;1994:2;1982:9;1973:7;1969:23;1965:32;1962:52;;;2010:1;2007;2000:12;1962:52;2049:9;2036:23;2068:31;2093:5;2068:31;:::i;2488:456::-;2565:6;2573;2581;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2689:9;2676:23;2708:31;2733:5;2708:31;:::i;:::-;2758:5;-1:-1:-1;2815:2:1;2800:18;;2787:32;2828:33;2787:32;2828:33;:::i;:::-;2488:456;;2880:7;;-1:-1:-1;;;2934:2:1;2919:18;;;;2906:32;;2488:456::o;2949:248::-;3017:6;3025;3078:2;3066:9;3057:7;3053:23;3049:32;3046:52;;;3094:1;3091;3084:12;3046:52;-1:-1:-1;;3117:23:1;;;3187:2;3172:18;;;3159:32;;-1:-1:-1;2949:248:1:o;3931:180::-;3990:6;4043:2;4031:9;4022:7;4018:23;4014:32;4011:52;;;4059:1;4056;4049:12;4011:52;-1:-1:-1;4082:23:1;;3931:180;-1:-1:-1;3931:180:1:o;4116:::-;4172:6;4225:2;4213:9;4204:7;4200:23;4196:32;4193:52;;;4241:1;4238;4231:12;4193:52;4264:26;4280:9;4264:26;:::i;4843:316::-;4917:6;4925;4933;4986:2;4974:9;4965:7;4961:23;4957:32;4954:52;;;5002:1;4999;4992:12;4954:52;5025:26;5041:9;5025:26;:::i;:::-;5015:36;5098:2;5083:18;;5070:32;;-1:-1:-1;5149:2:1;5134:18;;;5121:32;;4843:316;-1:-1:-1;;;4843:316:1:o;5164:388::-;5232:6;5240;5293:2;5281:9;5272:7;5268:23;5264:32;5261:52;;;5309:1;5306;5299:12;5261:52;5348:9;5335:23;5367:31;5392:5;5367:31;:::i;:::-;5417:5;-1:-1:-1;5474:2:1;5459:18;;5446:32;5487:33;5446:32;5487:33;:::i;:::-;5539:7;5529:17;;;5164:388;;;;;:::o;5866:380::-;5945:1;5941:12;;;;5988;;;6009:61;;6063:4;6055:6;6051:17;6041:27;;6009:61;6116:2;6108:6;6105:14;6085:18;6082:38;6079:161;;6162:10;6157:3;6153:20;6150:1;6143:31;6197:4;6194:1;6187:15;6225:4;6222:1;6215:15;6079:161;;5866:380;;;:::o;6251:356::-;6453:2;6435:21;;;6472:18;;;6465:30;6531:34;6526:2;6511:18;;6504:62;6598:2;6583:18;;6251:356::o;7021:127::-;7082:10;7077:3;7073:20;7070:1;7063:31;7113:4;7110:1;7103:15;7137:4;7134:1;7127:15;7153:125;7218:9;;;7239:10;;;7236:36;;;7252:18;;:::i;8377:168::-;8450:9;;;8481;;8498:15;;;8492:22;;8478:37;8468:71;;8519:18;;:::i;8550:217::-;8590:1;8616;8606:132;;8660:10;8655:3;8651:20;8648:1;8641:31;8695:4;8692:1;8685:15;8723:4;8720:1;8713:15;8606:132;-1:-1:-1;8752:9:1;;8550:217::o;12472:401::-;12674:2;12656:21;;;12713:2;12693:18;;;12686:30;12752:34;12747:2;12732:18;;12725:62;-1:-1:-1;;;12818:2:1;12803:18;;12796:35;12863:3;12848:19;;12472:401::o;12878:399::-;13080:2;13062:21;;;13119:2;13099:18;;;13092:30;13158:34;13153:2;13138:18;;13131:62;-1:-1:-1;;;13224:2:1;13209:18;;13202:33;13267:3;13252:19;;12878:399::o;14848:128::-;14915:9;;;14936:11;;;14933:37;;;14950:18;;:::i;15730:127::-;15791:10;15786:3;15782:20;15779:1;15772:31;15822:4;15819:1;15812:15;15846:4;15843:1;15836:15;15862:251;15932:6;15985:2;15973:9;15964:7;15960:23;15956:32;15953:52;;;16001:1;15998;15991:12;15953:52;16033:9;16027:16;16052:31;16077:5;16052:31;:::i;16118:980::-;16380:4;16428:3;16417:9;16413:19;16459:6;16448:9;16441:25;16485:2;16523:6;16518:2;16507:9;16503:18;16496:34;16566:3;16561:2;16550:9;16546:18;16539:31;16590:6;16625;16619:13;16656:6;16648;16641:22;16694:3;16683:9;16679:19;16672:26;;16733:2;16725:6;16721:15;16707:29;;16754:1;16764:195;16778:6;16775:1;16772:13;16764:195;;;16843:13;;-1:-1:-1;;;;;16839:39:1;16827:52;;16934:15;;;;16899:12;;;;16875:1;16793:9;16764:195;;;-1:-1:-1;;;;;;;17015:32:1;;;;17010:2;16995:18;;16988:60;-1:-1:-1;;;17079:3:1;17064:19;17057:35;16976:3;16118:980;-1:-1:-1;;;16118:980:1:o
Swarm Source
ipfs://dd612817b045f7882382005fe6f4c056e545cd663ce3473c482f990069ce0fb5
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.