ERC-20
Overview
Max Total Supply
10,000,000 STRIKE
Holders
98
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
94,985.223174394339183711 STRIKEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Strike
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-24 */ /** *Submitted for verification at Etherscan.io on 2023-10-20 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; /** / STRIKE - Counter-Strike 2: Play to Earn Strike is a community of crypto enthusiasts who love playing Counter-Strike. We combine two aspects in one token. $STRIKE - memtoken with utility. We unite all CS gamers and provide them with the opportunity to earn $ETH and in-game items while playing their favorite game. TG: https://t.me/cs2_p2e X: https://x.com/Strike_erc20 */ abstract contract Context { function _msgSender() internal view virtual returns(address) { return msg.sender; } function _msgData() internal view virtual returns(bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns(address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns(uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns(uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns(bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns(uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns(bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns(bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns(string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns(string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns(uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns(string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns(string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns(uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns(uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns(uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns(bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns(uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns(bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns(bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns(bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns(bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual { } /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual { } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns(bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns(bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns(bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns(bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns(bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns(uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns(uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns(uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns(uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns(uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns(uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns(uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns(uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function 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; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns(string memory); function symbol() external pure returns(string memory); function decimals() external pure returns(uint8); function totalSupply() external view returns(uint256); function balanceOf(address owner) external view returns(uint256); function allowance(address owner, address spender) external view returns(uint256); function approve(address spender, uint256 value) external returns(bool); function transfer(address to, uint256 value) external returns(bool); function transferFrom( address from, address to, uint256 value ) external returns(bool); function DOMAIN_SEPARATOR() external view returns(bytes32); function PERMIT_TYPEHASH() external pure returns(bytes32); function nonces(address owner) external view returns(uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns(uint256); function factory() external view returns(address); function token0() external view returns(address); function token1() external view returns(address); function getReserves() external view returns( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns(uint256); function price1CumulativeLast() external view returns(uint256); function kLast() external view returns(uint256); function mint(address to) external returns(uint256 liquidity); function burn(address to) external returns(uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns(address); function WETH() external pure returns(address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Strike is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public revShareWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Strike - CS2: P2E", "STRIKE") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 3; uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 3; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 2; uint256 totalSupply = 10_000_000 * 1e18; maxTransactionAmount = 100_000 * 1e18; // 1% maxWallet = 100_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 1000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0xC7fb27A4dc2363C07AC261DB6661f279C142C863); // set as revShare teamWallet = address(0x8748269F2335DcDfd6fdfA00D3b7e4Bd2E67E84C); // set as team // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns(bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns(bool) { require( newAmount >= (totalSupply() * 1) / 10000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 100, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns(bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{ value: ethAmount } ( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens 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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{ value: ethForTeam } (""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{ value: address(this).balance } (""); } function withdrawStuckBB() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckBB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b5f6101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff0219169083151502179055506001601b5f6101000a81548160ff02191690831515021790555034801562000094575f80fd5b506040518060400160405280601181526020017f537472696b65202d204353323a205032450000000000000000000000000000008152506040518060400160405280600681526020017f535452494b450000000000000000000000000000000000000000000000000000815250816003908162000112919062000d90565b50806004908162000124919062000d90565b505050620001476200013b6200060460201b60201c565b6200060b60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000172816001620006ce60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000216919062000ed9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a2919062000ed9565b6040518363ffffffff1660e01b8152600401620002c192919062000f1a565b6020604051808303815f875af1158015620002de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000304919062000ed9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034c60a0516001620006ce60201b60201c565b6200036160a0516001620007b560201b60201c565b5f600390505f80600290505f600390505f80600290505f6a084595161401484a000000905069152d02c7e14af680000060088190555069152d02c7e14af6800000600a819055506103e8600582620003ba919062000f72565b620003c6919062000fe9565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e54620003f6919062001020565b62000402919062001020565b600d8190555083601281905550826013819055508160148190555060145460135460125462000432919062001020565b6200043e919062001020565b60118190555073c7fb27a4dc2363c07ac261db6661f279c142c86360065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738748269f2335dcdfd6fdfa00d3b7e4bd2e67e84c60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050e620005006200085360201b60201c565b60016200087b60201b60201c565b620005213060016200087b60201b60201c565b6200053661dead60016200087b60201b60201c565b620005586200054a6200085360201b60201c565b6001620006ce60201b60201c565b6200056b306001620006ce60201b60201c565b6200058061dead6001620006ce60201b60201c565b6001601c5f620005956200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005f63382620009b260201b60201c565b5050505050505050620011a9565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006de6200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007046200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200075d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075490620010b8565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200088b6200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b16200085360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200090a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090190620010b8565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009a69190620010f4565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1a906200115d565b60405180910390fd5b62000a365f838362000b2260201b60201c565b8060025f82825462000a49919062001020565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a9d919062001020565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b0391906200118e565b60405180910390a362000b1e5f838362000b2760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ba857607f821691505b60208210810362000bbe5762000bbd62000b63565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000be5565b62000c2e868362000be5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c7862000c7262000c6c8462000c46565b62000c4f565b62000c46565b9050919050565b5f819050919050565b62000c938362000c58565b62000cab62000ca28262000c7f565b84845462000bf1565b825550505050565b5f90565b62000cc162000cb3565b62000cce81848462000c88565b505050565b5b8181101562000cf55762000ce95f8262000cb7565b60018101905062000cd4565b5050565b601f82111562000d445762000d0e8162000bc4565b62000d198462000bd6565b8101602085101562000d29578190505b62000d4162000d388562000bd6565b83018262000cd3565b50505b505050565b5f82821c905092915050565b5f62000d665f198460080262000d49565b1980831691505092915050565b5f62000d80838362000d55565b9150826002028217905092915050565b62000d9b8262000b2c565b67ffffffffffffffff81111562000db75762000db662000b36565b5b62000dc3825462000b90565b62000dd082828562000cf9565b5f60209050601f83116001811462000e06575f841562000df1578287015190505b62000dfd858262000d73565b86555062000e6c565b601f19841662000e168662000bc4565b5f5b8281101562000e3f5784890151825560018201915060208501945060208101905062000e18565b8683101562000e5f578489015162000e5b601f89168262000d55565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ea38262000e78565b9050919050565b62000eb58162000e97565b811462000ec0575f80fd5b50565b5f8151905062000ed38162000eaa565b92915050565b5f6020828403121562000ef15762000ef062000e74565b5b5f62000f008482850162000ec3565b91505092915050565b62000f148162000e97565b82525050565b5f60408201905062000f2f5f83018562000f09565b62000f3e602083018462000f09565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f7e8262000c46565b915062000f8b8362000c46565b925082820262000f9b8162000c46565b9150828204841483151762000fb55762000fb462000f45565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ff58262000c46565b9150620010028362000c46565b92508262001015576200101462000fbc565b5b828204905092915050565b5f6200102c8262000c46565b9150620010398362000c46565b925082820190508082111562001054576200105362000f45565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620010a06020836200105a565b9150620010ad826200106a565b602082019050919050565b5f6020820190508181035f830152620010d18162001092565b9050919050565b5f8115159050919050565b620010ee81620010d8565b82525050565b5f602082019050620011095f830184620010e3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001145601f836200105a565b915062001152826200110f565b602082019050919050565b5f6020820190508181035f830152620011768162001137565b9050919050565b620011888162000c46565b82525050565b5f602082019050620011a35f8301846200117d565b92915050565b60805160a051615e8c620012035f395f81816112b501528181611ee401528181612aa30152612db001525f8181610fad01528181614502015281816145e1015281816146080152818161469e01526146c50152615e8c5ff3fe6080604052600436106103c6575f3560e01c80638095d564116101f1578063c17b5b8c1161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c17b5b8c14610bfd578063c18bc19514610c25578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a457c2d711610184578063b62496f511610153578063b62496f514610b47578063bbc0c74214610b83578063bc205ad314610bad578063c024666814610bd5576103cd565b8063a457c2d714610a7f578063a9059cbb14610abb578063aa0e438814610af7578063adee28ff14610b1f576103cd565b8063924de9b7116101c0578063924de9b7146109db57806395d89b4114610a035780639a7a23d614610a2d5780639c2e4ac614610a55576103cd565b80638095d5641461095d5780638a8c523c146109855780638cf3b4ce1461099b5780638da5cb5b146109b1576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614800565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b1565b610f59565b60405161042e9190614909565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b6040516104589190614909565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614922565b610f88565b6040516104949190614909565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495c565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d0565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495c565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495c565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495c565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149e9565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a14565b6110f3565b6040516105ca9190614909565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495c565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a73565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa7565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b1565b6111f9565b6040516106849190614909565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae9190614909565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a73565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b6040516107029190614909565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614922565b6112e9565b60405161073e9190614909565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614922565b611306565b60405161077a9190614909565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a73565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495c565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e9190614909565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614922565b61142f565b60405161084a919061495c565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a9190614909565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aea565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614922565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a73565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614922565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614922565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b28565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b005b3480156109bc575f80fd5b506109c5611d15565b6040516109d29190614a73565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc9190614b78565b611d3d565b005b348015610a0e575f80fd5b50610a17611dd6565b604051610a249190614800565b60405180910390f35b348015610a38575f80fd5b50610a536004803603810190610a4e9190614aea565b611e66565b005b348015610a60575f80fd5b50610a69611f7e565b604051610a76919061495c565b60405180910390f35b348015610a8a575f80fd5b50610aa56004803603810190610aa091906148b1565b611f84565b604051610ab29190614909565b60405180910390f35b348015610ac6575f80fd5b50610ae16004803603810190610adc91906148b1565b61206a565b604051610aee9190614909565b60405180910390f35b348015610b02575f80fd5b50610b1d6004803603810190610b189190614aea565b612087565b005b348015610b2a575f80fd5b50610b456004803603810190610b409190614922565b61216f565b005b348015610b52575f80fd5b50610b6d6004803603810190610b689190614922565b6122a9565b604051610b7a9190614909565b60405180910390f35b348015610b8e575f80fd5b50610b976122c6565b604051610ba49190614909565b60405180910390f35b348015610bb8575f80fd5b50610bd36004803603810190610bce9190614ba3565b6122d9565b005b348015610be0575f80fd5b50610bfb6004803603810190610bf69190614aea565b6124bf565b005b348015610c08575f80fd5b50610c236004803603810190610c1e9190614b28565b6125e1565b005b348015610c30575f80fd5b50610c4b6004803603810190610c4691906149e9565b6126e0565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495c565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149e9565b6127f5565b604051610caa9190614909565b60405180910390f35b348015610cbe575f80fd5b50610cc7612947565b604051610cd4919061495c565b60405180910390f35b348015610ce8575f80fd5b50610cf161294d565b604051610cfe919061495c565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba3565b612953565b604051610d3a919061495c565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614922565b6129d5565b005b348015610d76575f80fd5b50610d7f612bd4565b604051610d8c919061495c565b60405180910390f35b348015610da0575f80fd5b50610da9612bda565b604051610db6919061495c565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614922565b612be0565b005b348015610df2575f80fd5b50610dfb612cd6565b604051610e08919061495c565b60405180910390f35b348015610e1c575f80fd5b50610e25612cdc565b604051610e32919061495c565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614922565b612ce2565b005b348015610e6e575f80fd5b50610e77612ee1565b604051610e84919061495c565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614922565b612ee7565b604051610ec09190614909565b60405180910390f35b606060038054610ed890614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c0e565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f39565b8484612f40565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60125481565b60165481565b610fec612f39565b73ffffffffffffffffffffffffffffffffffffffff1661100a611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c88565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd3565b61108a9190614d41565b6110949190614d41565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de1565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd3565b60088190555050565b5f6110ff848484613103565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e6f565b60405180910390fd5b6111d9856111d1612f39565b858403612f40565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f39565b848460015f611212612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8d565b612f40565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f39565b73ffffffffffffffffffffffffffffffffffffffff166113a3611d15565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c88565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661149a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c88565b60405180910390fd5b6114f95f613d45565b565b5f611504612f39565b73ffffffffffffffffffffffffffffffffffffffff16611522611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c88565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f39565b73ffffffffffffffffffffffffffffffffffffffff166115be611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c88565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f39565b73ffffffffffffffffffffffffffffffffffffffff16611692611d15565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c88565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661178a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c88565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eed565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f39565b73ffffffffffffffffffffffffffffffffffffffff1661187b611d15565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c88565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f39565b73ffffffffffffffffffffffffffffffffffffffff166119b5611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c88565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8d565b611a3d9190614e8d565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4b565b60405180910390fd5b505050565b611a96612f39565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c88565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b611b63612f39565b73ffffffffffffffffffffffffffffffffffffffff16611b81611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614c88565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c119190614a73565b602060405180830381865afa158015611c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c509190614f7d565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611c8d929190614fa8565b6020604051808303815f875af1158015611ca9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccd9190614fe3565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611d11573d5f803e3d5ffd5b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d45612f39565b73ffffffffffffffffffffffffffffffffffffffff16611d63611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090614c88565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611de590614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1190614c0e565b8015611e5c5780601f10611e3357610100808354040283529160200191611e5c565b820191905f5260205f20905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b611e6e612f39565b73ffffffffffffffffffffffffffffffffffffffff16611e8c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990614c88565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061507e565b60405180910390fd5b611f7a8282613e08565b5050565b60105481565b5f8060015f611f91612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561204b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120429061510c565b60405180910390fd5b61205f612056612f39565b85858403612f40565b600191505092915050565b5f61207d612076612f39565b8484613103565b6001905092915050565b61208f612f39565b73ffffffffffffffffffffffffffffffffffffffff166120ad611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614c88565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061216182826124bf565b61216b8282611598565b5050565b612177612f39565b73ffffffffffffffffffffffffffffffffffffffff16612195611d15565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614c88565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122e1612f39565b73ffffffffffffffffffffffffffffffffffffffff166122ff611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90615174565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123fd9190614a73565b602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c9190614f7d565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612479929190614fa8565b6020604051808303815f875af1158015612495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b99190614fe3565b50505050565b6124c7612f39565b73ffffffffffffffffffffffffffffffffffffffff166124e5611d15565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614c88565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125d59190614909565b60405180910390a25050565b6125e9612f39565b73ffffffffffffffffffffffffffffffffffffffff16612607611d15565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614c88565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126859190614e8d565b61268f9190614e8d565b601181905550600560115411156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151dc565b60405180910390fd5b505050565b6126e8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612706611d15565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614c88565b60405180910390fd5b670de0b6b3a76400006103e8600a612772610fcf565b61277c9190614cd3565b6127869190614d41565b6127909190614d41565b8110156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c99061526a565b60405180910390fd5b670de0b6b3a7640000816127e69190614cd3565b600a8190555050565b60085481565b5f6127fe612f39565b73ffffffffffffffffffffffffffffffffffffffff1661281c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c88565b60405180910390fd5b612710600161287f610fcf565b6128899190614cd3565b6128939190614d41565b8210156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc906152f8565b60405180910390fd5b606460056128e1610fcf565b6128eb9190614cd3565b6128f59190614d41565b821115612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90615386565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129dd612f39565b73ffffffffffffffffffffffffffffffffffffffff166129fb611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9890615414565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3d5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b73906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612be8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612c06611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190615530565b60405180910390fd5b612cd381613d45565b50565b60135481565b600a5481565b612cea612f39565b73ffffffffffffffffffffffffffffffffffffffff16612d08611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da590615414565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4a5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e80906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa5906155be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130139061564c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f6919061495c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613168906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d690615768565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615613269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613260906157d0565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ea90615838565b60405180910390fd5b601b5f9054906101000a900460ff161561339157601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613387906158c6565b60405180910390fd5b5b5f81036133a8576133a383835f613ea6565b613d40565b600b5f9054906101000a900460ff161561388c576133c4611d15565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134325750613402611d15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346a57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bd5750600560149054906101000a900460ff16155b1561388b57600b60019054906101000a900460ff166135b15760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613571575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a79061592e565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561364e575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f557600854811115613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f906159bc565b60405180910390fd5b600a546136a48361142f565b826136af9190614e8d565b11156136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790615a24565b60405180910390fd5b61388a565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613792575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e1576008548111156137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390615ab2565b60405180910390fd5b613889565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388857600a5461383b8361142f565b826138469190614e8d565b1115613887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387e90615a24565b60405180910390fd5b5b5b5b5b5b5f6138963061142f565b90505f60095482101590508080156138ba5750600b60029054906101000a900460ff165b80156138d35750600560149054906101000a900460ff16155b80156139265750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613979575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139cc575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a0f576001600560146101000a81548160ff0219169083151502179055506139f461411b565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613abe575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac7575f90505b5f8115613d3057601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2557505f601154115b15613bef57613b526064613b446011548861441c90919063ffffffff16565b61443190919063ffffffff16565b905060115460135482613b659190614cd3565b613b6f9190614d41565b60165f828254613b7f9190614e8d565b9250508190555060115460145482613b979190614cd3565b613ba19190614d41565b60175f828254613bb19190614e8d565b9250508190555060115460125482613bc99190614cd3565b613bd39190614d41565b60155f828254613be39190614e8d565b92505081905550613d0d565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4657505f600d54115b15613d0c57613c736064613c65600d548861441c90919063ffffffff16565b61443190919063ffffffff16565b9050600d54600f5482613c869190614cd3565b613c909190614d41565b60165f828254613ca09190614e8d565b92505081905550600d5460105482613cb89190614cd3565b613cc29190614d41565b60175f828254613cd29190614e8d565b92505081905550600d54600e5482613cea9190614cd3565b613cf49190614d41565b60155f828254613d049190614e8d565b925050819055505b5b5f811115613d2157613d20873083613ea6565b5b8085613d2d9190615ad0565b94505b613d3b878787613ea6565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0b906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7990615768565b60405180910390fd5b613f8d838383614446565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400790615b73565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461409e9190614e8d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614102919061495c565b60405180910390a361411584848461444b565b50505050565b5f6141253061142f565b90505f60175460155460165461413b9190614e8d565b6141459190614e8d565b90505f8083148061415557505f82145b156141625750505061441a565b60146009546141719190614cd3565b83111561418a5760146009546141879190614cd3565b92505b5f6002836016548661419c9190614cd3565b6141a69190614d41565b6141b09190614d41565b90505f6141c6828661445090919063ffffffff16565b90505f4790506141d582614465565b5f6141e9824761445090919063ffffffff16565b90505f61422c60026016546141fe9190614d41565b886142099190615ad0565b61421e6015548561441c90919063ffffffff16565b61443190919063ffffffff16565b90505f61426f60026016546142419190614d41565b8961424c9190615ad0565b6142616017548661441c90919063ffffffff16565b61443190919063ffffffff16565b90505f81838561427f9190615ad0565b6142899190615ad0565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e590614eed565b5f6040518083038185875af1925050503d805f811461431f576040519150601f19603f3d011682016040523d82523d5f602084013e614324565b606091505b5050809850505f8711801561433857505f81115b15614385576143478782614698565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437c93929190615b91565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143ca90614eed565b5f6040518083038185875af1925050503d805f8114614404576040519150601f19603f3d011682016040523d82523d5f602084013e614409565b606091505b505080985050505050505050505050505b565b5f81836144299190614cd3565b905092915050565b5f818361443e9190614d41565b905092915050565b505050565b505050565b5f818361445d9190615ad0565b905092915050565b5f600267ffffffffffffffff81111561448157614480615bc6565b5b6040519080825280602002602001820160405280156144af5781602001602082028036833780820191505090505b50905030815f815181106144c6576144c5615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614569573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458d9190615c34565b816001815181106145a1576145a0615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614606307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614667959493929190615d4f565b5f604051808303815f87803b15801561467e575f80fd5b505af1158015614690573d5f803e3d5ffd5b505050505050565b6146c3307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470c611d15565b426040518863ffffffff1660e01b815260040161472e96959493929190615da7565b60606040518083038185885af115801561474a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061476f9190615e06565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147ad578082015181840152602081019050614792565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d282614776565b6147dc8185614780565b93506147ec818560208601614790565b6147f5816147b8565b840191505092915050565b5f6020820190508181035f83015261481881846147c8565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484d82614824565b9050919050565b61485d81614843565b8114614867575f80fd5b50565b5f8135905061487881614854565b92915050565b5f819050919050565b6148908161487e565b811461489a575f80fd5b50565b5f813590506148ab81614887565b92915050565b5f80604083850312156148c7576148c6614820565b5b5f6148d48582860161486a565b92505060206148e58582860161489d565b9150509250929050565b5f8115159050919050565b614903816148ef565b82525050565b5f60208201905061491c5f8301846148fa565b92915050565b5f6020828403121561493757614936614820565b5b5f6149448482850161486a565b91505092915050565b6149568161487e565b82525050565b5f60208201905061496f5f83018461494d565b92915050565b5f819050919050565b5f61499861499361498e84614824565b614975565b614824565b9050919050565b5f6149a98261497e565b9050919050565b5f6149ba8261499f565b9050919050565b6149ca816149b0565b82525050565b5f6020820190506149e35f8301846149c1565b92915050565b5f602082840312156149fe576149fd614820565b5b5f614a0b8482850161489d565b91505092915050565b5f805f60608486031215614a2b57614a2a614820565b5b5f614a388682870161486a565b9350506020614a498682870161486a565b9250506040614a5a8682870161489d565b9150509250925092565b614a6d81614843565b82525050565b5f602082019050614a865f830184614a64565b92915050565b5f60ff82169050919050565b614aa181614a8c565b82525050565b5f602082019050614aba5f830184614a98565b92915050565b614ac9816148ef565b8114614ad3575f80fd5b50565b5f81359050614ae481614ac0565b92915050565b5f8060408385031215614b0057614aff614820565b5b5f614b0d8582860161486a565b9250506020614b1e85828601614ad6565b9150509250929050565b5f805f60608486031215614b3f57614b3e614820565b5b5f614b4c8682870161489d565b9350506020614b5d8682870161489d565b9250506040614b6e8682870161489d565b9150509250925092565b5f60208284031215614b8d57614b8c614820565b5b5f614b9a84828501614ad6565b91505092915050565b5f8060408385031215614bb957614bb8614820565b5b5f614bc68582860161486a565b9250506020614bd78582860161486a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2557607f821691505b602082108103614c3857614c37614be1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c72602083614780565b9150614c7d82614c3e565b602082019050919050565b5f6020820190508181035f830152614c9f81614c66565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdd8261487e565b9150614ce88361487e565b9250828202614cf68161487e565b91508282048414831517614d0d57614d0c614ca6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4b8261487e565b9150614d568361487e565b925082614d6657614d65614d14565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcb602f83614780565b9150614dd682614d71565b604082019050919050565b5f6020820190508181035f830152614df881614dbf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e59602883614780565b9150614e6482614dff565b604082019050919050565b5f6020820190508181035f830152614e8681614e4d565b9050919050565b5f614e978261487e565b9150614ea28361487e565b9250828201905080821115614eba57614eb9614ca6565b5b92915050565b5f81905092915050565b50565b5f614ed85f83614ec0565b9150614ee382614eca565b5f82019050919050565b5f614ef782614ecd565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f35601683614780565b9150614f4082614f01565b602082019050919050565b5f6020820190508181035f830152614f6281614f29565b9050919050565b5f81519050614f7781614887565b92915050565b5f60208284031215614f9257614f91614820565b5b5f614f9f84828501614f69565b91505092915050565b5f604082019050614fbb5f830185614a64565b614fc8602083018461494d565b9392505050565b5f81519050614fdd81614ac0565b92915050565b5f60208284031215614ff857614ff7614820565b5b5f61500584828501614fcf565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f615068603983614780565b91506150738261500e565b604082019050919050565b5f6020820190508181035f8301526150958161505c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6150f6602583614780565b91506151018261509c565b604082019050919050565b5f6020820190508181035f830152615123816150ea565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61515e601a83614780565b91506151698261512a565b602082019050919050565b5f6020820190508181035f83015261518b81615152565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c6601783614780565b91506151d182615192565b602082019050919050565b5f6020820190508181035f8301526151f3816151ba565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615254602483614780565b915061525f826151fa565b604082019050919050565b5f6020820190508181035f83015261528181615248565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e2603583614780565b91506152ed82615288565b604082019050919050565b5f6020820190508181035f83015261530f816152d6565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615370603483614780565b915061537b82615316565b604082019050919050565b5f6020820190508181035f83015261539d81615364565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6153fe602183614780565b9150615409826153a4565b604082019050919050565b5f6020820190508181035f83015261542b816153f2565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548c602e83614780565b915061549782615432565b604082019050919050565b5f6020820190508181035f8301526154b981615480565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551a602683614780565b9150615525826154c0565b604082019050919050565b5f6020820190508181035f8301526155478161550e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155a8602483614780565b91506155b38261554e565b604082019050919050565b5f6020820190508181035f8301526155d58161559c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615636602283614780565b9150615641826155dc565b604082019050919050565b5f6020820190508181035f8301526156638161562a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c4602583614780565b91506156cf8261566a565b604082019050919050565b5f6020820190508181035f8301526156f1816156b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615752602383614780565b915061575d826156f8565b604082019050919050565b5f6020820190508181035f83015261577f81615746565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157ba601283614780565b91506157c582615786565b602082019050919050565b5f6020820190508181035f8301526157e7816157ae565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615822601483614780565b915061582d826157ee565b602082019050919050565b5f6020820190508181035f83015261584f81615816565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b0602983614780565b91506158bb82615856565b604082019050919050565b5f6020820190508181035f8301526158dd816158a4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615918601683614780565b9150615923826158e4565b602082019050919050565b5f6020820190508181035f8301526159458161590c565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a6603583614780565b91506159b18261594c565b604082019050919050565b5f6020820190508181035f8301526159d38161599a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a0e601383614780565b9150615a19826159da565b602082019050919050565b5f6020820190508181035f830152615a3b81615a02565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9c603683614780565b9150615aa782615a42565b604082019050919050565b5f6020820190508181035f830152615ac981615a90565b9050919050565b5f615ada8261487e565b9150615ae58361487e565b9250828203905081811115615afd57615afc614ca6565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5d602683614780565b9150615b6882615b03565b604082019050919050565b5f6020820190508181035f830152615b8a81615b51565b9050919050565b5f606082019050615ba45f83018661494d565b615bb1602083018561494d565b615bbe604083018461494d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c2e81614854565b92915050565b5f60208284031215615c4957615c48614820565b5b5f615c5684828501615c20565b91505092915050565b5f819050919050565b5f615c82615c7d615c7884615c5f565b614975565b61487e565b9050919050565b615c9281615c68565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615cca81614843565b82525050565b5f615cdb8383615cc1565b60208301905092915050565b5f602082019050919050565b5f615cfd82615c98565b615d078185615ca2565b9350615d1283615cb2565b805f5b83811015615d42578151615d298882615cd0565b9750615d3483615ce7565b925050600181019050615d15565b5085935050505092915050565b5f60a082019050615d625f83018861494d565b615d6f6020830187615c89565b8181036040830152615d818186615cf3565b9050615d906060830185614a64565b615d9d608083018461494d565b9695505050505050565b5f60c082019050615dba5f830189614a64565b615dc7602083018861494d565b615dd46040830187615c89565b615de16060830186615c89565b615dee6080830185614a64565b615dfb60a083018461494d565b979650505050505050565b5f805f60608486031215615e1d57615e1c614820565b5b5f615e2a86828701614f69565b9350506020615e3b86828701614f69565b9250506040615e4c86828701614f69565b915050925092509256fea2646970667358221220b574bbd79708909efd1c2c377f357eb74fb3296791fda9c0f33ee475b789fbe464736f6c63430008140033
Deployed Bytecode
0x6080604052600436106103c6575f3560e01c80638095d564116101f1578063c17b5b8c1161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c17b5b8c14610bfd578063c18bc19514610c25578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a457c2d711610184578063b62496f511610153578063b62496f514610b47578063bbc0c74214610b83578063bc205ad314610bad578063c024666814610bd5576103cd565b8063a457c2d714610a7f578063a9059cbb14610abb578063aa0e438814610af7578063adee28ff14610b1f576103cd565b8063924de9b7116101c0578063924de9b7146109db57806395d89b4114610a035780639a7a23d614610a2d5780639c2e4ac614610a55576103cd565b80638095d5641461095d5780638a8c523c146109855780638cf3b4ce1461099b5780638da5cb5b146109b1576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614800565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b1565b610f59565b60405161042e9190614909565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b6040516104589190614909565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614922565b610f88565b6040516104949190614909565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495c565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d0565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495c565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495c565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495c565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149e9565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a14565b6110f3565b6040516105ca9190614909565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495c565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a73565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa7565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b1565b6111f9565b6040516106849190614909565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae9190614909565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a73565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b6040516107029190614909565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614922565b6112e9565b60405161073e9190614909565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614922565b611306565b60405161077a9190614909565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a73565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495c565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e9190614909565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614922565b61142f565b60405161084a919061495c565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a9190614909565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aea565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614922565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a73565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614922565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614922565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b28565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b005b3480156109bc575f80fd5b506109c5611d15565b6040516109d29190614a73565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc9190614b78565b611d3d565b005b348015610a0e575f80fd5b50610a17611dd6565b604051610a249190614800565b60405180910390f35b348015610a38575f80fd5b50610a536004803603810190610a4e9190614aea565b611e66565b005b348015610a60575f80fd5b50610a69611f7e565b604051610a76919061495c565b60405180910390f35b348015610a8a575f80fd5b50610aa56004803603810190610aa091906148b1565b611f84565b604051610ab29190614909565b60405180910390f35b348015610ac6575f80fd5b50610ae16004803603810190610adc91906148b1565b61206a565b604051610aee9190614909565b60405180910390f35b348015610b02575f80fd5b50610b1d6004803603810190610b189190614aea565b612087565b005b348015610b2a575f80fd5b50610b456004803603810190610b409190614922565b61216f565b005b348015610b52575f80fd5b50610b6d6004803603810190610b689190614922565b6122a9565b604051610b7a9190614909565b60405180910390f35b348015610b8e575f80fd5b50610b976122c6565b604051610ba49190614909565b60405180910390f35b348015610bb8575f80fd5b50610bd36004803603810190610bce9190614ba3565b6122d9565b005b348015610be0575f80fd5b50610bfb6004803603810190610bf69190614aea565b6124bf565b005b348015610c08575f80fd5b50610c236004803603810190610c1e9190614b28565b6125e1565b005b348015610c30575f80fd5b50610c4b6004803603810190610c4691906149e9565b6126e0565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495c565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149e9565b6127f5565b604051610caa9190614909565b60405180910390f35b348015610cbe575f80fd5b50610cc7612947565b604051610cd4919061495c565b60405180910390f35b348015610ce8575f80fd5b50610cf161294d565b604051610cfe919061495c565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba3565b612953565b604051610d3a919061495c565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614922565b6129d5565b005b348015610d76575f80fd5b50610d7f612bd4565b604051610d8c919061495c565b60405180910390f35b348015610da0575f80fd5b50610da9612bda565b604051610db6919061495c565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614922565b612be0565b005b348015610df2575f80fd5b50610dfb612cd6565b604051610e08919061495c565b60405180910390f35b348015610e1c575f80fd5b50610e25612cdc565b604051610e32919061495c565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614922565b612ce2565b005b348015610e6e575f80fd5b50610e77612ee1565b604051610e84919061495c565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614922565b612ee7565b604051610ec09190614909565b60405180910390f35b606060038054610ed890614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c0e565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f39565b8484612f40565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60125481565b60165481565b610fec612f39565b73ffffffffffffffffffffffffffffffffffffffff1661100a611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c88565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd3565b61108a9190614d41565b6110949190614d41565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de1565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd3565b60088190555050565b5f6110ff848484613103565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e6f565b60405180910390fd5b6111d9856111d1612f39565b858403612f40565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f39565b848460015f611212612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8d565b612f40565b6001905092915050565b600b60039054906101000a900460ff1681565b7f00000000000000000000000069b17340de58b8208b6ed1f799d74fd706be1f7481565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f39565b73ffffffffffffffffffffffffffffffffffffffff166113a3611d15565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c88565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661149a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c88565b60405180910390fd5b6114f95f613d45565b565b5f611504612f39565b73ffffffffffffffffffffffffffffffffffffffff16611522611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c88565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f39565b73ffffffffffffffffffffffffffffffffffffffff166115be611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c88565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f39565b73ffffffffffffffffffffffffffffffffffffffff16611692611d15565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c88565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f39565b73ffffffffffffffffffffffffffffffffffffffff1661178a611d15565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c88565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eed565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f39565b73ffffffffffffffffffffffffffffffffffffffff1661187b611d15565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c88565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f39565b73ffffffffffffffffffffffffffffffffffffffff166119b5611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c88565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8d565b611a3d9190614e8d565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4b565b60405180910390fd5b505050565b611a96612f39565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c88565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b611b63612f39565b73ffffffffffffffffffffffffffffffffffffffff16611b81611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614c88565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c119190614a73565b602060405180830381865afa158015611c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c509190614f7d565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611c8d929190614fa8565b6020604051808303815f875af1158015611ca9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccd9190614fe3565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611d11573d5f803e3d5ffd5b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d45612f39565b73ffffffffffffffffffffffffffffffffffffffff16611d63611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090614c88565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611de590614c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1190614c0e565b8015611e5c5780601f10611e3357610100808354040283529160200191611e5c565b820191905f5260205f20905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b611e6e612f39565b73ffffffffffffffffffffffffffffffffffffffff16611e8c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990614c88565b60405180910390fd5b7f00000000000000000000000069b17340de58b8208b6ed1f799d74fd706be1f7473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061507e565b60405180910390fd5b611f7a8282613e08565b5050565b60105481565b5f8060015f611f91612f39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561204b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120429061510c565b60405180910390fd5b61205f612056612f39565b85858403612f40565b600191505092915050565b5f61207d612076612f39565b8484613103565b6001905092915050565b61208f612f39565b73ffffffffffffffffffffffffffffffffffffffff166120ad611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614c88565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061216182826124bf565b61216b8282611598565b5050565b612177612f39565b73ffffffffffffffffffffffffffffffffffffffff16612195611d15565b73ffffffffffffffffffffffffffffffffffffffff16146121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614c88565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122e1612f39565b73ffffffffffffffffffffffffffffffffffffffff166122ff611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90615174565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123fd9190614a73565b602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c9190614f7d565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612479929190614fa8565b6020604051808303815f875af1158015612495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b99190614fe3565b50505050565b6124c7612f39565b73ffffffffffffffffffffffffffffffffffffffff166124e5611d15565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614c88565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125d59190614909565b60405180910390a25050565b6125e9612f39565b73ffffffffffffffffffffffffffffffffffffffff16612607611d15565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614c88565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126859190614e8d565b61268f9190614e8d565b601181905550600560115411156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151dc565b60405180910390fd5b505050565b6126e8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612706611d15565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614c88565b60405180910390fd5b670de0b6b3a76400006103e8600a612772610fcf565b61277c9190614cd3565b6127869190614d41565b6127909190614d41565b8110156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c99061526a565b60405180910390fd5b670de0b6b3a7640000816127e69190614cd3565b600a8190555050565b60085481565b5f6127fe612f39565b73ffffffffffffffffffffffffffffffffffffffff1661281c611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c88565b60405180910390fd5b612710600161287f610fcf565b6128899190614cd3565b6128939190614d41565b8210156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc906152f8565b60405180910390fd5b606460056128e1610fcf565b6128eb9190614cd3565b6128f59190614d41565b821115612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90615386565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129dd612f39565b73ffffffffffffffffffffffffffffffffffffffff166129fb611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9890615414565b60405180910390fd5b7f00000000000000000000000069b17340de58b8208b6ed1f799d74fd706be1f7473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3d5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b73906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612be8612f39565b73ffffffffffffffffffffffffffffffffffffffff16612c06611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614c88565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190615530565b60405180910390fd5b612cd381613d45565b50565b60135481565b600a5481565b612cea612f39565b73ffffffffffffffffffffffffffffffffffffffff16612d08611d15565b73ffffffffffffffffffffffffffffffffffffffff1614612d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5590614c88565b60405180910390fd5b600b60039054906101000a900460ff1615612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da590615414565b60405180910390fd5b7f00000000000000000000000069b17340de58b8208b6ed1f799d74fd706be1f7473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4a5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e80906154a2565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa5906155be565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130139061564c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f6919061495c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613168906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d690615768565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615613269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613260906157d0565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ea90615838565b60405180910390fd5b601b5f9054906101000a900460ff161561339157601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613387906158c6565b60405180910390fd5b5b5f81036133a8576133a383835f613ea6565b613d40565b600b5f9054906101000a900460ff161561388c576133c4611d15565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134325750613402611d15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346a57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bd5750600560149054906101000a900460ff16155b1561388b57600b60019054906101000a900460ff166135b15760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613571575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a79061592e565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561364e575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f557600854811115613698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368f906159bc565b60405180910390fd5b600a546136a48361142f565b826136af9190614e8d565b11156136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790615a24565b60405180910390fd5b61388a565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613792575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e1576008548111156137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390615ab2565b60405180910390fd5b613889565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388857600a5461383b8361142f565b826138469190614e8d565b1115613887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387e90615a24565b60405180910390fd5b5b5b5b5b5b5f6138963061142f565b90505f60095482101590508080156138ba5750600b60029054906101000a900460ff165b80156138d35750600560149054906101000a900460ff16155b80156139265750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613979575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139cc575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a0f576001600560146101000a81548160ff0219169083151502179055506139f461411b565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613abe575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac7575f90505b5f8115613d3057601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2557505f601154115b15613bef57613b526064613b446011548861441c90919063ffffffff16565b61443190919063ffffffff16565b905060115460135482613b659190614cd3565b613b6f9190614d41565b60165f828254613b7f9190614e8d565b9250508190555060115460145482613b979190614cd3565b613ba19190614d41565b60175f828254613bb19190614e8d565b9250508190555060115460125482613bc99190614cd3565b613bd39190614d41565b60155f828254613be39190614e8d565b92505081905550613d0d565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4657505f600d54115b15613d0c57613c736064613c65600d548861441c90919063ffffffff16565b61443190919063ffffffff16565b9050600d54600f5482613c869190614cd3565b613c909190614d41565b60165f828254613ca09190614e8d565b92505081905550600d5460105482613cb89190614cd3565b613cc29190614d41565b60175f828254613cd29190614e8d565b92505081905550600d54600e5482613cea9190614cd3565b613cf49190614d41565b60155f828254613d049190614e8d565b925050819055505b5b5f811115613d2157613d20873083613ea6565b5b8085613d2d9190615ad0565b94505b613d3b878787613ea6565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0b906156da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7990615768565b60405180910390fd5b613f8d838383614446565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400790615b73565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461409e9190614e8d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614102919061495c565b60405180910390a361411584848461444b565b50505050565b5f6141253061142f565b90505f60175460155460165461413b9190614e8d565b6141459190614e8d565b90505f8083148061415557505f82145b156141625750505061441a565b60146009546141719190614cd3565b83111561418a5760146009546141879190614cd3565b92505b5f6002836016548661419c9190614cd3565b6141a69190614d41565b6141b09190614d41565b90505f6141c6828661445090919063ffffffff16565b90505f4790506141d582614465565b5f6141e9824761445090919063ffffffff16565b90505f61422c60026016546141fe9190614d41565b886142099190615ad0565b61421e6015548561441c90919063ffffffff16565b61443190919063ffffffff16565b90505f61426f60026016546142419190614d41565b8961424c9190615ad0565b6142616017548661441c90919063ffffffff16565b61443190919063ffffffff16565b90505f81838561427f9190615ad0565b6142899190615ad0565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e590614eed565b5f6040518083038185875af1925050503d805f811461431f576040519150601f19603f3d011682016040523d82523d5f602084013e614324565b606091505b5050809850505f8711801561433857505f81115b15614385576143478782614698565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437c93929190615b91565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143ca90614eed565b5f6040518083038185875af1925050503d805f8114614404576040519150601f19603f3d011682016040523d82523d5f602084013e614409565b606091505b505080985050505050505050505050505b565b5f81836144299190614cd3565b905092915050565b5f818361443e9190614d41565b905092915050565b505050565b505050565b5f818361445d9190615ad0565b905092915050565b5f600267ffffffffffffffff81111561448157614480615bc6565b5b6040519080825280602002602001820160405280156144af5781602001602082028036833780820191505090505b50905030815f815181106144c6576144c5615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614569573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458d9190615c34565b816001815181106145a1576145a0615bf3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614606307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f40565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614667959493929190615d4f565b5f604051808303815f87803b15801561467e575f80fd5b505af1158015614690573d5f803e3d5ffd5b505050505050565b6146c3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f40565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470c611d15565b426040518863ffffffff1660e01b815260040161472e96959493929190615da7565b60606040518083038185885af115801561474a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061476f9190615e06565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147ad578082015181840152602081019050614792565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d282614776565b6147dc8185614780565b93506147ec818560208601614790565b6147f5816147b8565b840191505092915050565b5f6020820190508181035f83015261481881846147c8565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484d82614824565b9050919050565b61485d81614843565b8114614867575f80fd5b50565b5f8135905061487881614854565b92915050565b5f819050919050565b6148908161487e565b811461489a575f80fd5b50565b5f813590506148ab81614887565b92915050565b5f80604083850312156148c7576148c6614820565b5b5f6148d48582860161486a565b92505060206148e58582860161489d565b9150509250929050565b5f8115159050919050565b614903816148ef565b82525050565b5f60208201905061491c5f8301846148fa565b92915050565b5f6020828403121561493757614936614820565b5b5f6149448482850161486a565b91505092915050565b6149568161487e565b82525050565b5f60208201905061496f5f83018461494d565b92915050565b5f819050919050565b5f61499861499361498e84614824565b614975565b614824565b9050919050565b5f6149a98261497e565b9050919050565b5f6149ba8261499f565b9050919050565b6149ca816149b0565b82525050565b5f6020820190506149e35f8301846149c1565b92915050565b5f602082840312156149fe576149fd614820565b5b5f614a0b8482850161489d565b91505092915050565b5f805f60608486031215614a2b57614a2a614820565b5b5f614a388682870161486a565b9350506020614a498682870161486a565b9250506040614a5a8682870161489d565b9150509250925092565b614a6d81614843565b82525050565b5f602082019050614a865f830184614a64565b92915050565b5f60ff82169050919050565b614aa181614a8c565b82525050565b5f602082019050614aba5f830184614a98565b92915050565b614ac9816148ef565b8114614ad3575f80fd5b50565b5f81359050614ae481614ac0565b92915050565b5f8060408385031215614b0057614aff614820565b5b5f614b0d8582860161486a565b9250506020614b1e85828601614ad6565b9150509250929050565b5f805f60608486031215614b3f57614b3e614820565b5b5f614b4c8682870161489d565b9350506020614b5d8682870161489d565b9250506040614b6e8682870161489d565b9150509250925092565b5f60208284031215614b8d57614b8c614820565b5b5f614b9a84828501614ad6565b91505092915050565b5f8060408385031215614bb957614bb8614820565b5b5f614bc68582860161486a565b9250506020614bd78582860161486a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2557607f821691505b602082108103614c3857614c37614be1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c72602083614780565b9150614c7d82614c3e565b602082019050919050565b5f6020820190508181035f830152614c9f81614c66565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdd8261487e565b9150614ce88361487e565b9250828202614cf68161487e565b91508282048414831517614d0d57614d0c614ca6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4b8261487e565b9150614d568361487e565b925082614d6657614d65614d14565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcb602f83614780565b9150614dd682614d71565b604082019050919050565b5f6020820190508181035f830152614df881614dbf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e59602883614780565b9150614e6482614dff565b604082019050919050565b5f6020820190508181035f830152614e8681614e4d565b9050919050565b5f614e978261487e565b9150614ea28361487e565b9250828201905080821115614eba57614eb9614ca6565b5b92915050565b5f81905092915050565b50565b5f614ed85f83614ec0565b9150614ee382614eca565b5f82019050919050565b5f614ef782614ecd565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f35601683614780565b9150614f4082614f01565b602082019050919050565b5f6020820190508181035f830152614f6281614f29565b9050919050565b5f81519050614f7781614887565b92915050565b5f60208284031215614f9257614f91614820565b5b5f614f9f84828501614f69565b91505092915050565b5f604082019050614fbb5f830185614a64565b614fc8602083018461494d565b9392505050565b5f81519050614fdd81614ac0565b92915050565b5f60208284031215614ff857614ff7614820565b5b5f61500584828501614fcf565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f615068603983614780565b91506150738261500e565b604082019050919050565b5f6020820190508181035f8301526150958161505c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6150f6602583614780565b91506151018261509c565b604082019050919050565b5f6020820190508181035f830152615123816150ea565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61515e601a83614780565b91506151698261512a565b602082019050919050565b5f6020820190508181035f83015261518b81615152565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c6601783614780565b91506151d182615192565b602082019050919050565b5f6020820190508181035f8301526151f3816151ba565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615254602483614780565b915061525f826151fa565b604082019050919050565b5f6020820190508181035f83015261528181615248565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e2603583614780565b91506152ed82615288565b604082019050919050565b5f6020820190508181035f83015261530f816152d6565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615370603483614780565b915061537b82615316565b604082019050919050565b5f6020820190508181035f83015261539d81615364565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6153fe602183614780565b9150615409826153a4565b604082019050919050565b5f6020820190508181035f83015261542b816153f2565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548c602e83614780565b915061549782615432565b604082019050919050565b5f6020820190508181035f8301526154b981615480565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551a602683614780565b9150615525826154c0565b604082019050919050565b5f6020820190508181035f8301526155478161550e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155a8602483614780565b91506155b38261554e565b604082019050919050565b5f6020820190508181035f8301526155d58161559c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615636602283614780565b9150615641826155dc565b604082019050919050565b5f6020820190508181035f8301526156638161562a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c4602583614780565b91506156cf8261566a565b604082019050919050565b5f6020820190508181035f8301526156f1816156b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615752602383614780565b915061575d826156f8565b604082019050919050565b5f6020820190508181035f83015261577f81615746565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157ba601283614780565b91506157c582615786565b602082019050919050565b5f6020820190508181035f8301526157e7816157ae565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615822601483614780565b915061582d826157ee565b602082019050919050565b5f6020820190508181035f83015261584f81615816565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b0602983614780565b91506158bb82615856565b604082019050919050565b5f6020820190508181035f8301526158dd816158a4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615918601683614780565b9150615923826158e4565b602082019050919050565b5f6020820190508181035f8301526159458161590c565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a6603583614780565b91506159b18261594c565b604082019050919050565b5f6020820190508181035f8301526159d38161599a565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a0e601383614780565b9150615a19826159da565b602082019050919050565b5f6020820190508181035f830152615a3b81615a02565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9c603683614780565b9150615aa782615a42565b604082019050919050565b5f6020820190508181035f830152615ac981615a90565b9050919050565b5f615ada8261487e565b9150615ae58361487e565b9250828203905081811115615afd57615afc614ca6565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5d602683614780565b9150615b6882615b03565b604082019050919050565b5f6020820190508181035f830152615b8a81615b51565b9050919050565b5f606082019050615ba45f83018661494d565b615bb1602083018561494d565b615bbe604083018461494d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c2e81614854565b92915050565b5f60208284031215615c4957615c48614820565b5b5f615c5684828501615c20565b91505092915050565b5f819050919050565b5f615c82615c7d615c7884615c5f565b614975565b61487e565b9050919050565b615c9281615c68565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615cca81614843565b82525050565b5f615cdb8383615cc1565b60208301905092915050565b5f602082019050919050565b5f615cfd82615c98565b615d078185615ca2565b9350615d1283615cb2565b805f5b83811015615d42578151615d298882615cd0565b9750615d3483615ce7565b925050600181019050615d15565b5085935050505092915050565b5f60a082019050615d625f83018861494d565b615d6f6020830187615c89565b8181036040830152615d818186615cf3565b9050615d906060830185614a64565b615d9d608083018461494d565b9695505050505050565b5f60c082019050615dba5f830189614a64565b615dc7602083018861494d565b615dd46040830187615c89565b615de16060830186615c89565b615dee6080830185614a64565b615dfb60a083018461494d565b979650505050505050565b5f805f60608486031215615e1d57615e1c614820565b5b5f615e2a86828701614f69565b9350506020615e3b86828701614f69565b9250506040615e4c86828701614f69565b915050925092509256fea2646970667358221220b574bbd79708909efd1c2c377f357eb74fb3296791fda9c0f33ee475b789fbe464736f6c63430008140033
Deployed Bytecode Sourcemap
29963:17953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8664:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10824:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31517:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31230:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30722:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30043:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9781:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30864:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31013:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35474:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11474:491;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30974:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30146:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9624:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12374:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30541:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30423:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31560:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38273:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30274:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46440:90;;;;;;;;;;;;;:::i;:::-;;30829:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30502:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9951:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2386:103;;;;;;;;;;;;;:::i;:::-;;34794:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36026:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47549:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30238:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46190:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38104:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36389:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34594:148;;;;;;;;;;;;;:::i;:::-;;45633:253;;;;;;;;;;;;;:::i;:::-;;1736:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36281:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8882:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37395:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30795:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13091:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10290:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47655:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37895:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31451:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30463:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45894:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37205:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36792:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35759:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30308:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34984:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30939:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30688:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10527:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47014:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30350:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30758:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2644:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30901:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30390:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46538:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31053:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38406:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8664:99;8717:13;8750:5;8743:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8664:99;:::o;10824:168::-;10906:4;10923:39;10932:12;:10;:12::i;:::-;10946:7;10955:6;10923:8;:39::i;:::-;10980:4;10973:11;;10824:168;;;;:::o;31517:36::-;;;;;;;;;;;;;:::o;31230:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;30722:29::-;;;;:::o;30043:51::-;;;:::o;9781:107::-;9841:7;9868:12;;9861:19;;9781:107;:::o;30864:30::-;;;;:::o;31013:33::-;;;;:::o;35474:277::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35611:4:::1;35603;35598:1;35582:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35581:26;;;;:::i;:::-;35580:35;;;;:::i;:::-;35570:6;:45;;35548:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;35734:8;35724:6;:19;;;;:::i;:::-;35701:20;:42;;;;35474:277:::0;:::o;11474:491::-;11613:4;11630:36;11640:6;11648:9;11659:6;11630:9;:36::i;:::-;11679:24;11706:11;:19;11718:6;11706:19;;;;;;;;;;;;;;;:33;11726:12;:10;:12::i;:::-;11706:33;;;;;;;;;;;;;;;;11679:60;;11778:6;11758:16;:26;;11750:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11865:57;11874:6;11882:12;:10;:12::i;:::-;11915:6;11896:16;:25;11865:8;:57::i;:::-;11953:4;11946:11;;;11474:491;;;;;:::o;30974:32::-;;;;:::o;30146:53::-;30192:6;30146:53;:::o;9624:92::-;9681:5;9706:2;9699:9;;9624:92;:::o;12374:214::-;12461:4;12478:80;12487:12;:10;:12::i;:::-;12501:7;12547:10;12510:11;:25;12522:12;:10;:12::i;:::-;12510:25;;;;;;;;;;;;;;;:34;12536:7;12510:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12478:8;:80::i;:::-;12576:4;12569:11;;12374:214;;;;:::o;30541:38::-;;;;;;;;;;;;;:::o;30101:::-;;;:::o;30423:33::-;;;;;;;;;;;;;:::o;31560:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38273:125::-;38338:4;38362:19;:28;38382:7;38362:28;;;;;;;;;;;;;;;;;;;;;;;;;38355:35;;38273:125;;;:::o;30274:25::-;;;;;;;;;;;;;:::o;46440:90::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46518:4:::1;46497:18;;:25;;;;;;;;;;;;;;;;;;46440:90::o:0;30829:28::-;;;;:::o;30502:30::-;;;;;;;;;;;;;:::o;9951:126::-;10024:7;10051:9;:18;10061:7;10051:18;;;;;;;;;;;;;;;;10044:25;;9951:126;;;:::o;2386:103::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2451:30:::1;2478:1;2451:18;:30::i;:::-;2386:103::o:0;34794:120::-;34845:4;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34879:5:::1;34862:14;;:22;;;;;;;;;;;;;;;;;;34902:4;34895:11;;34794:120:::0;:::o;36026:159::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36173:4:::1;36131:31;:39;36163:6;36131:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36026:159:::0;;:::o;47549:98::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47634:5:::1;47613:11;:18;47625:5;47613:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;47549:98:::0;:::o;30238:29::-;;;;;;;;;;;;;:::o;46190:196::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46263:12:::1;46281:6;:11;;46314:21;46281:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46262:89;;;46370:7;46362:16;;;::::0;::::1;;46251:135;46190:196:::0;:::o;38104:161::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38213:10:::1;;;;;;;;;;;38184:40;;38202:9;38184:40;;;;;;;;;;;;38248:9;38235:10;;:22;;;;;;;;;;;;;;;;;;38104:161:::0;:::o;36389:395::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36556:12:::1;36539:14;:29;;;;36597:13;36579:15;:31;;;;36634:8;36621:10;:21;;;;36703:10;;36685:15;;36668:14;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;36653:12;:60;;;;36748:1;36732:12;;:17;;36724:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;36389:395:::0;;;:::o;34594:148::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34665:4:::1;34649:13;;:20;;;;;;;;;;;;;;;;;;34694:4;34680:11;;:18;;;;;;;;;;;;;;;;;;34729:5;34709:17;;:25;;;;;;;;;;;;;;;;;;34594:148::o:0;45633:253::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45690:15:::1;45723:4;45708:31;;;45748:4;45708:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45690:64;;45780:4;45765:30;;;45796:10;45808:7;45765:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45835:10;45827:28;;:51;45856:21;45827:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45679:207;45633:253::o:0;1736:86::-;1781:7;1808:6;;;;;;;;;;;1801:13;;1736:86;:::o;36281:100::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36366:7:::1;36352:11;;:21;;;;;;;;;;;;;;;;;;36281:100:::0;:::o;8882:103::-;8937:13;8970:7;8963:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8882:103;:::o;37395:296::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37531:13:::1;37523:21;;:4;:21;;::::0;37501:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37642:41;37671:4;37677:5;37642:28;:41::i;:::-;37395:296:::0;;:::o;30795:25::-;;;;:::o;13091:412::-;13183:4;13200:24;13227:11;:25;13239:12;:10;:12::i;:::-;13227:25;;;;;;;;;;;;;;;:34;13253:7;13227:34;;;;;;;;;;;;;;;;13200:61;;13300:15;13280:16;:35;;13272:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13393:67;13402:12;:10;:12::i;:::-;13416:7;13444:15;13425:16;:34;13393:8;:67::i;:::-;13491:4;13484:11;;;13091:412;;;;:::o;10290:174::-;10375:4;10392:42;10402:12;:10;:12::i;:::-;10416:9;10427:6;10392:9;:42::i;:::-;10452:4;10445:11;;10290:174;;;;:::o;47655:258::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47789:12:::1;47754:25;:32;47780:5;47754:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;47812:36;47828:5;47835:12;47812:15;:36::i;:::-;47859:46;47885:5;47892:12;47859:25;:46::i;:::-;47655:258:::0;;:::o;37895:201::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38028:14:::1;;;;;;;;;;;37987:56;;38009:17;37987:56;;;;;;;;;;;;38071:17;38054:14;;:34;;;;;;;;;;;;;;;;;;37895:201:::0;:::o;31451:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;30463:32::-;;;;;;;;;;;;;:::o;45894:288::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46007:1:::1;45989:20;;:6;:20;;::::0;45981:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46051:24;46085:6;46078:24;;;46111:4;46078:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46051:66;;46135:6;46128:23;;;46152:3;46157:16;46128:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45970:212;45894:288:::0;;:::o;37205:182::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37321:8:::1;37290:19;:28;37310:7;37290:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37361:7;37345:34;;;37370:8;37345:34;;;;;;:::i;:::-;;;;;;;;37205:182:::0;;:::o;36792:405::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36961:12:::1;36943:15;:30;;;;37003:13;36984:16;:32;;;;37041:8;37027:11;:22;;;;37113:11;;37094:16;;37076:15;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;37060:13;:64;;;;37160:1;37143:13;;:18;;37135:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;36792:405:::0;;;:::o;35759:259::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35900:4:::1;35892;35886:2;35870:13;:11;:13::i;:::-;:18;;;;:::i;:::-;35869:27;;;;:::i;:::-;35868:36;;;;:::i;:::-;35858:6;:46;;35836:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;36001:8;35991:6;:19;;;;:::i;:::-;35979:9;:31;;;;35759:259:::0;:::o;30308:35::-;;;;:::o;34984:482::-;35079:4;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35158:5:::1;35153:1;35137:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35136:27;;;;:::i;:::-;35123:9;:40;;35101:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;35312:3;35307:1;35291:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35290:25;;;;:::i;:::-;35277:9;:38;;35255:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35427:9;35406:18;:30;;;;35454:4;35447:11;;34984:482:::0;;;:::o;30939:26::-;;;;:::o;30688:27::-;;;;:::o;10527:150::-;10615:7;10642:11;:18;10654:5;10642:18;;;;;;;;;;;;;;;:27;10661:7;10642:27;;;;;;;;;;;;;;;;10635:34;;10527:150;;;;:::o;47014:402::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47102:18:::1;;;;;;;;;;;47101:19;47093:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47212:13;47191:35;;:9;:35;;;;:103;;;;;47251:42;47230:64;;:9;:64;;;;47191:103;47169:199;;;;;;;;;;;;:::i;:::-;;;;;;;;;47404:4;47379:11;:22;47391:9;47379:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47014:402:::0;:::o;30350:33::-;;;;:::o;30758:30::-;;;;:::o;2644:201::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2753:1:::1;2733:22;;:8;:22;;::::0;2725:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2809:28;2828:8;2809:18;:28::i;:::-;2644:201:::0;:::o;30901:31::-;;;;:::o;30390:24::-;;;;:::o;46538:373::-;1966:12;:10;:12::i;:::-;1955:23;;:7;:5;:7::i;:::-;:23;;;1947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46609:18:::1;;;;;;;;;;;46608:19;46600:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46715:13;46698:31;;:5;:31;;;;:95;;;;;46750:42;46733:60;;:5;:60;;;;46698:95;46676:191;;;;;;;;;;;;:::i;:::-;;;;;;;;;46899:4;46878:11;:18;46890:5;46878:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;46538:373:::0;:::o;31053:28::-;;;;:::o;38406:112::-;38466:4;38490:11;:20;38502:7;38490:20;;;;;;;;;;;;;;;;;;;;;;;;;38483:27;;38406:112;;;:::o;605:97::-;657:7;684:10;677:17;;605:97;:::o;16774:380::-;16927:1;16910:19;;:5;:19;;;16902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17008:1;16989:21;;:7;:21;;;16981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17092:6;17062:11;:18;17074:5;17062:18;;;;;;;;;;;;;;;:27;17081:7;17062:27;;;;;;;;;;;;;;;:36;;;;17130:7;17114:32;;17123:5;17114:32;;;17139:6;17114:32;;;;;;:::i;:::-;;;;;;;;16774:380;;;:::o;38526:4191::-;38674:1;38658:18;;:4;:18;;;38650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38751:1;38737:16;;:2;:16;;;38729:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38813:11;:17;38825:4;38813:17;;;;;;;;;;;;;;;;;;;;;;;;;38812:18;38804:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;38873:11;:15;38885:2;38873:15;;;;;;;;;;;;;;;;;;;;;;;;;38872:16;38864:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;38930:17;;;;;;;;;;;38926:135;;;38972:25;:31;38998:4;38972:31;;;;;;;;;;;;;;;;;;;;;;;;;38964:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38926:135;39087:1;39077:6;:11;39073:93;;39105:28;39121:4;39127:2;39131:1;39105:15;:28::i;:::-;39148:7;;39073:93;39182:14;;;;;;;;;;;39178:1694;;;39243:7;:5;:7::i;:::-;39235:15;;:4;:15;;;;:49;;;;;39277:7;:5;:7::i;:::-;39271:13;;:2;:13;;;;39235:49;:86;;;;;39319:1;39305:16;;:2;:16;;;;39235:86;:128;;;;;39356:6;39342:21;;:2;:21;;;;39235:128;:158;;;;;39385:8;;;;;;;;;;;39384:9;39235:158;39213:1648;;;39433:13;;;;;;;;;;;39428:223;;39505:19;:25;39525:4;39505:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39534:19;:23;39554:2;39534:23;;;;;;;;;;;;;;;;;;;;;;;;;39505:52;39471:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39428:223;39725:25;:31;39751:4;39725:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39782:31;:35;39814:2;39782:35;;;;;;;;;;;;;;;;;;;;;;;;;39781:36;39725:92;39699:1147;;;39904:20;;39894:6;:30;;39860:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40112:9;;40095:13;40105:2;40095:9;:13::i;:::-;40086:6;:22;;;;:::i;:::-;:35;;40052:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39699:1147;;;40290:25;:29;40316:2;40290:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40345:31;:37;40377:4;40345:37;;;;;;;;;;;;;;;;;;;;;;;;;40344:38;40290:92;40264:582;;;40469:20;;40459:6;:30;;40425:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40264:582;;;40626:31;:35;40658:2;40626:35;;;;;;;;;;;;;;;;;;;;;;;;;40621:225;;40746:9;;40729:13;40739:2;40729:9;:13::i;:::-;40720:6;:22;;;;:::i;:::-;:35;;40686:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40621:225;40264:582;39699:1147;39213:1648;39178:1694;40884:28;40915:24;40933:4;40915:9;:24::i;:::-;40884:55;;40952:12;40991:18;;40967:20;:42;;40952:57;;41040:7;:35;;;;;41064:11;;;;;;;;;;;41040:35;:61;;;;;41093:8;;;;;;;;;;;41092:9;41040:61;:110;;;;;41119:25;:31;41145:4;41119:31;;;;;;;;;;;;;;;;;;;;;;;;;41118:32;41040:110;:153;;;;;41168:19;:25;41188:4;41168:25;;;;;;;;;;;;;;;;;;;;;;;;;41167:26;41040:153;:194;;;;;41211:19;:23;41231:2;41211:23;;;;;;;;;;;;;;;;;;;;;;;;;41210:24;41040:194;41022:326;;;41272:4;41261:8;;:15;;;;;;;;;;;;;;;;;;41293:10;:8;:10::i;:::-;41331:5;41320:8;;:16;;;;;;;;;;;;;;;;;;41022:326;41360:12;41376:8;;;;;;;;;;;41375:9;41360:24;;41486:19;:25;41506:4;41486:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41515:19;:23;41535:2;41515:23;;;;;;;;;;;;;;;;;;;;;;;;;41486:52;41482:100;;;41565:5;41555:15;;41482:100;41594:12;41699:7;41695:969;;;41751:25;:29;41777:2;41751:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41800:1;41784:13;;:17;41751:50;41747:768;;;41829:34;41859:3;41829:25;41840:13;;41829:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41822:41;;41932:13;;41912:16;;41905:4;:23;;;;:::i;:::-;41904:41;;;;:::i;:::-;41882:18;;:63;;;;;;;:::i;:::-;;;;;;;;42004:13;;41989:11;;41982:4;:18;;;;:::i;:::-;41981:36;;;;:::i;:::-;41964:13;;:53;;;;;;;:::i;:::-;;;;;;;;42084:13;;42065:15;;42058:4;:22;;;;:::i;:::-;42057:40;;;;:::i;:::-;42036:17;;:61;;;;;;;:::i;:::-;;;;;;;;41747:768;;;42159:25;:31;42185:4;42159:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42209:1;42194:12;;:16;42159:51;42155:360;;;42238:33;42267:3;42238:24;42249:12;;42238:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42231:40;;42339:12;;42320:15;;42313:4;:22;;;;:::i;:::-;42312:39;;;;:::i;:::-;42290:18;;:61;;;;;;;:::i;:::-;;;;;;;;42409:12;;42395:10;;42388:4;:17;;;;:::i;:::-;42387:34;;;;:::i;:::-;42370:13;;:51;;;;;;;:::i;:::-;;;;;;;;42487:12;;42469:14;;42462:4;:21;;;;:::i;:::-;42461:38;;;;:::i;:::-;42440:17;;:59;;;;;;;:::i;:::-;;;;;;;;42155:360;41747:768;42542:1;42535:4;:8;42531:91;;;42564:42;42580:4;42594;42601;42564:15;:42::i;:::-;42531:91;42648:4;42638:14;;;;;:::i;:::-;;;41695:969;42676:33;42692:4;42698:2;42702:6;42676:15;:33::i;:::-;38639:4078;;;;38526:4191;;;;:::o;3005:191::-;3079:16;3098:6;;;;;;;;;;;3079:25;;3124:8;3115:6;;:17;;;;;;;;;;;;;;;;;;3179:8;3148:40;;3169:8;3148:40;;;;;;;;;;;;3068:128;3005:191;:::o;37699:188::-;37816:5;37782:25;:31;37808:4;37782:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37873:5;37839:40;;37867:4;37839:40;;;;;;;;;;;;37699:188;;:::o;13993:733::-;14151:1;14133:20;;:6;:20;;;14125:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14235:1;14214:23;;:9;:23;;;14206:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14290:47;14311:6;14319:9;14330:6;14290:20;:47::i;:::-;14350:21;14374:9;:17;14384:6;14374:17;;;;;;;;;;;;;;;;14350:41;;14427:6;14410:13;:23;;14402:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14548:6;14532:13;:22;14512:9;:17;14522:6;14512:17;;;;;;;;;;;;;;;:42;;;;14600:6;14576:9;:20;14586:9;14576:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14641:9;14624:35;;14633:6;14624:35;;;14652:6;14624:35;;;;;;:::i;:::-;;;;;;;;14672:46;14692:6;14700:9;14711:6;14672:19;:46::i;:::-;14114:612;13993:733;;;:::o;43846:1779::-;43885:23;43911:24;43929:4;43911:9;:24::i;:::-;43885:50;;43946:25;44041:13;;44008:17;;43974:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;43946:108;;44065:12;44113:1;44094:15;:20;:46;;;;44139:1;44118:17;:22;44094:46;44090:85;;;44157:7;;;;;44090:85;44230:2;44209:18;;:23;;;;:::i;:::-;44191:15;:41;44187:115;;;44288:2;44267:18;;:23;;;;:::i;:::-;44249:41;;44187:115;44363:23;44476:1;44443:17;44408:18;;44390:15;:36;;;;:::i;:::-;44389:71;;;;:::i;:::-;:88;;;;:::i;:::-;44363:114;;44488:26;44517:36;44537:15;44517;:19;;:36;;;;:::i;:::-;44488:65;;44566:25;44594:21;44566:49;;44628:36;44645:18;44628:16;:36::i;:::-;44677:18;44698:44;44724:17;44698:21;:25;;:44;;;;:::i;:::-;44677:65;;44755:22;44780:83;44860:1;44839:18;;:22;;;;:::i;:::-;44818:17;:44;;;;:::i;:::-;44780:33;44795:17;;44780:10;:14;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;44755:108;;44884:18;44905:79;44981:1;44960:18;;:22;;;;:::i;:::-;44939:17;:44;;;;:::i;:::-;44905:29;44920:13;;44905:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;44884:100;;44997:23;45053:10;45036:14;45023:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;44997:66;;45097:1;45076:18;:22;;;;45129:1;45109:17;:21;;;;45157:1;45141:13;:17;;;;45193:10;;;;;;;;;;;45185:24;;45218:10;45185:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45171:64;;;;;45270:1;45252:15;:19;:42;;;;;45293:1;45275:15;:19;45252:42;45248:278;;;45311:46;45324:15;45341;45311:12;:46::i;:::-;45377:137;45410:18;45447:15;45481:18;;45377:137;;;;;;;;:::i;:::-;;;;;;;;45248:278;45560:14;;;;;;;;;;;45552:28;;45589:21;45552:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45538:79;;;;;43874:1751;;;;;;;;;;43846:1779;:::o;21901:97::-;21958:7;21989:1;21985;:5;;;;:::i;:::-;21978:12;;21901:97;;;;:::o;22299:::-;22356:7;22387:1;22383;:5;;;;:::i;:::-;22376:12;;22299:97;;;;:::o;17754:126::-;;;;:::o;18484:125::-;;;;:::o;21545:97::-;21602:7;21633:1;21629;:5;;;;:::i;:::-;21622:12;;21545:97;;;;:::o;42725:589::-;42851:21;42889:1;42875:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42851:40;;42920:4;42902;42907:1;42902:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42946:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42936:4;42941:1;42936:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42981:62;42998:4;43013:15;43031:11;42981:8;:62::i;:::-;43082:15;:66;;;43163:11;43189:1;43233:4;43260;43280:15;43082:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42780:534;42725:589;:::o;43322:516::-;43470:62;43487:4;43502:15;43520:11;43470:8;:62::i;:::-;43575:15;:31;;;43615:9;43650:4;43670:11;43696:1;43739;43782:7;:5;:7::i;:::-;43804:15;43575:255;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43322:516;;:::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;1430:117::-;1539:1;1536;1529: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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:147::-;13863:11;13900:3;13885:18;;13762:147;;;;:::o;13915:114::-;;:::o;14035:398::-;14194:3;14215:83;14296:1;14291:3;14215:83;:::i;:::-;14208:90;;14307:93;14396:3;14307:93;:::i;:::-;14425:1;14420:3;14416:11;14409:18;;14035:398;;;:::o;14439:379::-;14623:3;14645:147;14788:3;14645:147;:::i;:::-;14638:154;;14809:3;14802:10;;14439:379;;;:::o;14824:172::-;14964:24;14960:1;14952:6;14948:14;14941:48;14824:172;:::o;15002:366::-;15144:3;15165:67;15229:2;15224:3;15165:67;:::i;:::-;15158:74;;15241:93;15330:3;15241:93;:::i;:::-;15359:2;15354:3;15350:12;15343:19;;15002:366;;;:::o;15374:419::-;15540:4;15578:2;15567:9;15563:18;15555:26;;15627:9;15621:4;15617:20;15613:1;15602:9;15598:17;15591:47;15655:131;15781:4;15655:131;:::i;:::-;15647:139;;15374:419;;;:::o;15799:143::-;15856:5;15887:6;15881:13;15872:22;;15903:33;15930:5;15903:33;:::i;:::-;15799:143;;;;:::o;15948:351::-;16018:6;16067:2;16055:9;16046:7;16042:23;16038:32;16035:119;;;16073:79;;:::i;:::-;16035:119;16193:1;16218:64;16274:7;16265:6;16254:9;16250:22;16218:64;:::i;:::-;16208:74;;16164:128;15948:351;;;;:::o;16305:332::-;16426:4;16464:2;16453:9;16449:18;16441:26;;16477:71;16545:1;16534:9;16530:17;16521:6;16477:71;:::i;:::-;16558:72;16626:2;16615:9;16611:18;16602:6;16558:72;:::i;:::-;16305:332;;;;;:::o;16643:137::-;16697:5;16728:6;16722:13;16713:22;;16744:30;16768:5;16744:30;:::i;:::-;16643:137;;;;:::o;16786:345::-;16853:6;16902:2;16890:9;16881:7;16877:23;16873:32;16870:119;;;16908:79;;:::i;:::-;16870:119;17028:1;17053:61;17106:7;17097:6;17086:9;17082:22;17053:61;:::i;:::-;17043:71;;16999:125;16786:345;;;;:::o;17137:244::-;17277:34;17273:1;17265:6;17261:14;17254:58;17346:27;17341:2;17333:6;17329:15;17322:52;17137:244;:::o;17387:366::-;17529:3;17550:67;17614:2;17609:3;17550:67;:::i;:::-;17543:74;;17626:93;17715:3;17626:93;:::i;:::-;17744:2;17739:3;17735:12;17728:19;;17387:366;;;:::o;17759:419::-;17925:4;17963:2;17952:9;17948:18;17940:26;;18012:9;18006:4;18002:20;17998:1;17987:9;17983:17;17976:47;18040:131;18166:4;18040:131;:::i;:::-;18032:139;;17759:419;;;:::o;18184:224::-;18324:34;18320:1;18312:6;18308:14;18301:58;18393:7;18388:2;18380:6;18376:15;18369:32;18184:224;:::o;18414:366::-;18556:3;18577:67;18641:2;18636:3;18577:67;:::i;:::-;18570:74;;18653:93;18742:3;18653:93;:::i;:::-;18771:2;18766:3;18762:12;18755:19;;18414:366;;;:::o;18786:419::-;18952:4;18990:2;18979:9;18975:18;18967:26;;19039:9;19033:4;19029:20;19025:1;19014:9;19010:17;19003:47;19067:131;19193:4;19067:131;:::i;:::-;19059:139;;18786:419;;;:::o;19211:176::-;19351:28;19347:1;19339:6;19335:14;19328:52;19211:176;:::o;19393:366::-;19535:3;19556:67;19620:2;19615:3;19556:67;:::i;:::-;19549:74;;19632:93;19721:3;19632:93;:::i;:::-;19750:2;19745:3;19741:12;19734:19;;19393:366;;;:::o;19765:419::-;19931:4;19969:2;19958:9;19954:18;19946:26;;20018:9;20012:4;20008:20;20004:1;19993:9;19989:17;19982:47;20046:131;20172:4;20046:131;:::i;:::-;20038:139;;19765:419;;;:::o;20190:173::-;20330:25;20326:1;20318:6;20314:14;20307:49;20190:173;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:223::-;21306:34;21302:1;21294:6;21290:14;21283:58;21375:6;21370:2;21362:6;21358:15;21351:31;21166:223;:::o;21395:366::-;21537:3;21558:67;21622:2;21617:3;21558:67;:::i;:::-;21551:74;;21634:93;21723:3;21634:93;:::i;:::-;21752:2;21747:3;21743:12;21736:19;;21395:366;;;:::o;21767:419::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:240::-;22332:34;22328:1;22320:6;22316:14;22309:58;22401:23;22396:2;22388:6;22384:15;22377:48;22192:240;:::o;22438:366::-;22580:3;22601:67;22665:2;22660:3;22601:67;:::i;:::-;22594:74;;22677:93;22766:3;22677:93;:::i;:::-;22795:2;22790:3;22786:12;22779:19;;22438:366;;;:::o;22810:419::-;22976:4;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22810:419;;;:::o;23235:239::-;23375:34;23371:1;23363:6;23359:14;23352:58;23444:22;23439:2;23431:6;23427:15;23420:47;23235:239;:::o;23480:366::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:419::-;24018:4;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:131;24259:4;24133:131;:::i;:::-;24125:139;;23852:419;;;:::o;24277:220::-;24417:34;24413:1;24405:6;24401:14;24394:58;24486:3;24481:2;24473:6;24469:15;24462:28;24277:220;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:233::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:16;25504:2;25496:6;25492:15;25485:41;25300:233;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:225::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:8;26540:2;26532:6;26528:15;26521:33;26336:225;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:223::-;27504:34;27500:1;27492:6;27488:14;27481:58;27573:6;27568:2;27560:6;27556:15;27549:31;27364:223;:::o;27593:366::-;27735:3;27756:67;27820:2;27815:3;27756:67;:::i;:::-;27749:74;;27832:93;27921:3;27832:93;:::i;:::-;27950:2;27945:3;27941:12;27934:19;;27593:366;;;:::o;27965:419::-;28131:4;28169:2;28158:9;28154:18;28146:26;;28218:9;28212:4;28208:20;28204:1;28193:9;28189:17;28182:47;28246:131;28372:4;28246:131;:::i;:::-;28238:139;;27965:419;;;:::o;28390:221::-;28530:34;28526:1;28518:6;28514:14;28507:58;28599:4;28594:2;28586:6;28582:15;28575:29;28390:221;:::o;28617:366::-;28759:3;28780:67;28844:2;28839:3;28780:67;:::i;:::-;28773:74;;28856:93;28945:3;28856:93;:::i;:::-;28974:2;28969:3;28965:12;28958:19;;28617:366;;;:::o;28989:419::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:224::-;29554:34;29550:1;29542:6;29538:14;29531:58;29623:7;29618:2;29610:6;29606:15;29599:32;29414:224;:::o;29644:366::-;29786:3;29807:67;29871:2;29866:3;29807:67;:::i;:::-;29800:74;;29883:93;29972:3;29883:93;:::i;:::-;30001:2;29996:3;29992:12;29985:19;;29644:366;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30016:419;;;:::o;30441:222::-;30581:34;30577:1;30569:6;30565:14;30558:58;30650:5;30645:2;30637:6;30633:15;30626:30;30441:222;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:168::-;31606:20;31602:1;31594:6;31590:14;31583:44;31466:168;:::o;31640:366::-;31782:3;31803:67;31867:2;31862:3;31803:67;:::i;:::-;31796:74;;31879:93;31968:3;31879:93;:::i;:::-;31997:2;31992:3;31988:12;31981:19;;31640:366;;;:::o;32012:419::-;32178:4;32216:2;32205:9;32201:18;32193:26;;32265:9;32259:4;32255:20;32251:1;32240:9;32236:17;32229:47;32293:131;32419:4;32293:131;:::i;:::-;32285:139;;32012:419;;;:::o;32437:170::-;32577:22;32573:1;32565:6;32561:14;32554:46;32437:170;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:228::-;33550:34;33546:1;33538:6;33534:14;33527:58;33619:11;33614:2;33606:6;33602:15;33595:36;33410:228;:::o;33644:366::-;33786:3;33807:67;33871:2;33866:3;33807:67;:::i;:::-;33800:74;;33883:93;33972:3;33883:93;:::i;:::-;34001:2;33996:3;33992:12;33985:19;;33644:366;;;:::o;34016:419::-;34182:4;34220:2;34209:9;34205:18;34197:26;;34269:9;34263:4;34259:20;34255:1;34244:9;34240:17;34233:47;34297:131;34423:4;34297:131;:::i;:::-;34289:139;;34016:419;;;:::o;34441:172::-;34581:24;34577:1;34569:6;34565:14;34558:48;34441:172;:::o;34619:366::-;34761:3;34782:67;34846:2;34841:3;34782:67;:::i;:::-;34775:74;;34858:93;34947:3;34858:93;:::i;:::-;34976:2;34971:3;34967:12;34960:19;;34619:366;;;:::o;34991:419::-;35157:4;35195:2;35184:9;35180:18;35172:26;;35244:9;35238:4;35234:20;35230:1;35219:9;35215:17;35208:47;35272:131;35398:4;35272:131;:::i;:::-;35264:139;;34991:419;;;:::o;35416:240::-;35556:34;35552:1;35544:6;35540:14;35533:58;35625:23;35620:2;35612:6;35608:15;35601:48;35416:240;:::o;35662:366::-;35804:3;35825:67;35889:2;35884:3;35825:67;:::i;:::-;35818:74;;35901:93;35990:3;35901:93;:::i;:::-;36019:2;36014:3;36010:12;36003:19;;35662:366;;;:::o;36034:419::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:169::-;36599:21;36595:1;36587:6;36583:14;36576:45;36459:169;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:241::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:24;37635:2;37627:6;37623:15;37616:49;37431:241;:::o;37678:366::-;37820:3;37841:67;37905:2;37900:3;37841:67;:::i;:::-;37834:74;;37917:93;38006:3;37917:93;:::i;:::-;38035:2;38030:3;38026:12;38019:19;;37678:366;;;:::o;38050:419::-;38216:4;38254:2;38243:9;38239:18;38231:26;;38303:9;38297:4;38293:20;38289:1;38278:9;38274:17;38267:47;38331:131;38457:4;38331:131;:::i;:::-;38323:139;;38050:419;;;:::o;38475:194::-;38515:4;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38569:20;38587:1;38569:20;:::i;:::-;38564:25;;38613:1;38610;38606:9;38598:17;;38637:1;38631:4;38628:11;38625:37;;;38642:18;;:::i;:::-;38625:37;38475:194;;;;:::o;38675:225::-;38815:34;38811:1;38803:6;38799:14;38792:58;38884:8;38879:2;38871:6;38867:15;38860:33;38675:225;:::o;38906:366::-;39048:3;39069:67;39133:2;39128:3;39069:67;:::i;:::-;39062:74;;39145:93;39234:3;39145:93;:::i;:::-;39263:2;39258:3;39254:12;39247:19;;38906:366;;;:::o;39278:419::-;39444:4;39482:2;39471:9;39467:18;39459:26;;39531:9;39525:4;39521:20;39517:1;39506:9;39502:17;39495:47;39559:131;39685:4;39559:131;:::i;:::-;39551:139;;39278:419;;;:::o;39703:442::-;39852:4;39890:2;39879:9;39875:18;39867:26;;39903:71;39971:1;39960:9;39956:17;39947:6;39903:71;:::i;:::-;39984:72;40052:2;40041:9;40037:18;40028:6;39984:72;:::i;:::-;40066;40134:2;40123:9;40119:18;40110:6;40066:72;:::i;:::-;39703:442;;;;;;:::o;40151:180::-;40199:77;40196:1;40189:88;40296:4;40293:1;40286:15;40320:4;40317:1;40310:15;40337:180;40385:77;40382:1;40375:88;40482:4;40479:1;40472:15;40506:4;40503:1;40496:15;40523:143;40580:5;40611:6;40605:13;40596:22;;40627:33;40654:5;40627:33;:::i;:::-;40523:143;;;;:::o;40672:351::-;40742:6;40791:2;40779:9;40770:7;40766:23;40762:32;40759:119;;;40797:79;;:::i;:::-;40759:119;40917:1;40942:64;40998:7;40989:6;40978:9;40974:22;40942:64;:::i;:::-;40932:74;;40888:128;40672:351;;;;:::o;41029:85::-;41074:7;41103:5;41092:16;;41029:85;;;:::o;41120:158::-;41178:9;41211:61;41229:42;41238:32;41264:5;41238:32;:::i;:::-;41229:42;:::i;:::-;41211:61;:::i;:::-;41198:74;;41120:158;;;:::o;41284:147::-;41379:45;41418:5;41379:45;:::i;:::-;41374:3;41367:58;41284:147;;:::o;41437:114::-;41504:6;41538:5;41532:12;41522:22;;41437:114;;;:::o;41557:184::-;41656:11;41690:6;41685:3;41678:19;41730:4;41725:3;41721:14;41706:29;;41557:184;;;;:::o;41747:132::-;41814:4;41837:3;41829:11;;41867:4;41862:3;41858:14;41850:22;;41747:132;;;:::o;41885:108::-;41962:24;41980:5;41962:24;:::i;:::-;41957:3;41950:37;41885:108;;:::o;41999:179::-;42068:10;42089:46;42131:3;42123:6;42089:46;:::i;:::-;42167:4;42162:3;42158:14;42144:28;;41999:179;;;;:::o;42184:113::-;42254:4;42286;42281:3;42277:14;42269:22;;42184:113;;;:::o;42333:732::-;42452:3;42481:54;42529:5;42481:54;:::i;:::-;42551:86;42630:6;42625:3;42551:86;:::i;:::-;42544:93;;42661:56;42711:5;42661:56;:::i;:::-;42740:7;42771:1;42756:284;42781:6;42778:1;42775:13;42756:284;;;42857:6;42851:13;42884:63;42943:3;42928:13;42884:63;:::i;:::-;42877:70;;42970:60;43023:6;42970:60;:::i;:::-;42960:70;;42816:224;42803:1;42800;42796:9;42791:14;;42756:284;;;42760:14;43056:3;43049:10;;42457:608;;;42333:732;;;;:::o;43071:831::-;43334:4;43372:3;43361:9;43357:19;43349:27;;43386:71;43454:1;43443:9;43439:17;43430:6;43386:71;:::i;:::-;43467:80;43543:2;43532:9;43528:18;43519:6;43467:80;:::i;:::-;43594:9;43588:4;43584:20;43579:2;43568:9;43564:18;43557:48;43622:108;43725:4;43716:6;43622:108;:::i;:::-;43614:116;;43740:72;43808:2;43797:9;43793:18;43784:6;43740:72;:::i;:::-;43822:73;43890:3;43879:9;43875:19;43866:6;43822:73;:::i;:::-;43071:831;;;;;;;;:::o;43908:807::-;44157:4;44195:3;44184:9;44180:19;44172:27;;44209:71;44277:1;44266:9;44262:17;44253:6;44209:71;:::i;:::-;44290:72;44358:2;44347:9;44343:18;44334:6;44290:72;:::i;:::-;44372:80;44448:2;44437:9;44433:18;44424:6;44372:80;:::i;:::-;44462;44538:2;44527:9;44523:18;44514:6;44462:80;:::i;:::-;44552:73;44620:3;44609:9;44605:19;44596:6;44552:73;:::i;:::-;44635;44703:3;44692:9;44688:19;44679:6;44635:73;:::i;:::-;43908:807;;;;;;;;;:::o;44721:663::-;44809:6;44817;44825;44874:2;44862:9;44853:7;44849:23;44845:32;44842:119;;;44880:79;;:::i;:::-;44842:119;45000:1;45025:64;45081:7;45072:6;45061:9;45057:22;45025:64;:::i;:::-;45015:74;;44971:128;45138:2;45164:64;45220:7;45211:6;45200:9;45196:22;45164:64;:::i;:::-;45154:74;;45109:129;45277:2;45303:64;45359:7;45350:6;45339:9;45335:22;45303:64;:::i;:::-;45293:74;;45248:129;44721:663;;;;;:::o
Swarm Source
ipfs://b574bbd79708909efd1c2c377f357eb74fb3296791fda9c0f33ee475b789fbe4
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.