Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
888,888 BARD
Holders
583
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.063262037959887635 BARDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BARD
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-28 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; pragma experimental ABIEncoderV2; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 public _maxlSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } 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); } function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; 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 subtraction 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; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { 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; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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 BARD is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; address public developmentWallet; address public liquidityWallet; address public constant deadAddress = address(0xdead); bool public tradingEnabled; bool public swapEnabled; bool private _swapping; uint256 public swapTokensAtAmount; uint256 public buyTotalFees; uint256 private _buyMarketingFee; uint256 private _buyDevelob555; uint256 private _buyLiquidityFee; uint256 public sellTb55gsfe; uint256 private _sellMarketingFee; uint256 private _sellDevelopmentFee; uint256 private _sellLiquidityFee; uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment; uint256 private _tokensForLiquidity; uint256 private _previousFee; mapping (address => bool) private _isExcludedFromEnab; mapping(address => bool) private _automatedMarketnn66gfsad; event ExcludeFromLimits(address indexed account, bool isExcluded); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event TokensAirdropped(uint256 totalWallets, uint256 totalTokens); constructor() ERC20("Diamond Standard", "BARD") { uint256 totalSupply = 888888 * (10 ** 18); uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24); _approve(address(this), address(uniswapV2Router), type(uint256).max); _buyMarketingFee = 0; _buyDevelob555 = 0; _buyLiquidityFee = 0; buyTotalFees = _buyMarketingFee + _buyDevelob555 + _buyLiquidityFee; _sellMarketingFee = 0; _sellDevelopmentFee = 0; _sellLiquidityFee = 0; sellTb55gsfe = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee; _previousFee = sellTb55gsfe; _isExcludedFromEnab[owner()] = true; _isExcludedFromEnab[address(this)] = true; _isExcludedFromEnab[deadAddress] = true; _mint(owner(), totalSupply); } receive() external payable {} function Opentrade() public onlyOwner { require(!tradingEnabled, "Trading already active."); tradingEnabled = true; swapEnabled = true; } function exclude(address[] memory accounts, bool excluded) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromEnab[accounts[i]] = excluded; emit ExcludeFromFees(accounts[i], excluded); } } function AutomatedMarketMaker(address[] memory pairs, bool value) public onlyOwner { for (uint256 i = 0; i < pairs.length; i++) { require(pairs[i] != uniswapV2Pair, "The Exc"); _setAutomatedbbbc(pairs[i], value); } } function _setAutomatedbbbc(address pair, bool value) internal { _automatedMarketnn66gfsad[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } 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"); require(tradingEnabled || _isExcludedFromEnab[from] || _isExcludedFromEnab[to], "Trading not yet enabled!"); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled &&!_swapping&&_automatedMarketnn66gfsad[from] && !_isExcludedFromEnab[from] && !_isExcludedFromEnab[to] ) { _swapping = true; _swapBack(); _swapping = false; } bool takeFee = !_swapping; if (_isExcludedFromEnab[from] || _isExcludedFromEnab[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (_automatedMarketnn66gfsad[to] && sellTb55gsfe > 0) { fees = amount.mul(sellTb55gsfe).div(10000); _tokensForLiquidity += (fees * _sellLiquidityFee) / sellTb55gsfe; _tokensForMarketing += (fees * _sellMarketingFee) / sellTb55gsfe; _tokensForDevelopment += (fees * _sellDevelopmentFee) / sellTb55gsfe; } // on buy else if (_automatedMarketnn66gfsad[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(10000); _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees; _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees; _tokensForDevelopment += (fees * _buyDevelob555) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTb55gsfe = _previousFee; } function _swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function _swapBack() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDevelopment; bool success; uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}(""); (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":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":"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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"AutomatedMarketMaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTb55gsfe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280601081526020017f4469616d6f6e64205374616e64617264000000000000000000000000000000008152506040518060400160405280600481526020017f424152440000000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d2565b508060059081620000a19190620009d2565b505050620000c4620000b86200031860201b60201c565b6200032060201b60201c565b600069bc3ab70c8588dde000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000150306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e660201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017d919062000ae8565b62000189919062000ae8565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bc919062000ae8565b620001c8919062000ae8565b601081905550601054601781905550600160186000620001ed620005b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031162000304620005b760201b60201c565b82620005e160201b60201c565b5062000d04565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000458576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044f9062000baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c19062000c42565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005aa919062000c75565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000653576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064a9062000ce2565b60405180910390fd5b62000667600083836200074e60201b60201c565b80600260008282546200067b919062000ae8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072e919062000c75565b60405180910390a36200074a600083836200075360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007da57607f821691505b602082108103620007f057620007ef62000792565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081b565b6200086686836200081b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b3620008ad620008a7846200087e565b62000888565b6200087e565b9050919050565b6000819050919050565b620008cf8362000892565b620008e7620008de82620008ba565b84845462000828565b825550505050565b600090565b620008fe620008ef565b6200090b818484620008c4565b505050565b5b81811015620009335762000927600082620008f4565b60018101905062000911565b5050565b601f82111562000982576200094c81620007f6565b62000957846200080b565b8101602085101562000967578190505b6200097f62000976856200080b565b83018262000910565b50505b505050565b600082821c905092915050565b6000620009a76000198460080262000987565b1980831691505092915050565b6000620009c2838362000994565b9150826002028217905092915050565b620009dd8262000758565b67ffffffffffffffff811115620009f957620009f862000763565b5b62000a058254620007c1565b62000a1282828562000937565b600060209050601f83116001811462000a4a576000841562000a35578287015190505b62000a418582620009b4565b86555062000ab1565b601f19841662000a5a86620007f6565b60005b8281101562000a845784890151825560018201915060208501945060208101905062000a5d565b8683101562000aa4578489015162000aa0601f89168262000994565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af5826200087e565b915062000b02836200087e565b925082820190508082111562000b1d5762000b1c62000ab9565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9260248362000b23565b915062000b9f8262000b34565b604082019050919050565b6000602082019050818103600083015262000bc58162000b83565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2a60228362000b23565b915062000c378262000bcc565b604082019050919050565b6000602082019050818103600083015262000c5d8162000c1b565b9050919050565b62000c6f816200087e565b82525050565b600060208201905062000c8c600083018462000c64565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cca601f8362000b23565b915062000cd78262000c92565b602082019050919050565b6000602082019050818103600083015262000cfd8162000cbb565b9050919050565b6080516132ce62000d43600039600081816107b801528181611f94015281816120750152818161209c01528181612138015261215f01526132ce6000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063c04a541411610095578063dd62ed3e11610064578063dd62ed3e14610647578063e2f4560514610684578063eaf5aa98146106af578063f2fde38b146106d8576101cd565b8063c04a54141461059b578063d4698016146105c6578063d63a96ee146105f1578063d85ba0631461061c576101cd565b806393ec52de116100d157806393ec52de146104cb57806395d89b41146104f6578063a457c2d714610521578063a9059cbb1461055e576101cd565b806375f0a8741461044c5780638da5cb5b1461047757806392d8ed48146104a2576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103a25780636ddd1713146103cd57806370a08231146103f8578063715018a614610435576101cd565b8063313ce5671461030f578063395093511461033a57806349bd5a5e14610377576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190612388565b6108b2565b60405161036e91906123e3565b60405180910390f35b34801561038357600080fd5b5061038c6108e9565b6040516103999190612504565b60405180910390f35b3480156103ae57600080fd5b506103b761090f565b6040516103c491906123e3565b60405180910390f35b3480156103d957600080fd5b506103e2610922565b6040516103ef91906123e3565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190612556565b610935565b60405161042c9190612487565b60405180910390f35b34801561044157600080fd5b5061044a61097d565b005b34801561045857600080fd5b50610461610991565b60405161046e9190612504565b60405180910390f35b34801561048357600080fd5b5061048c6109b7565b6040516104999190612504565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906126f7565b6109e1565b005b3480156104d757600080fd5b506104e0610adb565b6040516104ed9190612487565b60405180910390f35b34801561050257600080fd5b5061050b610ae1565b60405161051891906122be565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612388565b610b73565b60405161055591906123e3565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190612388565b610bea565b60405161059291906123e3565b60405180910390f35b3480156105a757600080fd5b506105b0610c0d565b6040516105bd9190612504565b60405180910390f35b3480156105d257600080fd5b506105db610c33565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610606610c59565b6040516106139190612487565b60405180910390f35b34801561062857600080fd5b50610631610c5f565b60405161063e9190612487565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612753565b610c65565b60405161067b9190612487565b60405180910390f35b34801561069057600080fd5b50610699610cec565b6040516106a69190612487565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906126f7565b610cf2565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190612556565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061283f565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6000806108bd610e7a565b90506108de8185856108cf8589610c65565b6108d9919061288e565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098561104b565b61098f600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109e961104b565b60005b8251811015610ad657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610a4157610a406128c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a969061293d565b60405180910390fd5b610ac3838281518110610ab557610ab46128c2565b5b6020026020010151836118f0565b8080610ace9061295d565b9150506109ec565b505050565b60035481565b606060058054610af0906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c906127c2565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b600080610b7e610e7a565b90506000610b8c8286610c65565b905083811015610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890612a17565b60405180910390fd5b610bde8286868403610e82565b60019250505092915050565b600080610bf5610e7a565b9050610c02818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610cfa61104b565b60005b8251811015610df2578160186000858481518110610d1e57610d1d6128c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550828181518110610d8a57610d896128c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610dd791906123e3565b60405180910390a28080610dea9061295d565b915050610cfd565b505050565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612aa9565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612bcd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff166110716109b7565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612c39565b60405180910390fd5b565b60006110d58484610c65565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612ca5565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612dc9565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e35565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610935565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612e55565b61163f9190612ec6565b60166000828254611650919061288e565b92505081905550601054601154826116689190612e55565b6116729190612ec6565b60146000828254611683919061288e565b925050819055506010546012548261169b9190612e55565b6116a59190612ec6565b601560008282546116b6919061288e565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612e55565b6117689190612ec6565b60166000828254611779919061288e565b92505081905550600c54600d54826117919190612e55565b61179b9190612ec6565b601460008282546117ac919061288e565b92505081905550600c54600e54826117c49190612e55565b6117ce9190612ec6565b601560008282546117df919061288e565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612ef7565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690612dc9565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790612f9d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610935565b90506000601554601454601654611c29919061288e565b611c33919061288e565b905060008060028360165486611c499190612e55565b611c539190612ec6565b611c5d9190612ec6565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612ef7565b611d0a9190612ef7565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190612fbd565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc790613025565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5590613025565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612e55565b905092915050565b60008183611ecd9190612ec6565b905092915050565b505050565b505050565b60008183611eed9190612ef7565b905092915050565b6000600267ffffffffffffffff811115611f1257611f11612588565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f576128c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061304f565b81600181518110612035576120346128c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc959493929190613175565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f000000000000000000000000000000000000000000000000000000000000000084610e82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e4969594939291906131cf565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613245565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b60006020828403121561256c5761256b6122ea565b5b600061257a8482850161233d565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125c082612274565b810181811067ffffffffffffffff821117156125df576125de612588565b5b80604052505050565b60006125f26122e0565b90506125fe82826125b7565b919050565b600067ffffffffffffffff82111561261e5761261d612588565b5b602082029050602081019050919050565b600080fd5b600061264761264284612603565b6125e8565b9050808382526020820190506020840283018581111561266a5761266961262f565b5b835b81811015612693578061267f888261233d565b84526020840193505060208101905061266c565b5050509392505050565b600082601f8301126126b2576126b1612583565b5b81356126c2848260208601612634565b91505092915050565b6126d4816123c8565b81146126df57600080fd5b50565b6000813590506126f1816126cb565b92915050565b6000806040838503121561270e5761270d6122ea565b5b600083013567ffffffffffffffff81111561272c5761272b6122ef565b5b6127388582860161269d565b9250506020612749858286016126e2565b9150509250929050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612829601783612239565b9150612834826127f3565b602082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061289982612352565b91506128a483612352565b92508282019050808211156128bc576128bb61285f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468652045786300000000000000000000000000000000000000000000000000600082015250565b6000612927600783612239565b9150612932826128f1565b602082019050919050565b600060208201905081810360008301526129568161291a565b9050919050565b600061296882612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361299a5761299961285f565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a01602583612239565b9150612a0c826129a5565b604082019050919050565b60006020820190508181036000830152612a30816129f4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a93602683612239565b9150612a9e82612a37565b604082019050919050565b60006020820190508181036000830152612ac281612a86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b25602483612239565b9150612b3082612ac9565b604082019050919050565b60006020820190508181036000830152612b5481612b18565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bb7602283612239565b9150612bc282612b5b565b604082019050919050565b60006020820190508181036000830152612be681612baa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c23602083612239565b9150612c2e82612bed565b602082019050919050565b60006020820190508181036000830152612c5281612c16565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612c8f601d83612239565b9150612c9a82612c59565b602082019050919050565b60006020820190508181036000830152612cbe81612c82565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d21602583612239565b9150612d2c82612cc5565b604082019050919050565b60006020820190508181036000830152612d5081612d14565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612db3602383612239565b9150612dbe82612d57565b604082019050919050565b60006020820190508181036000830152612de281612da6565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612e1f601883612239565b9150612e2a82612de9565b602082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b6000612e6082612352565b9150612e6b83612352565b9250828202612e7981612352565b91508282048414831517612e9057612e8f61285f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ed182612352565b9150612edc83612352565b925082612eec57612eeb612e97565b5b828204905092915050565b6000612f0282612352565b9150612f0d83612352565b9250828203905081811115612f2557612f2461285f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f87602683612239565b9150612f9282612f2b565b604082019050919050565b60006020820190508181036000830152612fb681612f7a565b9050919050565b6000606082019050612fd26000830186612478565b612fdf6020830185612478565b612fec6040830184612478565b949350505050565b600081905092915050565b50565b600061300f600083612ff4565b915061301a82612fff565b600082019050919050565b600061303082613002565b9150819050919050565b60008151905061304981612326565b92915050565b600060208284031215613065576130646122ea565b5b60006130738482850161303a565b91505092915050565b6000819050919050565b60006130a161309c6130978461307c565b6123fe565b612352565b9050919050565b6130b181613086565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ec81612314565b82525050565b60006130fe83836130e3565b60208301905092915050565b6000602082019050919050565b6000613122826130b7565b61312c81856130c2565b9350613137836130d3565b8060005b8381101561316857815161314f88826130f2565b975061315a8361310a565b92505060018101905061313b565b5085935050505092915050565b600060a08201905061318a6000830188612478565b61319760208301876130a8565b81810360408301526131a98186613117565b90506131b860608301856124f5565b6131c56080830184612478565b9695505050505050565b600060c0820190506131e460008301896124f5565b6131f16020830188612478565b6131fe60408301876130a8565b61320b60608301866130a8565b61321860808301856124f5565b61322560a0830184612478565b979650505050505050565b60008151905061323f8161235c565b92915050565b60008060006060848603121561325e5761325d6122ea565b5b600061326c86828701613230565b935050602061327d86828701613230565b925050604061328e86828701613230565b915050925092509256fea26469706673582212209b0a7e8a1c6208a825950aaa8ed32c02ee0d5670bd506f302279deecfeea728b64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063c04a541411610095578063dd62ed3e11610064578063dd62ed3e14610647578063e2f4560514610684578063eaf5aa98146106af578063f2fde38b146106d8576101cd565b8063c04a54141461059b578063d4698016146105c6578063d63a96ee146105f1578063d85ba0631461061c576101cd565b806393ec52de116100d157806393ec52de146104cb57806395d89b41146104f6578063a457c2d714610521578063a9059cbb1461055e576101cd565b806375f0a8741461044c5780638da5cb5b1461047757806392d8ed48146104a2576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103a25780636ddd1713146103cd57806370a08231146103f8578063715018a614610435576101cd565b8063313ce5671461030f578063395093511461033a57806349bd5a5e14610377576101cd565b806318160ddd116101a057806318160ddd146102655780631aa85bfc1461029057806323b872dd146102a757806327c8f835146102e4576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906122be565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612388565b610793565b60405161023191906123e3565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c919061245d565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b6040516102879190612487565b60405180910390f35b34801561029c57600080fd5b506102a56107e4565b005b3480156102b357600080fd5b506102ce60048036038101906102c991906124a2565b610874565b6040516102db91906123e3565b60405180910390f35b3480156102f057600080fd5b506102f96108a3565b6040516103069190612504565b60405180910390f35b34801561031b57600080fd5b506103246108a9565b604051610331919061253b565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190612388565b6108b2565b60405161036e91906123e3565b60405180910390f35b34801561038357600080fd5b5061038c6108e9565b6040516103999190612504565b60405180910390f35b3480156103ae57600080fd5b506103b761090f565b6040516103c491906123e3565b60405180910390f35b3480156103d957600080fd5b506103e2610922565b6040516103ef91906123e3565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190612556565b610935565b60405161042c9190612487565b60405180910390f35b34801561044157600080fd5b5061044a61097d565b005b34801561045857600080fd5b50610461610991565b60405161046e9190612504565b60405180910390f35b34801561048357600080fd5b5061048c6109b7565b6040516104999190612504565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906126f7565b6109e1565b005b3480156104d757600080fd5b506104e0610adb565b6040516104ed9190612487565b60405180910390f35b34801561050257600080fd5b5061050b610ae1565b60405161051891906122be565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612388565b610b73565b60405161055591906123e3565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190612388565b610bea565b60405161059291906123e3565b60405180910390f35b3480156105a757600080fd5b506105b0610c0d565b6040516105bd9190612504565b60405180910390f35b3480156105d257600080fd5b506105db610c33565b6040516105e89190612504565b60405180910390f35b3480156105fd57600080fd5b50610606610c59565b6040516106139190612487565b60405180910390f35b34801561062857600080fd5b50610631610c5f565b60405161063e9190612487565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612753565b610c65565b60405161067b9190612487565b60405180910390f35b34801561069057600080fd5b50610699610cec565b6040516106a69190612487565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906126f7565b610cf2565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190612556565b610df7565b005b606060048054610710906127c2565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906127c2565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610e7a565b90506107ab818585610e82565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6107ec61104b565b600a60149054906101000a900460ff161561083c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108339061283f565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b60008061087f610e7a565b905061088c8582856110c9565b610897858585611155565b60019150509392505050565b61dead81565b60006012905090565b6000806108bd610e7a565b90506108de8185856108cf8589610c65565b6108d9919061288e565b610e82565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098561104b565b61098f600061182a565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109e961104b565b60005b8251811015610ad657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610a4157610a406128c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a969061293d565b60405180910390fd5b610ac3838281518110610ab557610ab46128c2565b5b6020026020010151836118f0565b8080610ace9061295d565b9150506109ec565b505050565b60035481565b606060058054610af0906127c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c906127c2565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b600080610b7e610e7a565b90506000610b8c8286610c65565b905083811015610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890612a17565b60405180910390fd5b610bde8286868403610e82565b60019250505092915050565b600080610bf5610e7a565b9050610c02818585611155565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610cfa61104b565b60005b8251811015610df2578160186000858481518110610d1e57610d1d6128c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550828181518110610d8a57610d896128c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610dd791906123e3565b60405180910390a28080610dea9061295d565b915050610cfd565b505050565b610dff61104b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612aa9565b60405180910390fd5b610e778161182a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890612b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612bcd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103e9190612487565b60405180910390a3505050565b611053610e7a565b73ffffffffffffffffffffffffffffffffffffffff166110716109b7565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612c39565b60405180910390fd5b565b60006110d58484610c65565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114f5781811015611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612ca5565b60405180910390fd5b61114e8484848403610e82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612dc9565b60405180910390fd5b600a60149054906101000a900460ff16806112975750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112eb5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612e35565b60405180910390fd5b600081036113435761133e83836000611991565b611825565b600061134e30610935565b90506000600b5482101590508080156113735750600a60159054906101000a900460ff165b801561138c5750600a60169054906101000a900460ff16155b80156113e15750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156114375750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561148d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d1576001600a60166101000a81548160ff0219169083151502179055506114b5611c07565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115875750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561159157600090505b6000811561180c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f457506000601054115b156116c25761162261271061161460105488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050601054601354826116359190612e55565b61163f9190612ec6565b60166000828254611650919061288e565b92505081905550601054601154826116689190612e55565b6116729190612ec6565b60146000828254611683919061288e565b925050819055506010546012548261169b9190612e55565b6116a59190612ec6565b601560008282546116b6919061288e565b925050819055506117e8565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561171d57506000600c54115b156117e75761174b61271061173d600c5488611ea990919063ffffffff16565b611ebf90919063ffffffff16565b9050600c54600f548261175e9190612e55565b6117689190612ec6565b60166000828254611779919061288e565b92505081905550600c54600d54826117919190612e55565b61179b9190612ec6565b601460008282546117ac919061288e565b92505081905550600c54600e54826117c49190612e55565b6117ce9190612ec6565b601560008282546117df919061288e565b925050819055505b5b60008111156117fd576117fc873083611991565b5b80856118099190612ef7565b94505b611817878787611991565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690612dc9565b60405180910390fd5b611a7a838383611ed5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790612f9d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee9190612487565b60405180910390a3611c01848484611eda565b50505050565b6000611c1230610935565b90506000601554601454601654611c29919061288e565b611c33919061288e565b905060008060028360165486611c499190612e55565b611c539190612ec6565b611c5d9190612ec6565b90506000611c748286611edf90919063ffffffff16565b90506000479050611c8482611ef5565b6000611c998247611edf90919063ffffffff16565b90506000611cc487611cb660145485611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000611cef88611ce160155486611ea990919063ffffffff16565b611ebf90919063ffffffff16565b90506000818385611d009190612ef7565b611d0a9190612ef7565b9050600060168190555060006014819055506000601581905550600087118015611d345750600081115b15611d8157611d438782612132565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d7893929190612fbd565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dc790613025565b60006040518083038185875af1925050503d8060008114611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e5590613025565b60006040518083038185875af1925050503d8060008114611e92576040519150601f19603f3d011682016040523d82523d6000602084013e611e97565b606091505b50508098505050505050505050505050565b60008183611eb79190612e55565b905092915050565b60008183611ecd9190612ec6565b905092915050565b505050565b505050565b60008183611eed9190612ef7565b905092915050565b6000600267ffffffffffffffff811115611f1257611f11612588565b5b604051908082528060200260200182016040528015611f405781602001602082028036833780820191505090505b5090503081600081518110611f5857611f576128c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612021919061304f565b81600181518110612035576120346128c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061209a307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120fc959493929190613175565b600060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050505050565b61215d307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610e82565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121e4969594939291906131cf565b60606040518083038185885af1158015612202573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122279190613245565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561226857808201518184015260208101905061224d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122908261222e565b61229a8185612239565b93506122aa81856020860161224a565b6122b381612274565b840191505092915050565b600060208201905081810360008301526122d88184612285565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061231f826122f4565b9050919050565b61232f81612314565b811461233a57600080fd5b50565b60008135905061234c81612326565b92915050565b6000819050919050565b61236581612352565b811461237057600080fd5b50565b6000813590506123828161235c565b92915050565b6000806040838503121561239f5761239e6122ea565b5b60006123ad8582860161233d565b92505060206123be85828601612373565b9150509250929050565b60008115159050919050565b6123dd816123c8565b82525050565b60006020820190506123f860008301846123d4565b92915050565b6000819050919050565b600061242361241e612419846122f4565b6123fe565b6122f4565b9050919050565b600061243582612408565b9050919050565b60006124478261242a565b9050919050565b6124578161243c565b82525050565b6000602082019050612472600083018461244e565b92915050565b61248181612352565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba6122ea565b5b60006124c98682870161233d565b93505060206124da8682870161233d565b92505060406124eb86828701612373565b9150509250925092565b6124fe81612314565b82525050565b600060208201905061251960008301846124f5565b92915050565b600060ff82169050919050565b6125358161251f565b82525050565b6000602082019050612550600083018461252c565b92915050565b60006020828403121561256c5761256b6122ea565b5b600061257a8482850161233d565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125c082612274565b810181811067ffffffffffffffff821117156125df576125de612588565b5b80604052505050565b60006125f26122e0565b90506125fe82826125b7565b919050565b600067ffffffffffffffff82111561261e5761261d612588565b5b602082029050602081019050919050565b600080fd5b600061264761264284612603565b6125e8565b9050808382526020820190506020840283018581111561266a5761266961262f565b5b835b81811015612693578061267f888261233d565b84526020840193505060208101905061266c565b5050509392505050565b600082601f8301126126b2576126b1612583565b5b81356126c2848260208601612634565b91505092915050565b6126d4816123c8565b81146126df57600080fd5b50565b6000813590506126f1816126cb565b92915050565b6000806040838503121561270e5761270d6122ea565b5b600083013567ffffffffffffffff81111561272c5761272b6122ef565b5b6127388582860161269d565b9250506020612749858286016126e2565b9150509250929050565b6000806040838503121561276a576127696122ea565b5b60006127788582860161233d565b92505060206127898582860161233d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127da57607f821691505b6020821081036127ed576127ec612793565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612829601783612239565b9150612834826127f3565b602082019050919050565b600060208201905081810360008301526128588161281c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061289982612352565b91506128a483612352565b92508282019050808211156128bc576128bb61285f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468652045786300000000000000000000000000000000000000000000000000600082015250565b6000612927600783612239565b9150612932826128f1565b602082019050919050565b600060208201905081810360008301526129568161291a565b9050919050565b600061296882612352565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361299a5761299961285f565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a01602583612239565b9150612a0c826129a5565b604082019050919050565b60006020820190508181036000830152612a30816129f4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a93602683612239565b9150612a9e82612a37565b604082019050919050565b60006020820190508181036000830152612ac281612a86565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b25602483612239565b9150612b3082612ac9565b604082019050919050565b60006020820190508181036000830152612b5481612b18565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bb7602283612239565b9150612bc282612b5b565b604082019050919050565b60006020820190508181036000830152612be681612baa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c23602083612239565b9150612c2e82612bed565b602082019050919050565b60006020820190508181036000830152612c5281612c16565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612c8f601d83612239565b9150612c9a82612c59565b602082019050919050565b60006020820190508181036000830152612cbe81612c82565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d21602583612239565b9150612d2c82612cc5565b604082019050919050565b60006020820190508181036000830152612d5081612d14565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612db3602383612239565b9150612dbe82612d57565b604082019050919050565b60006020820190508181036000830152612de281612da6565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612e1f601883612239565b9150612e2a82612de9565b602082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b6000612e6082612352565b9150612e6b83612352565b9250828202612e7981612352565b91508282048414831517612e9057612e8f61285f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ed182612352565b9150612edc83612352565b925082612eec57612eeb612e97565b5b828204905092915050565b6000612f0282612352565b9150612f0d83612352565b9250828203905081811115612f2557612f2461285f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f87602683612239565b9150612f9282612f2b565b604082019050919050565b60006020820190508181036000830152612fb681612f7a565b9050919050565b6000606082019050612fd26000830186612478565b612fdf6020830185612478565b612fec6040830184612478565b949350505050565b600081905092915050565b50565b600061300f600083612ff4565b915061301a82612fff565b600082019050919050565b600061303082613002565b9150819050919050565b60008151905061304981612326565b92915050565b600060208284031215613065576130646122ea565b5b60006130738482850161303a565b91505092915050565b6000819050919050565b60006130a161309c6130978461307c565b6123fe565b612352565b9050919050565b6130b181613086565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ec81612314565b82525050565b60006130fe83836130e3565b60208301905092915050565b6000602082019050919050565b6000613122826130b7565b61312c81856130c2565b9350613137836130d3565b8060005b8381101561316857815161314f88826130f2565b975061315a8361310a565b92505060018101905061313b565b5085935050505092915050565b600060a08201905061318a6000830188612478565b61319760208301876130a8565b81810360408301526131a98186613117565b90506131b860608301856124f5565b6131c56080830184612478565b9695505050505050565b600060c0820190506131e460008301896124f5565b6131f16020830188612478565b6131fe60408301876130a8565b61320b60608301866130a8565b61321860808301856124f5565b61322560a0830184612478565b979650505050505050565b60008151905061323f8161235c565b92915050565b60008060006060848603121561325e5761325d6122ea565b5b600061326c86828701613230565b935050602061327d86828701613230565b925050604061328e86828701613230565b915050925092509256fea26469706673582212209b0a7e8a1c6208a825950aaa8ed32c02ee0d5670bd506f302279deecfeea728b64736f6c63430008110033
Deployed Bytecode Sourcemap
28387:8585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8237:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10426:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28461:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9366:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31188:169;;;;;;;;;;;;;:::i;:::-;;10676:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28669:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9208:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10979:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28519:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28731:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28764:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9537:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1582:103;;;;;;;;;;;;;:::i;:::-;;28556:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;941:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31623:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7776:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8456:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9920:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28593:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28632:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29018:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28867;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10217:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28825:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31366:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1840:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8237:100;8291:13;8324:5;8317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8237:100;:::o;10426:242::-;10545:4;10567:13;10583:12;:10;:12::i;:::-;10567:28;;10606:32;10615:5;10622:7;10631:6;10606:8;:32::i;:::-;10656:4;10649:11;;;10426:242;;;;:::o;28461:51::-;;;:::o;9366:108::-;9427:7;9454:12;;9447:19;;9366:108;:::o;31188:169::-;827:13;:11;:13::i;:::-;31246:14:::1;;;;;;;;;;;31245:15;31237:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31316:4;31299:14;;:21;;;;;;;;;;;;;;;;;;31345:4;31331:11;;:18;;;;;;;;;;;;;;;;;;31188:169::o:0;10676:295::-;10807:4;10824:15;10842:12;:10;:12::i;:::-;10824:30;;10865:38;10881:4;10887:7;10896:6;10865:15;:38::i;:::-;10914:27;10924:4;10930:2;10934:6;10914:9;:27::i;:::-;10959:4;10952:11;;;10676:295;;;;;:::o;28669:53::-;28715:6;28669:53;:::o;9208:93::-;9266:5;9291:2;9284:9;;9208:93;:::o;10979:270::-;11094:4;11116:13;11132:12;:10;:12::i;:::-;11116:28;;11155:64;11164:5;11171:7;11208:10;11180:25;11190:5;11197:7;11180:9;:25::i;:::-;:38;;;;:::i;:::-;11155:8;:64::i;:::-;11237:4;11230:11;;;10979:270;;;;:::o;28519:28::-;;;;;;;;;;;;;:::o;28731:26::-;;;;;;;;;;;;;:::o;28764:23::-;;;;;;;;;;;;;:::o;9537:177::-;9656:7;9688:9;:18;9698:7;9688:18;;;;;;;;;;;;;;;;9681:25;;9537:177;;;:::o;1582:103::-;827:13;:11;:13::i;:::-;1647:30:::1;1674:1;1647:18;:30::i;:::-;1582:103::o:0;28556:30::-;;;;;;;;;;;;;:::o;941:87::-;987:7;1014:6;;;;;;;;;;;1007:13;;941:87;:::o;31623:245::-;827:13;:11;:13::i;:::-;31718:9:::1;31713:152;31737:5;:12;31733:1;:16;31713:152;;;31787:13;;;;;;;;;;;31775:25;;:5;31781:1;31775:8;;;;;;;;:::i;:::-;;;;;;;;:25;;::::0;31767:45:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;31823:34;31841:5;31847:1;31841:8;;;;;;;;:::i;:::-;;;;;;;;31851:5;31823:17;:34::i;:::-;31751:3;;;;;:::i;:::-;;;;31713:152;;;;31623:245:::0;;:::o;7776:26::-;;;;:::o;8456:104::-;8512:13;8545:7;8538:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8456:104;:::o;11257:505::-;11377:4;11399:13;11415:12;:10;:12::i;:::-;11399:28;;11438:24;11465:25;11475:5;11482:7;11465:9;:25::i;:::-;11438:52;;11543:15;11523:16;:35;;11501:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11659:60;11668:5;11675:7;11703:15;11684:16;:34;11659:8;:60::i;:::-;11750:4;11743:11;;;;11257:505;;;;:::o;9920:234::-;10035:4;10057:13;10073:12;:10;:12::i;:::-;10057:28;;10096;10106:5;10113:2;10117:6;10096:9;:28::i;:::-;10142:4;10135:11;;;9920:234;;;;:::o;28593:32::-;;;;;;;;;;;;;:::o;28632:30::-;;;;;;;;;;;;;:::o;29018:27::-;;;;:::o;28867:::-;;;;:::o;10217:201::-;10351:7;10383:11;:18;10395:5;10383:18;;;;;;;;;;;;;;;:27;10402:7;10383:27;;;;;;;;;;;;;;;;10376:34;;10217:201;;;;:::o;28825:33::-;;;;:::o;31366:250::-;827:13;:11;:13::i;:::-;31456:9:::1;31451:162;31475:8;:15;31471:1;:19;31451:162;;;31543:8;31508:19;:32;31528:8;31537:1;31528:11;;;;;;;;:::i;:::-;;;;;;;;31508:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;31583:8;31592:1;31583:11;;;;;;;;:::i;:::-;;;;;;;;31567:38;;;31596:8;31567:38;;;;;;:::i;:::-;;;;;;;;31492:3;;;;;:::i;:::-;;;;31451:162;;;;31366:250:::0;;:::o;1840:238::-;827:13;:11;:13::i;:::-;1963:1:::1;1943:22;;:8;:22;;::::0;1921:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2042:28;2061:8;2042:18;:28::i;:::-;1840:238:::0;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;13894:380::-;14047:1;14030:19;;:5;:19;;;14022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14128:1;14109:21;;:7;:21;;;14101:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14212:6;14182:11;:18;14194:5;14182:18;;;;;;;;;;;;;;;:27;14201:7;14182:27;;;;;;;;;;;;;;;:36;;;;14250:7;14234:32;;14243:5;14234:32;;;14259:6;14234:32;;;;;;:::i;:::-;;;;;;;;13894:380;;;:::o;1106:132::-;1181:12;:10;:12::i;:::-;1170:23;;:7;:5;:7::i;:::-;:23;;;1162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1106:132::o;14282:502::-;14417:24;14444:25;14454:5;14461:7;14444:9;:25::i;:::-;14417:52;;14504:17;14484:16;:37;14480:297;;14584:6;14564:16;:26;;14538:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14699:51;14708:5;14715:7;14743:6;14724:16;:25;14699:8;:51::i;:::-;14480:297;14406:378;14282:502;;;:::o;32062:2399::-;32210:1;32194:18;;:4;:18;;;32186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32287:1;32273:16;;:2;:16;;;32265:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32348:14;;;;;;;;;;;:43;;;;32366:19;:25;32386:4;32366:25;;;;;;;;;;;;;;;;;;;;;;;;;32348:43;:70;;;;32395:19;:23;32415:2;32395:23;;;;;;;;;;;;;;;;;;;;;;;;;32348:70;32340:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;32472:1;32462:6;:11;32458:93;;32490:28;32506:4;32512:2;32516:1;32490:15;:28::i;:::-;32533:7;;32458:93;32565:28;32596:24;32614:4;32596:9;:24::i;:::-;32565:55;;32633:12;32672:18;;32648:20;:42;;32633:57;;32721:7;:35;;;;;32745:11;;;;;;;;;;;32721:35;:48;;;;;32760:9;;;;;;;;;;;32759:10;32721:48;:81;;;;;32771:25;:31;32797:4;32771:31;;;;;;;;;;;;;;;;;;;;;;;;;32721:81;:124;;;;;32820:19;:25;32840:4;32820:25;;;;;;;;;;;;;;;;;;;;;;;;;32819:26;32721:124;:165;;;;;32863:19;:23;32883:2;32863:23;;;;;;;;;;;;;;;;;;;;;;;;;32862:24;32721:165;32703:300;;;32925:4;32913:9;;:16;;;;;;;;;;;;;;;;;;32946:11;:9;:11::i;:::-;32986:5;32974:9;;:17;;;;;;;;;;;;;;;;;;32703:300;33015:12;33031:9;;;;;;;;;;;33030:10;33015:25;;33057:19;:25;33077:4;33057:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33086:19;:23;33106:2;33086:23;;;;;;;;;;;;;;;;;;;;;;;;;33057:52;33053:100;;;33136:5;33126:15;;33053:100;33165:12;33198:7;33194:1176;;;33250:25;:29;33276:2;33250:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;33298:1;33283:12;;:16;33250:49;33246:975;;;33327:35;33356:5;33327:24;33338:12;;33327:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33320:42;;33475:12;;33433:17;;33426:4;:24;;;;:::i;:::-;33425:62;;;;:::i;:::-;33381:19;;:106;;;;;;;:::i;:::-;;;;;;;;33600:12;;33558:17;;33551:4;:24;;;;:::i;:::-;33550:62;;;;:::i;:::-;33506:19;;:106;;;;;;;:::i;:::-;;;;;;;;33729:12;;33685:19;;33678:4;:26;;;;:::i;:::-;33677:64;;;;:::i;:::-;33631:21;;:110;;;;;;;:::i;:::-;;;;;;;;33246:975;;;33803:25;:31;33829:4;33803:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;33853:1;33838:12;;:16;33803:51;33799:422;;;33882:35;33911:5;33882:24;33893:12;;33882:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33875:42;;33987:12;;33967:16;;33960:4;:23;;;;:::i;:::-;33959:40;;;;:::i;:::-;33936:19;;:63;;;;;;;:::i;:::-;;;;;;;;34069:12;;34049:16;;34042:4;:23;;;;:::i;:::-;34041:40;;;;:::i;:::-;34018:19;;:63;;;;;;;:::i;:::-;;;;;;;;34193:12;;34154:14;;34147:4;:21;;;;:::i;:::-;34146:59;;;;:::i;:::-;34100:21;;:105;;;;;;;:::i;:::-;;;;;;;;33799:422;33246:975;34248:1;34241:4;:8;34237:91;;;34270:42;34286:4;34300;34307;34270:15;:42::i;:::-;34237:91;34354:4;34344:14;;;;;:::i;:::-;;;33194:1176;34382:33;34398:4;34404:2;34408:6;34382:15;:33::i;:::-;34441:12;;34426;:27;;;;32175:2286;;;;32062:2399;;;;:::o;2238:191::-;2312:16;2331:6;;;;;;;;;;;2312:25;;2357:8;2348:6;;:17;;;;;;;;;;;;;;;;;;2412:8;2381:40;;2402:8;2381:40;;;;;;;;;;;;2301:128;2238:191;:::o;31878:176::-;31985:5;31951:25;:31;31977:4;31951:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32040:5;32006:40;;32034:4;32006:40;;;;;;;;;;;;31878:176;;:::o;11770:877::-;11917:1;11901:18;;:4;:18;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11994:1;11980:16;;:2;:16;;;11972:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12049:38;12070:4;12076:2;12080:6;12049:20;:38::i;:::-;12100:19;12122:9;:15;12132:4;12122:15;;;;;;;;;;;;;;;;12100:37;;12185:6;12170:11;:21;;12148:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12325:6;12311:11;:20;12293:9;:15;12303:4;12293:15;;;;;;;;;;;;;;;:38;;;;12528:6;12511:9;:13;12521:2;12511:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12578:2;12563:26;;12572:4;12563:26;;;12582:6;12563:26;;;;;;:::i;:::-;;;;;;;;12602:37;12622:4;12628:2;12632:6;12602:19;:37::i;:::-;11882:765;11770:877;;;:::o;35360:1607::-;35401:23;35427:24;35445:4;35427:9;:24::i;:::-;35401:50;;35462:25;35560:21;;35525:19;;35490;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35462:119;;35592:12;35619:23;35733:1;35700:17;35664:19;;35646:15;:37;;;;:::i;:::-;35645:72;;;;:::i;:::-;:89;;;;:::i;:::-;35619:115;;35745:26;35774:36;35794:15;35774;:19;;:36;;;;:::i;:::-;35745:65;;35823:25;35851:21;35823:49;;35885:37;35903:18;35885:17;:37::i;:::-;35935:18;35956:44;35982:17;35956:21;:25;;:44;;;;:::i;:::-;35935:65;;36013:23;36039:82;36093:17;36039:35;36054:19;;36039:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36013:108;;36134:25;36162:84;36218:17;36162:37;36177:21;;36162:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36134:112;;36259:23;36342:17;36311:15;36285:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;36259:100;;36394:1;36372:19;:23;;;;36428:1;36406:19;:23;;;;36464:1;36440:21;:25;;;;36500:1;36482:15;:19;:42;;;;;36523:1;36505:15;:19;36482:42;36478:280;;;36541:47;36555:15;36572;36541:13;:47::i;:::-;36608:138;36641:18;36678:15;36712:19;;36608:138;;;;;;;;:::i;:::-;;;;;;;;36478:280;36792:17;;;;;;;;;;;36784:31;;36823:17;36784:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36770:75;;;;;36880:15;;;;;;;;;;;36872:29;;36923:21;36872:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36858:101;;;;;35390:1577;;;;;;;;;;35360:1607::o;18411:98::-;18469:7;18500:1;18496;:5;;;;:::i;:::-;18489:12;;18411:98;;;;:::o;18810:::-;18868:7;18899:1;18895;:5;;;;:::i;:::-;18888:12;;18810:98;;;;:::o;14792:125::-;;;;:::o;14925:124::-;;;;:::o;18054:98::-;18112:7;18143:1;18139;:5;;;;:::i;:::-;18132:12;;18054:98;;;;:::o;34469:503::-;34537:21;34575:1;34561:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34537:40;;34606:4;34588;34593:1;34588:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34632:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34622:4;34627:1;34622:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34667:62;34684:4;34699:15;34717:11;34667:8;:62::i;:::-;34768:15;:66;;;34849:11;34875:1;34891:4;34918;34938:15;34768:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34526:446;34469:503;:::o;34980:372::-;35063:62;35080:4;35095:15;35113:11;35063:8;:62::i;:::-;35138:15;:31;;;35177:9;35210:4;35230:11;35256:1;35272;35288:15;;;;;;;;;;;35318;35138:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34980:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:117::-;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:311::-;7326:4;7416:18;7408:6;7405:30;7402:56;;;7438:18;;:::i;:::-;7402:56;7488:4;7480:6;7476:17;7468:25;;7548:4;7542;7538:15;7530:23;;7249:311;;;:::o;7566:117::-;7675:1;7672;7665:12;7706:710;7802:5;7827:81;7843:64;7900:6;7843:64;:::i;:::-;7827:81;:::i;:::-;7818:90;;7928:5;7957:6;7950:5;7943:21;7991:4;7984:5;7980:16;7973:23;;8044:4;8036:6;8032:17;8024:6;8020:30;8073:3;8065:6;8062:15;8059:122;;;8092:79;;:::i;:::-;8059:122;8207:6;8190:220;8224:6;8219:3;8216:15;8190:220;;;8299:3;8328:37;8361:3;8349:10;8328:37;:::i;:::-;8323:3;8316:50;8395:4;8390:3;8386:14;8379:21;;8266:144;8250:4;8245:3;8241:14;8234:21;;8190:220;;;8194:21;7808:608;;7706:710;;;;;:::o;8439:370::-;8510:5;8559:3;8552:4;8544:6;8540:17;8536:27;8526:122;;8567:79;;:::i;:::-;8526:122;8684:6;8671:20;8709:94;8799:3;8791:6;8784:4;8776:6;8772:17;8709:94;:::i;:::-;8700:103;;8516:293;8439:370;;;;:::o;8815:116::-;8885:21;8900:5;8885:21;:::i;:::-;8878:5;8875:32;8865:60;;8921:1;8918;8911:12;8865:60;8815:116;:::o;8937:133::-;8980:5;9018:6;9005:20;8996:29;;9034:30;9058:5;9034:30;:::i;:::-;8937:133;;;;:::o;9076:678::-;9166:6;9174;9223:2;9211:9;9202:7;9198:23;9194:32;9191:119;;;9229:79;;:::i;:::-;9191:119;9377:1;9366:9;9362:17;9349:31;9407:18;9399:6;9396:30;9393:117;;;9429:79;;:::i;:::-;9393:117;9534:78;9604:7;9595:6;9584:9;9580:22;9534:78;:::i;:::-;9524:88;;9320:302;9661:2;9687:50;9729:7;9720:6;9709:9;9705:22;9687:50;:::i;:::-;9677:60;;9632:115;9076:678;;;;;:::o;9760:474::-;9828:6;9836;9885:2;9873:9;9864:7;9860:23;9856:32;9853:119;;;9891:79;;:::i;:::-;9853:119;10011:1;10036:53;10081:7;10072:6;10061:9;10057:22;10036:53;:::i;:::-;10026:63;;9982:117;10138:2;10164:53;10209:7;10200:6;10189:9;10185:22;10164:53;:::i;:::-;10154:63;;10109:118;9760:474;;;;;:::o;10240:180::-;10288:77;10285:1;10278:88;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10426:320;10470:6;10507:1;10501:4;10497:12;10487:22;;10554:1;10548:4;10544:12;10575:18;10565:81;;10631:4;10623:6;10619:17;10609:27;;10565:81;10693:2;10685:6;10682:14;10662:18;10659:38;10656:84;;10712:18;;:::i;:::-;10656:84;10477:269;10426:320;;;:::o;10752:173::-;10892:25;10888:1;10880:6;10876:14;10869:49;10752:173;:::o;10931:366::-;11073:3;11094:67;11158:2;11153:3;11094:67;:::i;:::-;11087:74;;11170:93;11259:3;11170:93;:::i;:::-;11288:2;11283:3;11279:12;11272:19;;10931:366;;;:::o;11303:419::-;11469:4;11507:2;11496:9;11492:18;11484:26;;11556:9;11550:4;11546:20;11542:1;11531:9;11527:17;11520:47;11584:131;11710:4;11584:131;:::i;:::-;11576:139;;11303:419;;;:::o;11728:180::-;11776:77;11773:1;11766:88;11873:4;11870:1;11863:15;11897:4;11894:1;11887:15;11914:191;11954:3;11973:20;11991:1;11973:20;:::i;:::-;11968:25;;12007:20;12025:1;12007:20;:::i;:::-;12002:25;;12050:1;12047;12043:9;12036:16;;12071:3;12068:1;12065:10;12062:36;;;12078:18;;:::i;:::-;12062:36;11914:191;;;;:::o;12111:180::-;12159:77;12156:1;12149:88;12256:4;12253:1;12246:15;12280:4;12277:1;12270:15;12297:157;12437:9;12433:1;12425:6;12421:14;12414:33;12297:157;:::o;12460:365::-;12602:3;12623:66;12687:1;12682:3;12623:66;:::i;:::-;12616:73;;12698:93;12787:3;12698:93;:::i;:::-;12816:2;12811:3;12807:12;12800:19;;12460:365;;;:::o;12831:419::-;12997:4;13035:2;13024:9;13020:18;13012:26;;13084:9;13078:4;13074:20;13070:1;13059:9;13055:17;13048:47;13112:131;13238:4;13112:131;:::i;:::-;13104:139;;12831:419;;;:::o;13256:233::-;13295:3;13318:24;13336:5;13318:24;:::i;:::-;13309:33;;13364:66;13357:5;13354:77;13351:103;;13434:18;;:::i;:::-;13351:103;13481:1;13474:5;13470:13;13463:20;;13256:233;;;:::o;13495:224::-;13635:34;13631:1;13623:6;13619:14;13612:58;13704:7;13699:2;13691:6;13687:15;13680:32;13495:224;:::o;13725:366::-;13867:3;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13964:93;14053:3;13964:93;:::i;:::-;14082:2;14077:3;14073:12;14066:19;;13725:366;;;:::o;14097:419::-;14263:4;14301:2;14290:9;14286:18;14278:26;;14350:9;14344:4;14340:20;14336:1;14325:9;14321:17;14314:47;14378:131;14504:4;14378:131;:::i;:::-;14370:139;;14097:419;;;:::o;14522:225::-;14662:34;14658:1;14650:6;14646:14;14639:58;14731:8;14726:2;14718:6;14714:15;14707:33;14522:225;:::o;14753:366::-;14895:3;14916:67;14980:2;14975:3;14916:67;:::i;:::-;14909:74;;14992:93;15081:3;14992:93;:::i;:::-;15110:2;15105:3;15101:12;15094:19;;14753:366;;;:::o;15125:419::-;15291:4;15329:2;15318:9;15314:18;15306:26;;15378:9;15372:4;15368:20;15364:1;15353:9;15349:17;15342:47;15406:131;15532:4;15406:131;:::i;:::-;15398:139;;15125:419;;;:::o;15550:223::-;15690:34;15686:1;15678:6;15674:14;15667:58;15759:6;15754:2;15746:6;15742:15;15735:31;15550:223;:::o;15779:366::-;15921:3;15942:67;16006:2;16001:3;15942:67;:::i;:::-;15935:74;;16018:93;16107:3;16018:93;:::i;:::-;16136:2;16131:3;16127:12;16120:19;;15779:366;;;:::o;16151:419::-;16317:4;16355:2;16344:9;16340:18;16332:26;;16404:9;16398:4;16394:20;16390:1;16379:9;16375:17;16368:47;16432:131;16558:4;16432:131;:::i;:::-;16424:139;;16151:419;;;:::o;16576:221::-;16716:34;16712:1;16704:6;16700:14;16693:58;16785:4;16780:2;16772:6;16768:15;16761:29;16576:221;:::o;16803:366::-;16945:3;16966:67;17030:2;17025:3;16966:67;:::i;:::-;16959:74;;17042:93;17131:3;17042:93;:::i;:::-;17160:2;17155:3;17151:12;17144:19;;16803:366;;;:::o;17175:419::-;17341:4;17379:2;17368:9;17364:18;17356:26;;17428:9;17422:4;17418:20;17414:1;17403:9;17399:17;17392:47;17456:131;17582:4;17456:131;:::i;:::-;17448:139;;17175:419;;;:::o;17600:182::-;17740:34;17736:1;17728:6;17724:14;17717:58;17600:182;:::o;17788:366::-;17930:3;17951:67;18015:2;18010:3;17951:67;:::i;:::-;17944:74;;18027:93;18116:3;18027:93;:::i;:::-;18145:2;18140:3;18136:12;18129:19;;17788:366;;;:::o;18160:419::-;18326:4;18364:2;18353:9;18349:18;18341:26;;18413:9;18407:4;18403:20;18399:1;18388:9;18384:17;18377:47;18441:131;18567:4;18441:131;:::i;:::-;18433:139;;18160:419;;;:::o;18585:179::-;18725:31;18721:1;18713:6;18709:14;18702:55;18585:179;:::o;18770:366::-;18912:3;18933:67;18997:2;18992:3;18933:67;:::i;:::-;18926:74;;19009:93;19098:3;19009:93;:::i;:::-;19127:2;19122:3;19118:12;19111:19;;18770:366;;;:::o;19142:419::-;19308:4;19346:2;19335:9;19331:18;19323:26;;19395:9;19389:4;19385:20;19381:1;19370:9;19366:17;19359:47;19423:131;19549:4;19423:131;:::i;:::-;19415:139;;19142:419;;;:::o;19567:224::-;19707:34;19703:1;19695:6;19691:14;19684:58;19776:7;19771:2;19763:6;19759:15;19752:32;19567:224;:::o;19797:366::-;19939:3;19960:67;20024:2;20019:3;19960:67;:::i;:::-;19953:74;;20036:93;20125:3;20036:93;:::i;:::-;20154:2;20149:3;20145:12;20138:19;;19797:366;;;:::o;20169:419::-;20335:4;20373:2;20362:9;20358:18;20350:26;;20422:9;20416:4;20412:20;20408:1;20397:9;20393:17;20386:47;20450:131;20576:4;20450:131;:::i;:::-;20442:139;;20169:419;;;:::o;20594:222::-;20734:34;20730:1;20722:6;20718:14;20711:58;20803:5;20798:2;20790:6;20786:15;20779:30;20594:222;:::o;20822:366::-;20964:3;20985:67;21049:2;21044:3;20985:67;:::i;:::-;20978:74;;21061:93;21150:3;21061:93;:::i;:::-;21179:2;21174:3;21170:12;21163:19;;20822:366;;;:::o;21194:419::-;21360:4;21398:2;21387:9;21383:18;21375:26;;21447:9;21441:4;21437:20;21433:1;21422:9;21418:17;21411:47;21475:131;21601:4;21475:131;:::i;:::-;21467:139;;21194:419;;;:::o;21619:174::-;21759:26;21755:1;21747:6;21743:14;21736:50;21619:174;:::o;21799:366::-;21941:3;21962:67;22026:2;22021:3;21962:67;:::i;:::-;21955:74;;22038:93;22127:3;22038:93;:::i;:::-;22156:2;22151:3;22147:12;22140:19;;21799:366;;;:::o;22171:419::-;22337:4;22375:2;22364:9;22360:18;22352:26;;22424:9;22418:4;22414:20;22410:1;22399:9;22395:17;22388:47;22452:131;22578:4;22452:131;:::i;:::-;22444:139;;22171:419;;;:::o;22596:410::-;22636:7;22659:20;22677:1;22659:20;:::i;:::-;22654:25;;22693:20;22711:1;22693:20;:::i;:::-;22688:25;;22748:1;22745;22741:9;22770:30;22788:11;22770:30;:::i;:::-;22759:41;;22949:1;22940:7;22936:15;22933:1;22930:22;22910:1;22903:9;22883:83;22860:139;;22979:18;;:::i;:::-;22860:139;22644:362;22596:410;;;;:::o;23012:180::-;23060:77;23057:1;23050:88;23157:4;23154:1;23147:15;23181:4;23178:1;23171:15;23198:185;23238:1;23255:20;23273:1;23255:20;:::i;:::-;23250:25;;23289:20;23307:1;23289:20;:::i;:::-;23284:25;;23328:1;23318:35;;23333:18;;:::i;:::-;23318:35;23375:1;23372;23368:9;23363:14;;23198:185;;;;:::o;23389:194::-;23429:4;23449:20;23467:1;23449:20;:::i;:::-;23444:25;;23483:20;23501:1;23483:20;:::i;:::-;23478:25;;23527:1;23524;23520:9;23512:17;;23551:1;23545:4;23542:11;23539:37;;;23556:18;;:::i;:::-;23539:37;23389:194;;;;:::o;23589:225::-;23729:34;23725:1;23717:6;23713:14;23706:58;23798:8;23793:2;23785:6;23781:15;23774:33;23589:225;:::o;23820:366::-;23962:3;23983:67;24047:2;24042:3;23983:67;:::i;:::-;23976:74;;24059:93;24148:3;24059:93;:::i;:::-;24177:2;24172:3;24168:12;24161:19;;23820:366;;;:::o;24192:419::-;24358:4;24396:2;24385:9;24381:18;24373:26;;24445:9;24439:4;24435:20;24431:1;24420:9;24416:17;24409:47;24473:131;24599:4;24473:131;:::i;:::-;24465:139;;24192:419;;;:::o;24617:442::-;24766:4;24804:2;24793:9;24789:18;24781:26;;24817:71;24885:1;24874:9;24870:17;24861:6;24817:71;:::i;:::-;24898:72;24966:2;24955:9;24951:18;24942:6;24898:72;:::i;:::-;24980;25048:2;25037:9;25033:18;25024:6;24980:72;:::i;:::-;24617:442;;;;;;:::o;25065:147::-;25166:11;25203:3;25188:18;;25065:147;;;;:::o;25218:114::-;;:::o;25338:398::-;25497:3;25518:83;25599:1;25594:3;25518:83;:::i;:::-;25511:90;;25610:93;25699:3;25610:93;:::i;:::-;25728:1;25723:3;25719:11;25712:18;;25338:398;;;:::o;25742:379::-;25926:3;25948:147;26091:3;25948:147;:::i;:::-;25941:154;;26112:3;26105:10;;25742:379;;;:::o;26127:143::-;26184:5;26215:6;26209:13;26200:22;;26231:33;26258:5;26231:33;:::i;:::-;26127:143;;;;:::o;26276:351::-;26346:6;26395:2;26383:9;26374:7;26370:23;26366:32;26363:119;;;26401:79;;:::i;:::-;26363:119;26521:1;26546:64;26602:7;26593:6;26582:9;26578:22;26546:64;:::i;:::-;26536:74;;26492:128;26276:351;;;;:::o;26633:85::-;26678:7;26707:5;26696:16;;26633:85;;;:::o;26724:158::-;26782:9;26815:61;26833:42;26842:32;26868:5;26842:32;:::i;:::-;26833:42;:::i;:::-;26815:61;:::i;:::-;26802:74;;26724:158;;;:::o;26888:147::-;26983:45;27022:5;26983:45;:::i;:::-;26978:3;26971:58;26888:147;;:::o;27041:114::-;27108:6;27142:5;27136:12;27126:22;;27041:114;;;:::o;27161:184::-;27260:11;27294:6;27289:3;27282:19;27334:4;27329:3;27325:14;27310:29;;27161:184;;;;:::o;27351:132::-;27418:4;27441:3;27433:11;;27471:4;27466:3;27462:14;27454:22;;27351:132;;;:::o;27489:108::-;27566:24;27584:5;27566:24;:::i;:::-;27561:3;27554:37;27489:108;;:::o;27603:179::-;27672:10;27693:46;27735:3;27727:6;27693:46;:::i;:::-;27771:4;27766:3;27762:14;27748:28;;27603:179;;;;:::o;27788:113::-;27858:4;27890;27885:3;27881:14;27873:22;;27788:113;;;:::o;27937:732::-;28056:3;28085:54;28133:5;28085:54;:::i;:::-;28155:86;28234:6;28229:3;28155:86;:::i;:::-;28148:93;;28265:56;28315:5;28265:56;:::i;:::-;28344:7;28375:1;28360:284;28385:6;28382:1;28379:13;28360:284;;;28461:6;28455:13;28488:63;28547:3;28532:13;28488:63;:::i;:::-;28481:70;;28574:60;28627:6;28574:60;:::i;:::-;28564:70;;28420:224;28407:1;28404;28400:9;28395:14;;28360:284;;;28364:14;28660:3;28653:10;;28061:608;;;27937:732;;;;:::o;28675:831::-;28938:4;28976:3;28965:9;28961:19;28953:27;;28990:71;29058:1;29047:9;29043:17;29034:6;28990:71;:::i;:::-;29071:80;29147:2;29136:9;29132:18;29123:6;29071:80;:::i;:::-;29198:9;29192:4;29188:20;29183:2;29172:9;29168:18;29161:48;29226:108;29329:4;29320:6;29226:108;:::i;:::-;29218:116;;29344:72;29412:2;29401:9;29397:18;29388:6;29344:72;:::i;:::-;29426:73;29494:3;29483:9;29479:19;29470:6;29426:73;:::i;:::-;28675:831;;;;;;;;:::o;29512:807::-;29761:4;29799:3;29788:9;29784:19;29776:27;;29813:71;29881:1;29870:9;29866:17;29857:6;29813:71;:::i;:::-;29894:72;29962:2;29951:9;29947:18;29938:6;29894:72;:::i;:::-;29976:80;30052:2;30041:9;30037:18;30028:6;29976:80;:::i;:::-;30066;30142:2;30131:9;30127:18;30118:6;30066:80;:::i;:::-;30156:73;30224:3;30213:9;30209:19;30200:6;30156:73;:::i;:::-;30239;30307:3;30296:9;30292:19;30283:6;30239:73;:::i;:::-;29512:807;;;;;;;;;:::o;30325:143::-;30382:5;30413:6;30407:13;30398:22;;30429:33;30456:5;30429:33;:::i;:::-;30325:143;;;;:::o;30474:663::-;30562:6;30570;30578;30627:2;30615:9;30606:7;30602:23;30598:32;30595:119;;;30633:79;;:::i;:::-;30595:119;30753:1;30778:64;30834:7;30825:6;30814:9;30810:22;30778:64;:::i;:::-;30768:74;;30724:128;30891:2;30917:64;30973:7;30964:6;30953:9;30949:22;30917:64;:::i;:::-;30907:74;;30862:129;31030:2;31056:64;31112:7;31103:6;31092:9;31088:22;31056:64;:::i;:::-;31046:74;;31001:129;30474:663;;;;;:::o
Swarm Source
ipfs://9b0a7e8a1c6208a825950aaa8ed32c02ee0d5670bd506f302279deecfeea728b
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.