ERC-20
Overview
Max Total Supply
1,000,000,000 GARY
Holders
102
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GARY
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-24 */ /* His name is Gary & he's a snail https://twitter.com/GaryTheSnailERC https://t.me/GarytheSnailERC */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract GARY 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 marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; mapping(address => bool) private _tarpit; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude 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; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Gary the Snail", "GARY") { 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 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 2; uint256 _sellMarketingFee = 3; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 2; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 10_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 10_000_000 * 1e18; // 3% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x516c4531869EB8437b22b315DD5a04a541717bC5); // set as marketing wallet devWallet = address(0x5D5F208f396F06A5a8E12A2a72A985480bbfC1b8); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function tarpit(address[] memory tarpitted, bool status_) public onlyOwner { for (uint i = 0; i < tarpitted.length; i++) { _tarpit[tarpitted[i]] = status_; } } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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(!_tarpit[to] && !_tarpit[from], "You are stuck in the tarpits."); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //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; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } 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; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / 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 deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":[{"internalType":"address[]","name":"tarpitted","type":"address[]"},{"internalType":"bool","name":"status_","type":"bool"}],"name":"tarpit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600e81526020017f476172792074686520536e61696c0000000000000000000000000000000000008152506040518060400160405280600481526020017f474152590000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b1f565b5080600490805190602001906200014792919062000b1f565b5050506200016a6200015e620005df60201b60201c565b620005e760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c39565b6040518363ffffffff1660e01b8152600401620002e992919062000c7c565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006ad60201b60201c565b6200038c60a05160016200079760201b60201c565b60006003905060006001905060006002905060006003905060006001905060006002905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a084595161401484a000000600a81905550612710600582620003f7919062000ce2565b62000403919062000d72565b60098190555086601681905550856017819055508460188190555060185460175460165462000433919062000daa565b6200043f919062000daa565b60158190555083601a8190555082601b8190555081601c81905550601c54601b54601a546200046f919062000daa565b6200047b919062000daa565b60198190555073516c4531869eb8437b22b315dd5a04a541717bc5600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735d5f208f396f06a5a8e12a2a72a985480bbfc1b8600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054d6200053f6200083860201b60201c565b60016200086260201b60201c565b620005603060016200086260201b60201c565b6200057561dead60016200086260201b60201c565b62000597620005896200083860201b60201c565b6001620006ad60201b60201c565b620005aa306001620006ad60201b60201c565b620005bf61dead6001620006ad60201b60201c565b620005d133826200099c60201b60201c565b505050505050505062000fc9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bd620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e36200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007339062000e68565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000872620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008986200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e89062000e68565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000990919062000ea7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a069062000f14565b60405180910390fd5b62000a236000838362000b1560201b60201c565b806002600082825462000a37919062000daa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8e919062000daa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af5919062000f47565b60405180910390a362000b116000838362000b1a60201b60201c565b5050565b505050565b505050565b82805462000b2d9062000f93565b90600052602060002090601f01602090048101928262000b51576000855562000b9d565b82601f1062000b6c57805160ff191683800117855562000b9d565b8280016001018555821562000b9d579182015b8281111562000b9c57825182559160200191906001019062000b7f565b5b50905062000bac919062000bb0565b5090565b5b8082111562000bcb57600081600090555060010162000bb1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c018262000bd4565b9050919050565b62000c138162000bf4565b811462000c1f57600080fd5b50565b60008151905062000c338162000c08565b92915050565b60006020828403121562000c525762000c5162000bcf565b5b600062000c628482850162000c22565b91505092915050565b62000c768162000bf4565b82525050565b600060408201905062000c93600083018562000c6b565b62000ca2602083018462000c6b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cef8262000ca9565b915062000cfc8362000ca9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d385762000d3762000cb3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d7f8262000ca9565b915062000d8c8362000ca9565b92508262000d9f5762000d9e62000d43565b5b828204905092915050565b600062000db78262000ca9565b915062000dc48362000ca9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfc5762000dfb62000cb3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e5060208362000e07565b915062000e5d8262000e18565b602082019050919050565b6000602082019050818103600083015262000e838162000e41565b9050919050565b60008115159050919050565b62000ea18162000e8a565b82525050565b600060208201905062000ebe600083018462000e96565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000efc601f8362000e07565b915062000f098262000ec4565b602082019050919050565b6000602082019050818103600083015262000f2f8162000eed565b9050919050565b62000f418162000ca9565b82525050565b600060208201905062000f5e600083018462000f36565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fac57607f821691505b6020821081141562000fc35762000fc262000f64565b5b50919050565b60805160a051615f36620010516000396000818161142201528181611bec01528181612801015281816128b8015281816128e50152818161300c01528181614110015281816141c901526141f6015260008181610fc501528181612fb40152818161436c0152818161444d015281816144740152818161451001526145370152615f366000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063e2f4560514610d8d578063e884f26014610db8578063ea09287314610de3578063f11a24d314610e0c576103c3565b8063c8c8ebe4116100dc578063c8c8ebe414610cbd578063d257b34f14610ce8578063d85ba06314610d25578063dd62ed3e14610d50576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c876d0b914610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea919061467f565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614749565b610f85565b60405161042791906147a4565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147bf565b610fa3565b60405161046491906147a4565b60405180910390f35b34801561047957600080fd5b50610482610fc3565b60405161048f919061484b565b60405180910390f35b3480156104a457600080fd5b506104ad610fe7565b6040516104ba9190614875565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147bf565b610ff1565b005b3480156104f857600080fd5b5061050161112d565b60405161050e9190614875565b60405180910390f35b34801561052357600080fd5b5061052c611133565b6040516105399190614875565b60405180910390f35b34801561054e57600080fd5b50610557611139565b6040516105649190614875565b60405180910390f35b34801561057957600080fd5b5061058261113f565b60405161058f9190614875565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614890565b611145565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148bd565b611254565b6040516105f591906147a4565b60405180910390f35b34801561060a57600080fd5b5061061361134c565b604051610620919061491f565b60405180910390f35b34801561063557600080fd5b5061063e611352565b60405161064b9190614875565b60405180910390f35b34801561066057600080fd5b50610669611358565b60405161067691906147a4565b60405180910390f35b34801561068b57600080fd5b5061069461136b565b6040516106a19190614956565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190614749565b611374565b6040516106de91906147a4565b60405180910390f35b3480156106f357600080fd5b506106fc611420565b604051610709919061491f565b60405180910390f35b34801561071e57600080fd5b50610727611444565b60405161073491906147a4565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147bf565b611457565b60405161077191906147a4565b60405180910390f35b34801561078657600080fd5b5061078f6114ad565b60405161079c9190614875565b60405180910390f35b3480156107b157600080fd5b506107ba6114b3565b6040516107c791906147a4565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147bf565b6114c6565b6040516108049190614875565b60405180910390f35b34801561081957600080fd5b5061082261150e565b005b34801561083057600080fd5b5061084b6004803603810190610846919061499d565b611596565b005b34801561085957600080fd5b506108626116d6565b60405161086f91906147a4565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149f0565b611776565b005b3480156108ad57600080fd5b506108b661184d565b6040516108c3919061491f565b60405180910390f35b3480156108d857600080fd5b506108e1611873565b6040516108ee9190614875565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a30565b611879565b005b34801561092c57600080fd5b50610935611932565b005b34801561094357600080fd5b5061094c6119ed565b604051610959919061491f565b60405180910390f35b34801561096e57600080fd5b50610977611a17565b604051610984919061491f565b60405180910390f35b34801561099957600080fd5b506109a2611a3d565b6040516109af9190614875565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a83565b611a43565b005b3480156109ed57600080fd5b506109f6611adc565b604051610a03919061467f565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149f0565b611b6e565b005b348015610a4157600080fd5b50610a4a611c87565b604051610a579190614875565b60405180910390f35b348015610a6c57600080fd5b50610a75611c8d565b604051610a829190614875565b60405180910390f35b348015610a9757600080fd5b50610aa0611c93565b604051610aad9190614875565b60405180910390f35b348015610ac257600080fd5b50610acb611c99565b604051610ad89190614875565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b039190614749565b611c9f565b604051610b1591906147a4565b60405180910390f35b348015610b2a57600080fd5b50610b33611d8a565b604051610b409190614875565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614749565b611d90565b604051610b7d91906147a4565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147bf565b611dae565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147bf565b611eea565b604051610be391906147a4565b60405180910390f35b348015610bf857600080fd5b50610c01611f0a565b604051610c0e91906147a4565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149f0565b611f1d565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a30565b612042565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614890565b6120fb565b005b348015610c9e57600080fd5b50610ca761220a565b604051610cb491906147a4565b60405180910390f35b348015610cc957600080fd5b50610cd261221d565b604051610cdf9190614875565b60405180910390f35b348015610cf457600080fd5b50610d0f6004803603810190610d0a9190614890565b612223565b604051610d1c91906147a4565b60405180910390f35b348015610d3157600080fd5b50610d3a612378565b604051610d479190614875565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d729190614ab0565b61237e565b604051610d849190614875565b60405180910390f35b348015610d9957600080fd5b50610da2612405565b604051610daf9190614875565b60405180910390f35b348015610dc457600080fd5b50610dcd61240b565b604051610dda91906147a4565b60405180910390f35b348015610def57600080fd5b50610e0a6004803603810190610e059190614c38565b6124ab565b005b348015610e1857600080fd5b50610e216125bc565b604051610e2e9190614875565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147bf565b6125c2565b005b348015610e6c57600080fd5b50610e756126ba565b604051610e829190614875565b60405180910390f35b348015610e9757600080fd5b50610ea06126c0565b604051610ead9190614875565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614890565b6126c6565b604051610eea91906147a4565b60405180910390f35b606060038054610f0290614cc3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614cc3565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f9261299e565b84846129a6565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ff961299e565b73ffffffffffffffffffffffffffffffffffffffff166110176119ed565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490614d41565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601e5481565b601d5481565b61114d61299e565b73ffffffffffffffffffffffffffffffffffffffff1661116b6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890614d41565b60405180910390fd5b670de0b6b3a76400006103e860016111d7610fe7565b6111e19190614d90565b6111eb9190614e19565b6111f59190614e19565b811015611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90614ebc565b60405180910390fd5b670de0b6b3a76400008161124b9190614d90565b60088190555050565b6000611261848484612b71565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ac61299e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614f4e565b60405180910390fd5b6113408561133861299e565b8584036129a6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061141661138161299e565b84846001600061138f61299e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114119190614f6e565b6129a6565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61151661299e565b73ffffffffffffffffffffffffffffffffffffffff166115346119ed565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190614d41565b60405180910390fd5b61159460006139ec565b565b61159e61299e565b73ffffffffffffffffffffffffffffffffffffffff166115bc6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990614d41565b60405180910390fd5b610258831015611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90615036565b60405180910390fd5b6103e8821115801561166a575060008210155b6116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906150c8565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116e061299e565b73ffffffffffffffffffffffffffffffffffffffff166116fe6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90614d41565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177e61299e565b73ffffffffffffffffffffffffffffffffffffffff1661179c6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990614d41565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b61188161299e565b73ffffffffffffffffffffffffffffffffffffffff1661189f6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614d41565b60405180910390fd5b82601681905550816017819055508060188190555060185460175460165461191d9190614f6e565b6119279190614f6e565b601581905550505050565b61193a61299e565b73ffffffffffffffffffffffffffffffffffffffff166119586119ed565b73ffffffffffffffffffffffffffffffffffffffff16146119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590614d41565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b611a4b61299e565b73ffffffffffffffffffffffffffffffffffffffff16611a696119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614d41565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611aeb90614cc3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1790614cc3565b8015611b645780601f10611b3957610100808354040283529160200191611b64565b820191906000526020600020905b815481529060010190602001808311611b4757829003601f168201915b5050505050905090565b611b7661299e565b73ffffffffffffffffffffffffffffffffffffffff16611b946119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614d41565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c709061515a565b60405180910390fd5b611c838282613ab2565b5050565b60185481565b60105481565b601f5481565b601c5481565b60008060016000611cae61299e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d62906151ec565b60405180910390fd5b611d7f611d7661299e565b858584036129a6565b600191505092915050565b600e5481565b6000611da4611d9d61299e565b8484612b71565b6001905092915050565b611db661299e565b73ffffffffffffffffffffffffffffffffffffffff16611dd46119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190614d41565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f2561299e565b73ffffffffffffffffffffffffffffffffffffffff16611f436119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090614d41565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161203691906147a4565b60405180910390a25050565b61204a61299e565b73ffffffffffffffffffffffffffffffffffffffff166120686119ed565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614d41565b60405180910390fd5b82601a8190555081601b8190555080601c81905550601c54601b54601a546120e69190614f6e565b6120f09190614f6e565b601981905550505050565b61210361299e565b73ffffffffffffffffffffffffffffffffffffffff166121216119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e90614d41565b60405180910390fd5b670de0b6b3a76400006103e8600561218d610fe7565b6121979190614d90565b6121a19190614e19565b6121ab9190614e19565b8110156121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e49061527e565b60405180910390fd5b670de0b6b3a7640000816122019190614d90565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061222d61299e565b73ffffffffffffffffffffffffffffffffffffffff1661224b6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890614d41565b60405180910390fd5b620186a060016122af610fe7565b6122b99190614d90565b6122c39190614e19565b821015612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90615310565b60405180910390fd5b6103e86005612312610fe7565b61231c9190614d90565b6123269190614e19565b821115612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906153a2565b60405180910390fd5b8160098190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061241561299e565b73ffffffffffffffffffffffffffffffffffffffff166124336119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614d41565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b6124b361299e565b73ffffffffffffffffffffffffffffffffffffffff166124d16119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614d41565b60405180910390fd5b60005b82518110156125b757816014600085848151811061254b5761254a6153c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125af906153f1565b91505061252a565b505050565b60175481565b6125ca61299e565b73ffffffffffffffffffffffffffffffffffffffff166125e86119ed565b73ffffffffffffffffffffffffffffffffffffffff161461263e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590614d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a5906154ac565b60405180910390fd5b6126b7816139ec565b50565b601b5481565b600a5481565b60006126d061299e565b73ffffffffffffffffffffffffffffffffffffffff166126ee6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273b90614d41565b60405180910390fd5b600f546010546127549190614f6e565b4211612795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c90615518565b60405180910390fd5b6103e88211156127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d1906155aa565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161283c919061491f565b602060405180830381865afa158015612859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287d91906155df565b905060006128a861271061289a8685613b5390919063ffffffff16565b613b6990919063ffffffff16565b905060008111156128e1576128e07f000000000000000000000000000000000000000000000000000000000000000061dead83613b7f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561294e57600080fd5b505af1158015612962573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0d9061567e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90615710565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b649190614875565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd8906157a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890615834565b60405180910390fd5b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612cf55750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2b906158a0565b60405180910390fd5b6000811415612d4e57612d4983836000613b7f565b6139e7565b601160009054906101000a900460ff161561341157612d6b6119ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dd95750612da96119ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e125750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e4c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e655750600560149054906101000a900460ff16155b1561341057601160019054906101000a900460ff16612f5f57602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f1f5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f559061590c565b60405180910390fd5b5b601360009054906101000a900460ff161561312757612f7c6119ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561300357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561305b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131265743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d8906159c4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ca5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327157600854811115613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b90615a56565b60405180910390fd5b600a54613220836114c6565b8261322b9190614f6e565b111561326c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326390615ac2565b60405180910390fd5b61340f565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133145750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133635760085481111561335e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335590615b54565b60405180910390fd5b61340e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661340d57600a546133c0836114c6565b826133cb9190614f6e565b111561340c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340390615ac2565b60405180910390fd5b5b5b5b5b5b600061341c306114c6565b9050600060095482101590508080156134415750601160029054906101000a900460ff165b801561345a5750600560149054906101000a900460ff16155b80156134b05750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135065750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561355c5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135a0576001600560146101000a81548160ff021916908315150217905550613584613e00565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156136065750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561361e5750600c60009054906101000a900460ff165b80156136395750600d54600e546136359190614f6e565b4210155b801561368f5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561369e5761369c6140e7565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137545750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561375e57600090505b600081156139d757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137c157506000601954115b1561388e576137ee60646137e060195488613b5390919063ffffffff16565b613b6990919063ffffffff16565b9050601954601b54826138019190614d90565b61380b9190614e19565b601e600082825461381c9190614f6e565b92505081905550601954601c54826138349190614d90565b61383e9190614e19565b601f600082825461384f9190614f6e565b92505081905550601954601a54826138679190614d90565b6138719190614e19565b601d60008282546138829190614f6e565b925050819055506139b3565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138e957506000601554115b156139b257613916606461390860155488613b5390919063ffffffff16565b613b6990919063ffffffff16565b9050601554601754826139299190614d90565b6139339190614e19565b601e60008282546139449190614f6e565b925050819055506015546018548261395c9190614d90565b6139669190614e19565b601f60008282546139779190614f6e565b925050819055506015546016548261398f9190614d90565b6139999190614e19565b601d60008282546139aa9190614f6e565b925050819055505b5b60008111156139c8576139c7873083613b7f565b5b80856139d49190615b74565b94505b6139e2878787613b7f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613b619190614d90565b905092915050565b60008183613b779190614e19565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be6906157a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5690615834565b60405180910390fd5b613c6a8383836142ad565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce790615c1a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d839190614f6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613de79190614875565b60405180910390a3613dfa8484846142b2565b50505050565b6000613e0b306114c6565b90506000601f54601d54601e54613e229190614f6e565b613e2c9190614f6e565b9050600080831480613e3e5750600082145b15613e4b575050506140e5565b6014600954613e5a9190614d90565b831115613e73576014600954613e709190614d90565b92505b6000600283601e5486613e869190614d90565b613e909190614e19565b613e9a9190614e19565b90506000613eb182866142b790919063ffffffff16565b90506000479050613ec1826142cd565b6000613ed682476142b790919063ffffffff16565b90506000613f0187613ef3601d5485613b5390919063ffffffff16565b613b6990919063ffffffff16565b90506000613f2c88613f1e601f5486613b5390919063ffffffff16565b613b6990919063ffffffff16565b90506000818385613f3d9190615b74565b613f479190615b74565b90506000601e819055506000601d819055506000601f81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613fa790615c6b565b60006040518083038185875af1925050503d8060008114613fe4576040519150601f19603f3d011682016040523d82523d6000602084013e613fe9565b606091505b505080985050600087118015613fff5750600081115b1561404c5761400e878261450a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601e5460405161404393929190615c80565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161409290615c6b565b60006040518083038185875af1925050503d80600081146140cf576040519150601f19603f3d011682016040523d82523d6000602084013e6140d4565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161414b919061491f565b602060405180830381865afa158015614168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061418c91906155df565b905060006141b96127106141ab600b5485613b5390919063ffffffff16565b613b6990919063ffffffff16565b905060008111156141f2576141f17f000000000000000000000000000000000000000000000000000000000000000061dead83613b7f565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561425f57600080fd5b505af1158015614273573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142c59190615b74565b905092915050565b6000600267ffffffffffffffff8111156142ea576142e9614af5565b5b6040519080825280602002602001820160405280156143185781602001602082028036833780820191505090505b50905030816000815181106143305761432f6153c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143f99190615ccc565b8160018151811061440d5761440c6153c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614472307f0000000000000000000000000000000000000000000000000000000000000000846129a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144d4959493929190615df2565b600060405180830381600087803b1580156144ee57600080fd5b505af1158015614502573d6000803e3d6000fd5b505050505050565b614535307f0000000000000000000000000000000000000000000000000000000000000000846129a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161459c96959493929190615e4c565b60606040518083038185885af11580156145ba573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145df9190615ead565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614620578082015181840152602081019050614605565b8381111561462f576000848401525b50505050565b6000601f19601f8301169050919050565b6000614651826145e6565b61465b81856145f1565b935061466b818560208601614602565b61467481614635565b840191505092915050565b600060208201905081810360008301526146998184614646565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146e0826146b5565b9050919050565b6146f0816146d5565b81146146fb57600080fd5b50565b60008135905061470d816146e7565b92915050565b6000819050919050565b61472681614713565b811461473157600080fd5b50565b6000813590506147438161471d565b92915050565b600080604083850312156147605761475f6146ab565b5b600061476e858286016146fe565b925050602061477f85828601614734565b9150509250929050565b60008115159050919050565b61479e81614789565b82525050565b60006020820190506147b96000830184614795565b92915050565b6000602082840312156147d5576147d46146ab565b5b60006147e3848285016146fe565b91505092915050565b6000819050919050565b600061481161480c614807846146b5565b6147ec565b6146b5565b9050919050565b6000614823826147f6565b9050919050565b600061483582614818565b9050919050565b6148458161482a565b82525050565b6000602082019050614860600083018461483c565b92915050565b61486f81614713565b82525050565b600060208201905061488a6000830184614866565b92915050565b6000602082840312156148a6576148a56146ab565b5b60006148b484828501614734565b91505092915050565b6000806000606084860312156148d6576148d56146ab565b5b60006148e4868287016146fe565b93505060206148f5868287016146fe565b925050604061490686828701614734565b9150509250925092565b614919816146d5565b82525050565b60006020820190506149346000830184614910565b92915050565b600060ff82169050919050565b6149508161493a565b82525050565b600060208201905061496b6000830184614947565b92915050565b61497a81614789565b811461498557600080fd5b50565b60008135905061499781614971565b92915050565b6000806000606084860312156149b6576149b56146ab565b5b60006149c486828701614734565b93505060206149d586828701614734565b92505060406149e686828701614988565b9150509250925092565b60008060408385031215614a0757614a066146ab565b5b6000614a15858286016146fe565b9250506020614a2685828601614988565b9150509250929050565b600080600060608486031215614a4957614a486146ab565b5b6000614a5786828701614734565b9350506020614a6886828701614734565b9250506040614a7986828701614734565b9150509250925092565b600060208284031215614a9957614a986146ab565b5b6000614aa784828501614988565b91505092915050565b60008060408385031215614ac757614ac66146ab565b5b6000614ad5858286016146fe565b9250506020614ae6858286016146fe565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614b2d82614635565b810181811067ffffffffffffffff82111715614b4c57614b4b614af5565b5b80604052505050565b6000614b5f6146a1565b9050614b6b8282614b24565b919050565b600067ffffffffffffffff821115614b8b57614b8a614af5565b5b602082029050602081019050919050565b600080fd5b6000614bb4614baf84614b70565b614b55565b90508083825260208201905060208402830185811115614bd757614bd6614b9c565b5b835b81811015614c005780614bec88826146fe565b845260208401935050602081019050614bd9565b5050509392505050565b600082601f830112614c1f57614c1e614af0565b5b8135614c2f848260208601614ba1565b91505092915050565b60008060408385031215614c4f57614c4e6146ab565b5b600083013567ffffffffffffffff811115614c6d57614c6c6146b0565b5b614c7985828601614c0a565b9250506020614c8a85828601614988565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cdb57607f821691505b60208210811415614cef57614cee614c94565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d2b6020836145f1565b9150614d3682614cf5565b602082019050919050565b60006020820190508181036000830152614d5a81614d1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d9b82614713565b9150614da683614713565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ddf57614dde614d61565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e2482614713565b9150614e2f83614713565b925082614e3f57614e3e614dea565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ea6602f836145f1565b9150614eb182614e4a565b604082019050919050565b60006020820190508181036000830152614ed581614e99565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f386028836145f1565b9150614f4382614edc565b604082019050919050565b60006020820190508181036000830152614f6781614f2b565b9050919050565b6000614f7982614713565b9150614f8483614713565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb957614fb8614d61565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006150206033836145f1565b915061502b82614fc4565b604082019050919050565b6000602082019050818103600083015261504f81615013565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150b26030836145f1565b91506150bd82615056565b604082019050919050565b600060208201905081810360008301526150e1816150a5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151446039836145f1565b915061514f826150e8565b604082019050919050565b6000602082019050818103600083015261517381615137565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006151d66025836145f1565b91506151e18261517a565b604082019050919050565b60006020820190508181036000830152615205816151c9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152686024836145f1565b91506152738261520c565b604082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006152fa6035836145f1565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061538c6034836145f1565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153fc82614713565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561542f5761542e614d61565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154966026836145f1565b91506154a18261543a565b604082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006155026020836145f1565b915061550d826154cc565b602082019050919050565b60006020820190508181036000830152615531816154f5565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615594602a836145f1565b915061559f82615538565b604082019050919050565b600060208201905081810360008301526155c381615587565b9050919050565b6000815190506155d98161471d565b92915050565b6000602082840312156155f5576155f46146ab565b5b6000615603848285016155ca565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156686024836145f1565b91506156738261560c565b604082019050919050565b600060208201905081810360008301526156978161565b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006156fa6022836145f1565b91506157058261569e565b604082019050919050565b60006020820190508181036000830152615729816156ed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061578c6025836145f1565b915061579782615730565b604082019050919050565b600060208201905081810360008301526157bb8161577f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061581e6023836145f1565b9150615829826157c2565b604082019050919050565b6000602082019050818103600083015261584d81615811565b9050919050565b7f596f752061726520737475636b20696e2074686520746172706974732e000000600082015250565b600061588a601d836145f1565b915061589582615854565b602082019050919050565b600060208201905081810360008301526158b98161587d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006158f66016836145f1565b9150615901826158c0565b602082019050919050565b60006020820190508181036000830152615925816158e9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159ae6049836145f1565b91506159b98261592c565b606082019050919050565b600060208201905081810360008301526159dd816159a1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a406035836145f1565b9150615a4b826159e4565b604082019050919050565b60006020820190508181036000830152615a6f81615a33565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615aac6013836145f1565b9150615ab782615a76565b602082019050919050565b60006020820190508181036000830152615adb81615a9f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b3e6036836145f1565b9150615b4982615ae2565b604082019050919050565b60006020820190508181036000830152615b6d81615b31565b9050919050565b6000615b7f82614713565b9150615b8a83614713565b925082821015615b9d57615b9c614d61565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c046026836145f1565b9150615c0f82615ba8565b604082019050919050565b60006020820190508181036000830152615c3381615bf7565b9050919050565b600081905092915050565b50565b6000615c55600083615c3a565b9150615c6082615c45565b600082019050919050565b6000615c7682615c48565b9150819050919050565b6000606082019050615c956000830186614866565b615ca26020830185614866565b615caf6040830184614866565b949350505050565b600081519050615cc6816146e7565b92915050565b600060208284031215615ce257615ce16146ab565b5b6000615cf084828501615cb7565b91505092915050565b6000819050919050565b6000615d1e615d19615d1484615cf9565b6147ec565b614713565b9050919050565b615d2e81615d03565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d69816146d5565b82525050565b6000615d7b8383615d60565b60208301905092915050565b6000602082019050919050565b6000615d9f82615d34565b615da98185615d3f565b9350615db483615d50565b8060005b83811015615de5578151615dcc8882615d6f565b9750615dd783615d87565b925050600181019050615db8565b5085935050505092915050565b600060a082019050615e076000830188614866565b615e146020830187615d25565b8181036040830152615e268186615d94565b9050615e356060830185614910565b615e426080830184614866565b9695505050505050565b600060c082019050615e616000830189614910565b615e6e6020830188614866565b615e7b6040830187615d25565b615e886060830186615d25565b615e956080830185614910565b615ea260a0830184614866565b979650505050505050565b600080600060608486031215615ec657615ec56146ab565b5b6000615ed4868287016155ca565b9350506020615ee5868287016155ca565b9250506040615ef6868287016155ca565b915050925092509256fea26469706673582212209f54824ff2377c6fbe882b2c00544b8b6f5129d6b94e05f2e4c5be22eee069be64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063e2f4560514610d8d578063e884f26014610db8578063ea09287314610de3578063f11a24d314610e0c576103c3565b8063c8c8ebe4116100dc578063c8c8ebe414610cbd578063d257b34f14610ce8578063d85ba06314610d25578063dd62ed3e14610d50576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c876d0b914610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea919061467f565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614749565b610f85565b60405161042791906147a4565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147bf565b610fa3565b60405161046491906147a4565b60405180910390f35b34801561047957600080fd5b50610482610fc3565b60405161048f919061484b565b60405180910390f35b3480156104a457600080fd5b506104ad610fe7565b6040516104ba9190614875565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147bf565b610ff1565b005b3480156104f857600080fd5b5061050161112d565b60405161050e9190614875565b60405180910390f35b34801561052357600080fd5b5061052c611133565b6040516105399190614875565b60405180910390f35b34801561054e57600080fd5b50610557611139565b6040516105649190614875565b60405180910390f35b34801561057957600080fd5b5061058261113f565b60405161058f9190614875565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614890565b611145565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148bd565b611254565b6040516105f591906147a4565b60405180910390f35b34801561060a57600080fd5b5061061361134c565b604051610620919061491f565b60405180910390f35b34801561063557600080fd5b5061063e611352565b60405161064b9190614875565b60405180910390f35b34801561066057600080fd5b50610669611358565b60405161067691906147a4565b60405180910390f35b34801561068b57600080fd5b5061069461136b565b6040516106a19190614956565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190614749565b611374565b6040516106de91906147a4565b60405180910390f35b3480156106f357600080fd5b506106fc611420565b604051610709919061491f565b60405180910390f35b34801561071e57600080fd5b50610727611444565b60405161073491906147a4565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147bf565b611457565b60405161077191906147a4565b60405180910390f35b34801561078657600080fd5b5061078f6114ad565b60405161079c9190614875565b60405180910390f35b3480156107b157600080fd5b506107ba6114b3565b6040516107c791906147a4565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147bf565b6114c6565b6040516108049190614875565b60405180910390f35b34801561081957600080fd5b5061082261150e565b005b34801561083057600080fd5b5061084b6004803603810190610846919061499d565b611596565b005b34801561085957600080fd5b506108626116d6565b60405161086f91906147a4565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149f0565b611776565b005b3480156108ad57600080fd5b506108b661184d565b6040516108c3919061491f565b60405180910390f35b3480156108d857600080fd5b506108e1611873565b6040516108ee9190614875565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a30565b611879565b005b34801561092c57600080fd5b50610935611932565b005b34801561094357600080fd5b5061094c6119ed565b604051610959919061491f565b60405180910390f35b34801561096e57600080fd5b50610977611a17565b604051610984919061491f565b60405180910390f35b34801561099957600080fd5b506109a2611a3d565b6040516109af9190614875565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a83565b611a43565b005b3480156109ed57600080fd5b506109f6611adc565b604051610a03919061467f565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149f0565b611b6e565b005b348015610a4157600080fd5b50610a4a611c87565b604051610a579190614875565b60405180910390f35b348015610a6c57600080fd5b50610a75611c8d565b604051610a829190614875565b60405180910390f35b348015610a9757600080fd5b50610aa0611c93565b604051610aad9190614875565b60405180910390f35b348015610ac257600080fd5b50610acb611c99565b604051610ad89190614875565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b039190614749565b611c9f565b604051610b1591906147a4565b60405180910390f35b348015610b2a57600080fd5b50610b33611d8a565b604051610b409190614875565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614749565b611d90565b604051610b7d91906147a4565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147bf565b611dae565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147bf565b611eea565b604051610be391906147a4565b60405180910390f35b348015610bf857600080fd5b50610c01611f0a565b604051610c0e91906147a4565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149f0565b611f1d565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a30565b612042565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614890565b6120fb565b005b348015610c9e57600080fd5b50610ca761220a565b604051610cb491906147a4565b60405180910390f35b348015610cc957600080fd5b50610cd261221d565b604051610cdf9190614875565b60405180910390f35b348015610cf457600080fd5b50610d0f6004803603810190610d0a9190614890565b612223565b604051610d1c91906147a4565b60405180910390f35b348015610d3157600080fd5b50610d3a612378565b604051610d479190614875565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d729190614ab0565b61237e565b604051610d849190614875565b60405180910390f35b348015610d9957600080fd5b50610da2612405565b604051610daf9190614875565b60405180910390f35b348015610dc457600080fd5b50610dcd61240b565b604051610dda91906147a4565b60405180910390f35b348015610def57600080fd5b50610e0a6004803603810190610e059190614c38565b6124ab565b005b348015610e1857600080fd5b50610e216125bc565b604051610e2e9190614875565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147bf565b6125c2565b005b348015610e6c57600080fd5b50610e756126ba565b604051610e829190614875565b60405180910390f35b348015610e9757600080fd5b50610ea06126c0565b604051610ead9190614875565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614890565b6126c6565b604051610eea91906147a4565b60405180910390f35b606060038054610f0290614cc3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614cc3565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f9261299e565b84846129a6565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ff961299e565b73ffffffffffffffffffffffffffffffffffffffff166110176119ed565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490614d41565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601e5481565b601d5481565b61114d61299e565b73ffffffffffffffffffffffffffffffffffffffff1661116b6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890614d41565b60405180910390fd5b670de0b6b3a76400006103e860016111d7610fe7565b6111e19190614d90565b6111eb9190614e19565b6111f59190614e19565b811015611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90614ebc565b60405180910390fd5b670de0b6b3a76400008161124b9190614d90565b60088190555050565b6000611261848484612b71565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ac61299e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614f4e565b60405180910390fd5b6113408561133861299e565b8584036129a6565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061141661138161299e565b84846001600061138f61299e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114119190614f6e565b6129a6565b6001905092915050565b7f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b781565b601160009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61151661299e565b73ffffffffffffffffffffffffffffffffffffffff166115346119ed565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190614d41565b60405180910390fd5b61159460006139ec565b565b61159e61299e565b73ffffffffffffffffffffffffffffffffffffffff166115bc6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990614d41565b60405180910390fd5b610258831015611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90615036565b60405180910390fd5b6103e8821115801561166a575060008210155b6116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906150c8565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116e061299e565b73ffffffffffffffffffffffffffffffffffffffff166116fe6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90614d41565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177e61299e565b73ffffffffffffffffffffffffffffffffffffffff1661179c6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990614d41565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b61188161299e565b73ffffffffffffffffffffffffffffffffffffffff1661189f6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614d41565b60405180910390fd5b82601681905550816017819055508060188190555060185460175460165461191d9190614f6e565b6119279190614f6e565b601581905550505050565b61193a61299e565b73ffffffffffffffffffffffffffffffffffffffff166119586119ed565b73ffffffffffffffffffffffffffffffffffffffff16146119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a590614d41565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b611a4b61299e565b73ffffffffffffffffffffffffffffffffffffffff16611a696119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690614d41565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611aeb90614cc3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1790614cc3565b8015611b645780601f10611b3957610100808354040283529160200191611b64565b820191906000526020600020905b815481529060010190602001808311611b4757829003601f168201915b5050505050905090565b611b7661299e565b73ffffffffffffffffffffffffffffffffffffffff16611b946119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614d41565b60405180910390fd5b7f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c709061515a565b60405180910390fd5b611c838282613ab2565b5050565b60185481565b60105481565b601f5481565b601c5481565b60008060016000611cae61299e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d62906151ec565b60405180910390fd5b611d7f611d7661299e565b858584036129a6565b600191505092915050565b600e5481565b6000611da4611d9d61299e565b8484612b71565b6001905092915050565b611db661299e565b73ffffffffffffffffffffffffffffffffffffffff16611dd46119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190614d41565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f2561299e565b73ffffffffffffffffffffffffffffffffffffffff16611f436119ed565b73ffffffffffffffffffffffffffffffffffffffff1614611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090614d41565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161203691906147a4565b60405180910390a25050565b61204a61299e565b73ffffffffffffffffffffffffffffffffffffffff166120686119ed565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614d41565b60405180910390fd5b82601a8190555081601b8190555080601c81905550601c54601b54601a546120e69190614f6e565b6120f09190614f6e565b601981905550505050565b61210361299e565b73ffffffffffffffffffffffffffffffffffffffff166121216119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216e90614d41565b60405180910390fd5b670de0b6b3a76400006103e8600561218d610fe7565b6121979190614d90565b6121a19190614e19565b6121ab9190614e19565b8110156121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e49061527e565b60405180910390fd5b670de0b6b3a7640000816122019190614d90565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061222d61299e565b73ffffffffffffffffffffffffffffffffffffffff1661224b6119ed565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890614d41565b60405180910390fd5b620186a060016122af610fe7565b6122b99190614d90565b6122c39190614e19565b821015612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90615310565b60405180910390fd5b6103e86005612312610fe7565b61231c9190614d90565b6123269190614e19565b821115612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906153a2565b60405180910390fd5b8160098190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061241561299e565b73ffffffffffffffffffffffffffffffffffffffff166124336119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614d41565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b6124b361299e565b73ffffffffffffffffffffffffffffffffffffffff166124d16119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614d41565b60405180910390fd5b60005b82518110156125b757816014600085848151811061254b5761254a6153c2565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806125af906153f1565b91505061252a565b505050565b60175481565b6125ca61299e565b73ffffffffffffffffffffffffffffffffffffffff166125e86119ed565b73ffffffffffffffffffffffffffffffffffffffff161461263e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590614d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a5906154ac565b60405180910390fd5b6126b7816139ec565b50565b601b5481565b600a5481565b60006126d061299e565b73ffffffffffffffffffffffffffffffffffffffff166126ee6119ed565b73ffffffffffffffffffffffffffffffffffffffff1614612744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273b90614d41565b60405180910390fd5b600f546010546127549190614f6e565b4211612795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c90615518565b60405180910390fd5b6103e88211156127da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d1906155aa565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b76040518263ffffffff1660e01b815260040161283c919061491f565b602060405180830381865afa158015612859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287d91906155df565b905060006128a861271061289a8685613b5390919063ffffffff16565b613b6990919063ffffffff16565b905060008111156128e1576128e07f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b761dead83613b7f565b5b60007f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561294e57600080fd5b505af1158015612962573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0d9061567e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90615710565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b649190614875565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd8906157a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890615834565b60405180910390fd5b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612cf55750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2b906158a0565b60405180910390fd5b6000811415612d4e57612d4983836000613b7f565b6139e7565b601160009054906101000a900460ff161561341157612d6b6119ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dd95750612da96119ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e125750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e4c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e655750600560149054906101000a900460ff16155b1561341057601160019054906101000a900460ff16612f5f57602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f1f5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f559061590c565b60405180910390fd5b5b601360009054906101000a900460ff161561312757612f7c6119ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561300357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561305b57507f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131265743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d8906159c4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ca5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327157600854811115613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b90615a56565b60405180910390fd5b600a54613220836114c6565b8261322b9190614f6e565b111561326c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326390615ac2565b60405180910390fd5b61340f565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133145750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133635760085481111561335e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335590615b54565b60405180910390fd5b61340e565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661340d57600a546133c0836114c6565b826133cb9190614f6e565b111561340c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340390615ac2565b60405180910390fd5b5b5b5b5b5b600061341c306114c6565b9050600060095482101590508080156134415750601160029054906101000a900460ff165b801561345a5750600560149054906101000a900460ff16155b80156134b05750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156135065750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561355c5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135a0576001600560146101000a81548160ff021916908315150217905550613584613e00565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156136065750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561361e5750600c60009054906101000a900460ff165b80156136395750600d54600e546136359190614f6e565b4210155b801561368f5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561369e5761369c6140e7565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137545750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561375e57600090505b600081156139d757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137c157506000601954115b1561388e576137ee60646137e060195488613b5390919063ffffffff16565b613b6990919063ffffffff16565b9050601954601b54826138019190614d90565b61380b9190614e19565b601e600082825461381c9190614f6e565b92505081905550601954601c54826138349190614d90565b61383e9190614e19565b601f600082825461384f9190614f6e565b92505081905550601954601a54826138679190614d90565b6138719190614e19565b601d60008282546138829190614f6e565b925050819055506139b3565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138e957506000601554115b156139b257613916606461390860155488613b5390919063ffffffff16565b613b6990919063ffffffff16565b9050601554601754826139299190614d90565b6139339190614e19565b601e60008282546139449190614f6e565b925050819055506015546018548261395c9190614d90565b6139669190614e19565b601f60008282546139779190614f6e565b925050819055506015546016548261398f9190614d90565b6139999190614e19565b601d60008282546139aa9190614f6e565b925050819055505b5b60008111156139c8576139c7873083613b7f565b5b80856139d49190615b74565b94505b6139e2878787613b7f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613b619190614d90565b905092915050565b60008183613b779190614e19565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be6906157a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5690615834565b60405180910390fd5b613c6a8383836142ad565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce790615c1a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d839190614f6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613de79190614875565b60405180910390a3613dfa8484846142b2565b50505050565b6000613e0b306114c6565b90506000601f54601d54601e54613e229190614f6e565b613e2c9190614f6e565b9050600080831480613e3e5750600082145b15613e4b575050506140e5565b6014600954613e5a9190614d90565b831115613e73576014600954613e709190614d90565b92505b6000600283601e5486613e869190614d90565b613e909190614e19565b613e9a9190614e19565b90506000613eb182866142b790919063ffffffff16565b90506000479050613ec1826142cd565b6000613ed682476142b790919063ffffffff16565b90506000613f0187613ef3601d5485613b5390919063ffffffff16565b613b6990919063ffffffff16565b90506000613f2c88613f1e601f5486613b5390919063ffffffff16565b613b6990919063ffffffff16565b90506000818385613f3d9190615b74565b613f479190615b74565b90506000601e819055506000601d819055506000601f81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613fa790615c6b565b60006040518083038185875af1925050503d8060008114613fe4576040519150601f19603f3d011682016040523d82523d6000602084013e613fe9565b606091505b505080985050600087118015613fff5750600081115b1561404c5761400e878261450a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601e5460405161404393929190615c80565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161409290615c6b565b60006040518083038185875af1925050503d80600081146140cf576040519150601f19603f3d011682016040523d82523d6000602084013e6140d4565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b76040518263ffffffff1660e01b815260040161414b919061491f565b602060405180830381865afa158015614168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061418c91906155df565b905060006141b96127106141ab600b5485613b5390919063ffffffff16565b613b6990919063ffffffff16565b905060008111156141f2576141f17f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b761dead83613b7f565b5b60007f0000000000000000000000001ee118eb408ee91b796dff3a73f105592b3dd2b790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561425f57600080fd5b505af1158015614273573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142c59190615b74565b905092915050565b6000600267ffffffffffffffff8111156142ea576142e9614af5565b5b6040519080825280602002602001820160405280156143185781602001602082028036833780820191505090505b50905030816000815181106143305761432f6153c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143f99190615ccc565b8160018151811061440d5761440c6153c2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614472307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144d4959493929190615df2565b600060405180830381600087803b1580156144ee57600080fd5b505af1158015614502573d6000803e3d6000fd5b505050505050565b614535307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161459c96959493929190615e4c565b60606040518083038185885af11580156145ba573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145df9190615ead565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614620578082015181840152602081019050614605565b8381111561462f576000848401525b50505050565b6000601f19601f8301169050919050565b6000614651826145e6565b61465b81856145f1565b935061466b818560208601614602565b61467481614635565b840191505092915050565b600060208201905081810360008301526146998184614646565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146e0826146b5565b9050919050565b6146f0816146d5565b81146146fb57600080fd5b50565b60008135905061470d816146e7565b92915050565b6000819050919050565b61472681614713565b811461473157600080fd5b50565b6000813590506147438161471d565b92915050565b600080604083850312156147605761475f6146ab565b5b600061476e858286016146fe565b925050602061477f85828601614734565b9150509250929050565b60008115159050919050565b61479e81614789565b82525050565b60006020820190506147b96000830184614795565b92915050565b6000602082840312156147d5576147d46146ab565b5b60006147e3848285016146fe565b91505092915050565b6000819050919050565b600061481161480c614807846146b5565b6147ec565b6146b5565b9050919050565b6000614823826147f6565b9050919050565b600061483582614818565b9050919050565b6148458161482a565b82525050565b6000602082019050614860600083018461483c565b92915050565b61486f81614713565b82525050565b600060208201905061488a6000830184614866565b92915050565b6000602082840312156148a6576148a56146ab565b5b60006148b484828501614734565b91505092915050565b6000806000606084860312156148d6576148d56146ab565b5b60006148e4868287016146fe565b93505060206148f5868287016146fe565b925050604061490686828701614734565b9150509250925092565b614919816146d5565b82525050565b60006020820190506149346000830184614910565b92915050565b600060ff82169050919050565b6149508161493a565b82525050565b600060208201905061496b6000830184614947565b92915050565b61497a81614789565b811461498557600080fd5b50565b60008135905061499781614971565b92915050565b6000806000606084860312156149b6576149b56146ab565b5b60006149c486828701614734565b93505060206149d586828701614734565b92505060406149e686828701614988565b9150509250925092565b60008060408385031215614a0757614a066146ab565b5b6000614a15858286016146fe565b9250506020614a2685828601614988565b9150509250929050565b600080600060608486031215614a4957614a486146ab565b5b6000614a5786828701614734565b9350506020614a6886828701614734565b9250506040614a7986828701614734565b9150509250925092565b600060208284031215614a9957614a986146ab565b5b6000614aa784828501614988565b91505092915050565b60008060408385031215614ac757614ac66146ab565b5b6000614ad5858286016146fe565b9250506020614ae6858286016146fe565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614b2d82614635565b810181811067ffffffffffffffff82111715614b4c57614b4b614af5565b5b80604052505050565b6000614b5f6146a1565b9050614b6b8282614b24565b919050565b600067ffffffffffffffff821115614b8b57614b8a614af5565b5b602082029050602081019050919050565b600080fd5b6000614bb4614baf84614b70565b614b55565b90508083825260208201905060208402830185811115614bd757614bd6614b9c565b5b835b81811015614c005780614bec88826146fe565b845260208401935050602081019050614bd9565b5050509392505050565b600082601f830112614c1f57614c1e614af0565b5b8135614c2f848260208601614ba1565b91505092915050565b60008060408385031215614c4f57614c4e6146ab565b5b600083013567ffffffffffffffff811115614c6d57614c6c6146b0565b5b614c7985828601614c0a565b9250506020614c8a85828601614988565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cdb57607f821691505b60208210811415614cef57614cee614c94565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d2b6020836145f1565b9150614d3682614cf5565b602082019050919050565b60006020820190508181036000830152614d5a81614d1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d9b82614713565b9150614da683614713565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ddf57614dde614d61565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e2482614713565b9150614e2f83614713565b925082614e3f57614e3e614dea565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614ea6602f836145f1565b9150614eb182614e4a565b604082019050919050565b60006020820190508181036000830152614ed581614e99565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f386028836145f1565b9150614f4382614edc565b604082019050919050565b60006020820190508181036000830152614f6781614f2b565b9050919050565b6000614f7982614713565b9150614f8483614713565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb957614fb8614d61565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006150206033836145f1565b915061502b82614fc4565b604082019050919050565b6000602082019050818103600083015261504f81615013565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150b26030836145f1565b91506150bd82615056565b604082019050919050565b600060208201905081810360008301526150e1816150a5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151446039836145f1565b915061514f826150e8565b604082019050919050565b6000602082019050818103600083015261517381615137565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006151d66025836145f1565b91506151e18261517a565b604082019050919050565b60006020820190508181036000830152615205816151c9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152686024836145f1565b91506152738261520c565b604082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006152fa6035836145f1565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061538c6034836145f1565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006153fc82614713565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561542f5761542e614d61565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154966026836145f1565b91506154a18261543a565b604082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006155026020836145f1565b915061550d826154cc565b602082019050919050565b60006020820190508181036000830152615531816154f5565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615594602a836145f1565b915061559f82615538565b604082019050919050565b600060208201905081810360008301526155c381615587565b9050919050565b6000815190506155d98161471d565b92915050565b6000602082840312156155f5576155f46146ab565b5b6000615603848285016155ca565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156686024836145f1565b91506156738261560c565b604082019050919050565b600060208201905081810360008301526156978161565b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006156fa6022836145f1565b91506157058261569e565b604082019050919050565b60006020820190508181036000830152615729816156ed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061578c6025836145f1565b915061579782615730565b604082019050919050565b600060208201905081810360008301526157bb8161577f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061581e6023836145f1565b9150615829826157c2565b604082019050919050565b6000602082019050818103600083015261584d81615811565b9050919050565b7f596f752061726520737475636b20696e2074686520746172706974732e000000600082015250565b600061588a601d836145f1565b915061589582615854565b602082019050919050565b600060208201905081810360008301526158b98161587d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006158f66016836145f1565b9150615901826158c0565b602082019050919050565b60006020820190508181036000830152615925816158e9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159ae6049836145f1565b91506159b98261592c565b606082019050919050565b600060208201905081810360008301526159dd816159a1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a406035836145f1565b9150615a4b826159e4565b604082019050919050565b60006020820190508181036000830152615a6f81615a33565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615aac6013836145f1565b9150615ab782615a76565b602082019050919050565b60006020820190508181036000830152615adb81615a9f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b3e6036836145f1565b9150615b4982615ae2565b604082019050919050565b60006020820190508181036000830152615b6d81615b31565b9050919050565b6000615b7f82614713565b9150615b8a83614713565b925082821015615b9d57615b9c614d61565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c046026836145f1565b9150615c0f82615ba8565b604082019050919050565b60006020820190508181036000830152615c3381615bf7565b9050919050565b600081905092915050565b50565b6000615c55600083615c3a565b9150615c6082615c45565b600082019050919050565b6000615c7682615c48565b9150819050919050565b6000606082019050615c956000830186614866565b615ca26020830185614866565b615caf6040830184614866565b949350505050565b600081519050615cc6816146e7565b92915050565b600060208284031215615ce257615ce16146ab565b5b6000615cf084828501615cb7565b91505092915050565b6000819050919050565b6000615d1e615d19615d1484615cf9565b6147ec565b614713565b9050919050565b615d2e81615d03565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d69816146d5565b82525050565b6000615d7b8383615d60565b60208301905092915050565b6000602082019050919050565b6000615d9f82615d34565b615da98185615d3f565b9350615db483615d50565b8060005b83811015615de5578151615dcc8882615d6f565b9750615dd783615d87565b925050600181019050615db8565b5085935050505092915050565b600060a082019050615e076000830188614866565b615e146020830187615d25565b8181036040830152615e268186615d94565b9050615e356060830185614910565b615e426080830184614866565b9695505050505050565b600060c082019050615e616000830189614910565b615e6e6020830188614866565b615e7b6040830187615d25565b615e886060830186615d25565b615e956080830185614910565b615ea260a0830184614866565b979650505050505050565b600080600060608486031215615ec657615ec56146ab565b5b6000615ed4868287016155ca565b9350506020615ee5868287016155ca565b9250506040615ef6868287016155ca565b915050925092509256fea26469706673582212209f54824ff2377c6fbe882b2c00544b8b6f5129d6b94e05f2e4c5be22eee069be64736f6c634300080a0033
Deployed Bytecode Sourcemap
32845:19642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9673:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11840:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34518:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32919:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10793:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41732:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33485:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33299:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34302:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34262;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38980:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12491:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33022:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33395:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33355:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10635:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13392:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32977:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33583:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41897:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34117:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33663:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10964:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2908:103;;;;;;;;;;;;;:::i;:::-;;50069:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38088:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39736:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33114:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34010;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40107:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37881:155;;;;;;;;;;;;;:::i;:::-;;2257:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33151:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34152:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39999:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9892:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40985:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34084:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33539:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34342:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34228:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14110:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33447:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11304:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41493:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34739:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33623:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40795:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40447:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39472:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33881:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33184:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38475:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33976:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11542:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38270:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39263:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34047:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3166:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34190:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33266:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51428:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9673:100;9727:13;9760:5;9753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9673:100;:::o;11840:169::-;11923:4;11940:39;11949:12;:10;:12::i;:::-;11963:7;11972:6;11940:8;:39::i;:::-;11997:4;11990:11;;11840:169;;;;:::o;34518:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32919:51::-;;;:::o;10793:108::-;10854:7;10881:12;;10874:19;;10793:108;:::o;41732:157::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41839:9:::1;;;;;;;;;;;41811:38;;41828:9;41811:38;;;;;;;;;;;;41872:9;41860;;:21;;;;;;;;;;;;;;;;;;41732:157:::0;:::o;33485:47::-;;;;:::o;33299:36::-;;;;:::o;34302:33::-;;;;:::o;34262:::-;;;;:::o;38980:275::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39117:4:::1;39109;39104:1;39088:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39087:26;;;;:::i;:::-;39086:35;;;;:::i;:::-;39076:6;:45;;39054:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39240:6;39230;:17;;;;:::i;:::-;39207:20;:40;;;;38980:275:::0;:::o;12491:492::-;12631:4;12648:36;12658:6;12666:9;12677:6;12648:9;:36::i;:::-;12697:24;12724:11;:19;12736:6;12724:19;;;;;;;;;;;;;;;:33;12744:12;:10;:12::i;:::-;12724:33;;;;;;;;;;;;;;;;12697:60;;12796:6;12776:16;:26;;12768:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12883:57;12892:6;12900:12;:10;:12::i;:::-;12933:6;12914:16;:25;12883:8;:57::i;:::-;12971:4;12964:11;;;12491:492;;;;;:::o;33022:53::-;33068:6;33022:53;:::o;33395:45::-;;;;:::o;33355:33::-;;;;;;;;;;;;;:::o;10635:93::-;10693:5;10718:2;10711:9;;10635:93;:::o;13392:215::-;13480:4;13497:80;13506:12;:10;:12::i;:::-;13520:7;13566:10;13529:11;:25;13541:12;:10;:12::i;:::-;13529:25;;;;;;;;;;;;;;;:34;13555:7;13529:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13497:8;:80::i;:::-;13595:4;13588:11;;13392:215;;;;:::o;32977:38::-;;;:::o;33583:33::-;;;;;;;;;;;;;:::o;41897:126::-;41963:4;41987:19;:28;42007:7;41987:28;;;;;;;;;;;;;;;;;;;;;;;;;41980:35;;41897:126;;;:::o;34117:28::-;;;;:::o;33663:31::-;;;;;;;;;;;;;:::o;10964:127::-;11038:7;11065:9;:18;11075:7;11065:18;;;;;;;;;;;;;;;;11058:25;;10964:127;;;:::o;2908:103::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:30:::1;3000:1;2973:18;:30::i;:::-;2908:103::o:0;50069:555::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50271:3:::1;50248:19;:26;;50226:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50398:4;50386:8;:16;;:33;;;;;50418:1;50406:8;:13;;50386:33;50364:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50524:19;50506:15;:37;;;;50573:8;50554:16;:27;;;;50608:8;50592:13;;:24;;;;;;;;;;;;;;;;;;50069:555:::0;;;:::o;38088:121::-;38140:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38174:5:::1;38157:14;;:22;;;;;;;;;;;;;;;;;;38197:4;38190:11;;38088:121:::0;:::o;39736:167::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39891:4:::1;39849:31;:39;39881:6;39849:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39736:167:::0;;:::o;33114:30::-;;;;;;;;;;;;;:::o;34010:::-;;;;:::o;40107:332::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40275:13:::1;40257:15;:31;;;;40317:13;40299:15;:31;;;;40353:7;40341:9;:19;;;;40422:9;;40404:15;;40386;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40371:12;:60;;;;40107:332:::0;;;:::o;37881:155::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37952:4:::1;37936:13;;:20;;;;;;;;;;;;;;;;;;37981:4;37967:11;;:18;;;;;;;;;;;;;;;;;;38013:15;37996:14;:32;;;;37881:155::o:0;2257:87::-;2303:7;2330:6;;;;;;;;;;;2323:13;;2257:87;:::o;33151:24::-;;;;;;;;;;;;;:::o;34152:31::-;;;;:::o;39999:100::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40084:7:::1;40070:11;;:21;;;;;;;;;;;;;;;;;;39999:100:::0;:::o;9892:104::-;9948:13;9981:7;9974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9892:104;:::o;40985:304::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41129:13:::1;41121:21;;:4;:21;;;;41099:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41240:41;41269:4;41275:5;41240:28;:41::i;:::-;40985:304:::0;;:::o;34084:24::-;;;;:::o;33539:35::-;;;;:::o;34342:27::-;;;;:::o;34228:25::-;;;;:::o;14110:413::-;14203:4;14220:24;14247:11;:25;14259:12;:10;:12::i;:::-;14247:25;;;;;;;;;;;;;;;:34;14273:7;14247:34;;;;;;;;;;;;;;;;14220:61;;14320:15;14300:16;:35;;14292:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14413:67;14422:12;:10;:12::i;:::-;14436:7;14464:15;14445:16;:34;14413:8;:67::i;:::-;14511:4;14504:11;;;14110:413;;;;:::o;33447:29::-;;;;:::o;11304:175::-;11390:4;11407:42;11417:12;:10;:12::i;:::-;11431:9;11442:6;11407:9;:42::i;:::-;11467:4;11460:11;;11304:175;;;;:::o;41493:231::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41653:15:::1;;;;;;;;;;;41610:59;;41633:18;41610:59;;;;;;;;;;;;41698:18;41680:15;;:36;;;;;;;;;;;;;;;;;;41493:231:::0;:::o;34739:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33623:33::-;;;;;;;;;;;;;:::o;40795:182::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40911:8:::1;40880:19;:28;40900:7;40880:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40951:7;40935:34;;;40960:8;40935:34;;;;;;:::i;:::-;;;;;;;;40795:182:::0;;:::o;40447:340::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40617:13:::1;40598:16;:32;;;;40660:13;40641:16;:32;;;;40697:7;40684:10;:20;;;;40769:10;;40750:16;;40731;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40715:13;:64;;;;40447:340:::0;;;:::o;39472:256::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39612:4:::1;39604;39599:1;39583:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39582:26;;;;:::i;:::-;39581:35;;;;:::i;:::-;39571:6;:45;;39549:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39713:6;39703;:17;;;;:::i;:::-;39691:9;:29;;;;39472:256:::0;:::o;33881:39::-;;;;;;;;;;;;;:::o;33184:35::-;;;;:::o;38475:497::-;38583:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38662:6:::1;38657:1;38641:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38640:28;;;;:::i;:::-;38627:9;:41;;38605:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38817:4;38812:1;38796:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38795:26;;;;:::i;:::-;38782:9;:39;;38760:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38933:9;38912:18;:30;;;;38960:4;38953:11;;38475:497:::0;;;:::o;33976:27::-;;;;:::o;11542:151::-;11631:7;11658:11;:18;11670:5;11658:18;;;;;;;;;;;;;;;:27;11677:7;11658:27;;;;;;;;;;;;;;;;11651:34;;11542:151;;;;:::o;33226:33::-;;;;:::o;38270:135::-;38330:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38370:5:::1;38347:20;;:28;;;;;;;;;;;;;;;;;;38393:4;38386:11;;38270:135:::0;:::o;39263:199::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39354:6:::1;39349:106;39370:9;:16;39366:1;:20;39349:106;;;39436:7;39412;:21;39420:9;39430:1;39420:12;;;;;;;;:::i;:::-;;;;;;;;39412:21;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;39388:3;;;;;:::i;:::-;;;;39349:106;;;;39263:199:::0;;:::o;34047:30::-;;;;:::o;3166:201::-;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3275:1:::1;3255:22;;:8;:22;;;;3247:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3331:28;3350:8;3331:18;:28::i;:::-;3166:201:::0;:::o;34190:31::-;;;;:::o;33266:24::-;;;;:::o;51428:1056::-;51539:4;2488:12;:10;:12::i;:::-;2477:23;;:7;:5;:7::i;:::-;:23;;;2469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51624:19:::1;;51601:20;;:42;;;;:::i;:::-;51583:15;:60;51561:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51733:4;51722:7;:15;;51714:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51818:15;51795:20;:38;;;;51888:28;51919:4;:14;;;51934:13;51919:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51888:60;;51998:20;52021:44;52059:5;52021:33;52046:7;52021:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51998:67;;52185:1;52170:12;:16;52166:110;;;52203:61;52219:13;52242:6;52251:12;52203:15;:61::i;:::-;52166:110;52351:19;52388:13;52351:51;;52413:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52440:14;;;;;;;;;;52472:4;52465:11;;;;;51428:1056:::0;;;:::o;930:98::-;983:7;1010:10;1003:17;;930:98;:::o;17794:380::-;17947:1;17930:19;;:5;:19;;;;17922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18028:1;18009:21;;:7;:21;;;;18001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18112:6;18082:11;:18;18094:5;18082:18;;;;;;;;;;;;;;;:27;18101:7;18082:27;;;;;;;;;;;;;;;:36;;;;18150:7;18134:32;;18143:5;18134:32;;;18159:6;18134:32;;;;;;:::i;:::-;;;;;;;;17794:380;;;:::o;42081:5094::-;42229:1;42213:18;;:4;:18;;;;42205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42306:1;42292:16;;:2;:16;;;;42284:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42368:7;:11;42376:2;42368:11;;;;;;;;;;;;;;;;;;;;;;;;;42367:12;:30;;;;;42384:7;:13;42392:4;42384:13;;;;;;;;;;;;;;;;;;;;;;;;;42383:14;42367:30;42359:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;42458:1;42448:6;:11;42444:93;;;42476:28;42492:4;42498:2;42502:1;42476:15;:28::i;:::-;42519:7;;42444:93;42553:14;;;;;;;;;;;42549:2487;;;42614:7;:5;:7::i;:::-;42606:15;;:4;:15;;;;:49;;;;;42648:7;:5;:7::i;:::-;42642:13;;:2;:13;;;;42606:49;:86;;;;;42690:1;42676:16;;:2;:16;;;;42606:86;:128;;;;;42727:6;42713:21;;:2;:21;;;;42606:128;:158;;;;;42756:8;;;;;;;;;;;42755:9;42606:158;42584:2441;;;42804:13;;;;;;;;;;;42799:223;;42876:19;:25;42896:4;42876:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42905:19;:23;42925:2;42905:23;;;;;;;;;;;;;;;;;;;;;;;;;42876:52;42842:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42799:223;43178:20;;;;;;;;;;;43174:641;;;43259:7;:5;:7::i;:::-;43253:13;;:2;:13;;;;:72;;;;;43309:15;43295:30;;:2;:30;;;;43253:72;:129;;;;;43368:13;43354:28;;:2;:28;;;;43253:129;43223:573;;;43546:12;43471:28;:39;43500:9;43471:39;;;;;;;;;;;;;;;;:87;43433:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43760:12;43718:28;:39;43747:9;43718:39;;;;;;;;;;;;;;;:54;;;;43223:573;43174:641;43889:25;:31;43915:4;43889:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43946:31;:35;43978:2;43946:35;;;;;;;;;;;;;;;;;;;;;;;;;43945:36;43889:92;43863:1147;;;44068:20;;44058:6;:30;;44024:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44276:9;;44259:13;44269:2;44259:9;:13::i;:::-;44250:6;:22;;;;:::i;:::-;:35;;44216:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43863:1147;;;44454:25;:29;44480:2;44454:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44509:31;:37;44541:4;44509:37;;;;;;;;;;;;;;;;;;;;;;;;;44508:38;44454:92;44428:582;;;44633:20;;44623:6;:30;;44589:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44428:582;;;44790:31;:35;44822:2;44790:35;;;;;;;;;;;;;;;;;;;;;;;;;44785:225;;44910:9;;44893:13;44903:2;44893:9;:13::i;:::-;44884:6;:22;;;;:::i;:::-;:35;;44850:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44785:225;44428:582;43863:1147;42584:2441;42549:2487;45048:28;45079:24;45097:4;45079:9;:24::i;:::-;45048:55;;45116:12;45155:18;;45131:20;:42;;45116:57;;45204:7;:35;;;;;45228:11;;;;;;;;;;;45204:35;:61;;;;;45257:8;;;;;;;;;;;45256:9;45204:61;:110;;;;;45283:25;:31;45309:4;45283:31;;;;;;;;;;;;;;;;;;;;;;;;;45282:32;45204:110;:153;;;;;45332:19;:25;45352:4;45332:25;;;;;;;;;;;;;;;;;;;;;;;;;45331:26;45204:153;:194;;;;;45375:19;:23;45395:2;45375:23;;;;;;;;;;;;;;;;;;;;;;;;;45374:24;45204:194;45186:326;;;45436:4;45425:8;;:15;;;;;;;;;;;;;;;;;;45457:10;:8;:10::i;:::-;45495:5;45484:8;;:16;;;;;;;;;;;;;;;;;;45186:326;45543:8;;;;;;;;;;;45542:9;:55;;;;;45568:25;:29;45594:2;45568:29;;;;;;;;;;;;;;;;;;;;;;;;;45542:55;:85;;;;;45614:13;;;;;;;;;;;45542:85;:153;;;;;45680:15;;45663:14;;:32;;;;:::i;:::-;45644:15;:51;;45542:153;:196;;;;;45713:19;:25;45733:4;45713:25;;;;;;;;;;;;;;;;;;;;;;;;;45712:26;45542:196;45524:282;;;45765:29;:27;:29::i;:::-;;45524:282;45818:12;45834:8;;;;;;;;;;;45833:9;45818:24;;45944:19;:25;45964:4;45944:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45973:19;:23;45993:2;45973:23;;;;;;;;;;;;;;;;;;;;;;;;;45944:52;45940:100;;;46023:5;46013:15;;45940:100;46052:12;46157:7;46153:969;;;46209:25;:29;46235:2;46209:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46258:1;46242:13;;:17;46209:50;46205:768;;;46287:34;46317:3;46287:25;46298:13;;46287:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46280:41;;46390:13;;46370:16;;46363:4;:23;;;;:::i;:::-;46362:41;;;;:::i;:::-;46340:18;;:63;;;;;;;:::i;:::-;;;;;;;;46460:13;;46446:10;;46439:4;:17;;;;:::i;:::-;46438:35;;;;:::i;:::-;46422:12;;:51;;;;;;;:::i;:::-;;;;;;;;46542:13;;46522:16;;46515:4;:23;;;;:::i;:::-;46514:41;;;;:::i;:::-;46492:18;;:63;;;;;;;:::i;:::-;;;;;;;;46205:768;;;46617:25;:31;46643:4;46617:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46667:1;46652:12;;:16;46617:51;46613:360;;;46696:33;46725:3;46696:24;46707:12;;46696:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46689:40;;46797:12;;46778:15;;46771:4;:22;;;;:::i;:::-;46770:39;;;;:::i;:::-;46748:18;;:61;;;;;;;:::i;:::-;;;;;;;;46865:12;;46852:9;;46845:4;:16;;;;:::i;:::-;46844:33;;;;:::i;:::-;46828:12;;:49;;;;;;;:::i;:::-;;;;;;;;46945:12;;46926:15;;46919:4;:22;;;;:::i;:::-;46918:39;;;;:::i;:::-;46896:18;;:61;;;;;;;:::i;:::-;;;;;;;;46613:360;46205:768;47000:1;46993:4;:8;46989:91;;;47022:42;47038:4;47052;47059;47022:15;:42::i;:::-;46989:91;47106:4;47096:14;;;;;:::i;:::-;;;46153:969;47134:33;47150:4;47156:2;47160:6;47134:15;:33::i;:::-;42194:4981;;;;42081:5094;;;;:::o;3527:191::-;3601:16;3620:6;;;;;;;;;;;3601:25;;3646:8;3637:6;;:17;;;;;;;;;;;;;;;;;;3701:8;3670:40;;3691:8;3670:40;;;;;;;;;;;;3590:128;3527:191;:::o;41297:188::-;41414:5;41380:25;:31;41406:4;41380:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41471:5;41437:40;;41465:4;41437:40;;;;;;;;;;;;41297:188;;:::o;23247:98::-;23305:7;23336:1;23332;:5;;;;:::i;:::-;23325:12;;23247:98;;;;:::o;23646:::-;23704:7;23735:1;23731;:5;;;;:::i;:::-;23724:12;;23646:98;;;;:::o;15013:733::-;15171:1;15153:20;;:6;:20;;;;15145:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15255:1;15234:23;;:9;:23;;;;15226:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15310:47;15331:6;15339:9;15350:6;15310:20;:47::i;:::-;15370:21;15394:9;:17;15404:6;15394:17;;;;;;;;;;;;;;;;15370:41;;15447:6;15430:13;:23;;15422:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15568:6;15552:13;:22;15532:9;:17;15542:6;15532:17;;;;;;;;;;;;;;;:42;;;;15620:6;15596:9;:20;15606:9;15596:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15661:9;15644:35;;15653:6;15644:35;;;15672:6;15644:35;;;;;;:::i;:::-;;;;;;;;15692:46;15712:6;15720:9;15731:6;15692:19;:46::i;:::-;15134:612;15013:733;;;:::o;48305:1756::-;48344:23;48370:24;48388:4;48370:9;:24::i;:::-;48344:50;;48405:25;48501:12;;48467:18;;48433;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48405:108;;48524:12;48572:1;48553:15;:20;:46;;;;48598:1;48577:17;:22;48553:46;48549:85;;;48616:7;;;;;48549:85;48689:2;48668:18;;:23;;;;:::i;:::-;48650:15;:41;48646:115;;;48747:2;48726:18;;:23;;;;:::i;:::-;48708:41;;48646:115;48822:23;48935:1;48902:17;48867:18;;48849:15;:36;;;;:::i;:::-;48848:71;;;;:::i;:::-;:88;;;;:::i;:::-;48822:114;;48947:26;48976:36;48996:15;48976;:19;;:36;;;;:::i;:::-;48947:65;;49025:25;49053:21;49025:49;;49087:36;49104:18;49087:16;:36::i;:::-;49136:18;49157:44;49183:17;49157:21;:25;;:44;;;;:::i;:::-;49136:65;;49214:23;49240:81;49293:17;49240:34;49255:18;;49240:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49214:107;;49332:17;49352:51;49385:17;49352:28;49367:12;;49352:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49332:71;;49416:23;49473:9;49455:15;49442:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49416:66;;49516:1;49495:18;:22;;;;49549:1;49528:18;:22;;;;49576:1;49561:12;:16;;;;49612:9;;;;;;;;;;;49604:23;;49635:9;49604:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49590:59;;;;;49684:1;49666:15;:19;:42;;;;;49707:1;49689:15;:19;49666:42;49662:278;;;49725:46;49738:15;49755;49725:12;:46::i;:::-;49791:137;49824:18;49861:15;49895:18;;49791:137;;;;;;;;:::i;:::-;;;;;;;;49662:278;49974:15;;;;;;;;;;;49966:29;;50017:21;49966:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49952:101;;;;;48333:1728;;;;;;;;;;48305:1756;:::o;50632:788::-;50689:4;50723:15;50706:14;:32;;;;50793:28;50824:4;:14;;;50839:13;50824:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50793:60;;50903:20;50926:77;50987:5;50926:42;50951:16;;50926:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50903:100;;51123:1;51108:12;:16;51104:110;;;51141:61;51157:13;51180:6;51189:12;51141:15;:61::i;:::-;51104:110;51289:19;51326:13;51289:51;;51351:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51378:12;;;;;;;;;;51408:4;51401:11;;;;;50632:788;:::o;18774:125::-;;;;:::o;19503:124::-;;;;:::o;22890:98::-;22948:7;22979:1;22975;:5;;;;:::i;:::-;22968:12;;22890:98;;;;:::o;47183:589::-;47309:21;47347:1;47333:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47309:40;;47378:4;47360;47365:1;47360:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47404:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47394:4;47399:1;47394:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47439:62;47456:4;47471:15;47489:11;47439:8;:62::i;:::-;47540:15;:66;;;47621:11;47647:1;47691:4;47718;47738:15;47540:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47238:534;47183:589;:::o;47780:517::-;47928:62;47945:4;47960:15;47978:11;47928:8;:62::i;:::-;48033:15;:31;;;48072:9;48105:4;48125:11;48151:1;48194;33068:6;48263:15;48033:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47780:517;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:117::-;9798:1;9795;9788:12;9812:180;9860:77;9857:1;9850:88;9957:4;9954:1;9947:15;9981:4;9978:1;9971:15;9998:281;10081:27;10103:4;10081:27;:::i;:::-;10073:6;10069:40;10211:6;10199:10;10196:22;10175:18;10163:10;10160:34;10157:62;10154:88;;;10222:18;;:::i;:::-;10154:88;10262:10;10258:2;10251:22;10041:238;9998:281;;:::o;10285:129::-;10319:6;10346:20;;:::i;:::-;10336:30;;10375:33;10403:4;10395:6;10375:33;:::i;:::-;10285:129;;;:::o;10420:311::-;10497:4;10587:18;10579:6;10576:30;10573:56;;;10609:18;;:::i;:::-;10573:56;10659:4;10651:6;10647:17;10639:25;;10719:4;10713;10709:15;10701:23;;10420:311;;;:::o;10737:117::-;10846:1;10843;10836:12;10877:710;10973:5;10998:81;11014:64;11071:6;11014:64;:::i;:::-;10998:81;:::i;:::-;10989:90;;11099:5;11128:6;11121:5;11114:21;11162:4;11155:5;11151:16;11144:23;;11215:4;11207:6;11203:17;11195:6;11191:30;11244:3;11236:6;11233:15;11230:122;;;11263:79;;:::i;:::-;11230:122;11378:6;11361:220;11395:6;11390:3;11387:15;11361:220;;;11470:3;11499:37;11532:3;11520:10;11499:37;:::i;:::-;11494:3;11487:50;11566:4;11561:3;11557:14;11550:21;;11437:144;11421:4;11416:3;11412:14;11405:21;;11361:220;;;11365:21;10979:608;;10877:710;;;;;:::o;11610:370::-;11681:5;11730:3;11723:4;11715:6;11711:17;11707:27;11697:122;;11738:79;;:::i;:::-;11697:122;11855:6;11842:20;11880:94;11970:3;11962:6;11955:4;11947:6;11943:17;11880:94;:::i;:::-;11871:103;;11687:293;11610:370;;;;:::o;11986:678::-;12076:6;12084;12133:2;12121:9;12112:7;12108:23;12104:32;12101:119;;;12139:79;;:::i;:::-;12101:119;12287:1;12276:9;12272:17;12259:31;12317:18;12309:6;12306:30;12303:117;;;12339:79;;:::i;:::-;12303:117;12444:78;12514:7;12505:6;12494:9;12490:22;12444:78;:::i;:::-;12434:88;;12230:302;12571:2;12597:50;12639:7;12630:6;12619:9;12615:22;12597:50;:::i;:::-;12587:60;;12542:115;11986:678;;;;;:::o;12670:180::-;12718:77;12715:1;12708:88;12815:4;12812:1;12805:15;12839:4;12836:1;12829:15;12856:320;12900:6;12937:1;12931:4;12927:12;12917:22;;12984:1;12978:4;12974:12;13005:18;12995:81;;13061:4;13053:6;13049:17;13039:27;;12995:81;13123:2;13115:6;13112:14;13092:18;13089:38;13086:84;;;13142:18;;:::i;:::-;13086:84;12907:269;12856:320;;;:::o;13182:182::-;13322:34;13318:1;13310:6;13306:14;13299:58;13182:182;:::o;13370:366::-;13512:3;13533:67;13597:2;13592:3;13533:67;:::i;:::-;13526:74;;13609:93;13698:3;13609:93;:::i;:::-;13727:2;13722:3;13718:12;13711:19;;13370:366;;;:::o;13742:419::-;13908:4;13946:2;13935:9;13931:18;13923:26;;13995:9;13989:4;13985:20;13981:1;13970:9;13966:17;13959:47;14023:131;14149:4;14023:131;:::i;:::-;14015:139;;13742:419;;;:::o;14167:180::-;14215:77;14212:1;14205:88;14312:4;14309:1;14302:15;14336:4;14333:1;14326:15;14353:348;14393:7;14416:20;14434:1;14416:20;:::i;:::-;14411:25;;14450:20;14468:1;14450:20;:::i;:::-;14445:25;;14638:1;14570:66;14566:74;14563:1;14560:81;14555:1;14548:9;14541:17;14537:105;14534:131;;;14645:18;;:::i;:::-;14534:131;14693:1;14690;14686:9;14675:20;;14353:348;;;;:::o;14707:180::-;14755:77;14752:1;14745:88;14852:4;14849:1;14842:15;14876:4;14873:1;14866:15;14893:185;14933:1;14950:20;14968:1;14950:20;:::i;:::-;14945:25;;14984:20;15002:1;14984:20;:::i;:::-;14979:25;;15023:1;15013:35;;15028:18;;:::i;:::-;15013:35;15070:1;15067;15063:9;15058:14;;14893:185;;;;:::o;15084:234::-;15224:34;15220:1;15212:6;15208:14;15201:58;15293:17;15288:2;15280:6;15276:15;15269:42;15084:234;:::o;15324:366::-;15466:3;15487:67;15551:2;15546:3;15487:67;:::i;:::-;15480:74;;15563:93;15652:3;15563:93;:::i;:::-;15681:2;15676:3;15672:12;15665:19;;15324:366;;;:::o;15696:419::-;15862:4;15900:2;15889:9;15885:18;15877:26;;15949:9;15943:4;15939:20;15935:1;15924:9;15920:17;15913:47;15977:131;16103:4;15977:131;:::i;:::-;15969:139;;15696:419;;;:::o;16121:227::-;16261:34;16257:1;16249:6;16245:14;16238:58;16330:10;16325:2;16317:6;16313:15;16306:35;16121:227;:::o;16354:366::-;16496:3;16517:67;16581:2;16576:3;16517:67;:::i;:::-;16510:74;;16593:93;16682:3;16593:93;:::i;:::-;16711:2;16706:3;16702:12;16695:19;;16354:366;;;:::o;16726:419::-;16892:4;16930:2;16919:9;16915:18;16907:26;;16979:9;16973:4;16969:20;16965:1;16954:9;16950:17;16943:47;17007:131;17133:4;17007:131;:::i;:::-;16999:139;;16726:419;;;:::o;17151:305::-;17191:3;17210:20;17228:1;17210:20;:::i;:::-;17205:25;;17244:20;17262:1;17244:20;:::i;:::-;17239:25;;17398:1;17330:66;17326:74;17323:1;17320:81;17317:107;;;17404:18;;:::i;:::-;17317:107;17448:1;17445;17441:9;17434:16;;17151:305;;;;:::o;17462:238::-;17602:34;17598:1;17590:6;17586:14;17579:58;17671:21;17666:2;17658:6;17654:15;17647:46;17462:238;:::o;17706:366::-;17848:3;17869:67;17933:2;17928:3;17869:67;:::i;:::-;17862:74;;17945:93;18034:3;17945:93;:::i;:::-;18063:2;18058:3;18054:12;18047:19;;17706:366;;;:::o;18078:419::-;18244:4;18282:2;18271:9;18267:18;18259:26;;18331:9;18325:4;18321:20;18317:1;18306:9;18302:17;18295:47;18359:131;18485:4;18359:131;:::i;:::-;18351:139;;18078:419;;;:::o;18503:235::-;18643:34;18639:1;18631:6;18627:14;18620:58;18712:18;18707:2;18699:6;18695:15;18688:43;18503:235;:::o;18744:366::-;18886:3;18907:67;18971:2;18966:3;18907:67;:::i;:::-;18900:74;;18983:93;19072:3;18983:93;:::i;:::-;19101:2;19096:3;19092:12;19085:19;;18744:366;;;:::o;19116:419::-;19282:4;19320:2;19309:9;19305:18;19297:26;;19369:9;19363:4;19359:20;19355:1;19344:9;19340:17;19333:47;19397:131;19523:4;19397:131;:::i;:::-;19389:139;;19116:419;;;:::o;19541:244::-;19681:34;19677:1;19669:6;19665:14;19658:58;19750:27;19745:2;19737:6;19733:15;19726:52;19541:244;:::o;19791:366::-;19933:3;19954:67;20018:2;20013:3;19954:67;:::i;:::-;19947:74;;20030:93;20119:3;20030:93;:::i;:::-;20148:2;20143:3;20139:12;20132:19;;19791:366;;;:::o;20163:419::-;20329:4;20367:2;20356:9;20352:18;20344:26;;20416:9;20410:4;20406:20;20402:1;20391:9;20387:17;20380:47;20444:131;20570:4;20444:131;:::i;:::-;20436:139;;20163:419;;;:::o;20588:224::-;20728:34;20724:1;20716:6;20712:14;20705:58;20797:7;20792:2;20784:6;20780:15;20773:32;20588:224;:::o;20818:366::-;20960:3;20981:67;21045:2;21040:3;20981:67;:::i;:::-;20974:74;;21057:93;21146:3;21057:93;:::i;:::-;21175:2;21170:3;21166:12;21159:19;;20818:366;;;:::o;21190:419::-;21356:4;21394:2;21383:9;21379:18;21371:26;;21443:9;21437:4;21433:20;21429:1;21418:9;21414:17;21407:47;21471:131;21597:4;21471:131;:::i;:::-;21463:139;;21190:419;;;:::o;21615:223::-;21755:34;21751:1;21743:6;21739:14;21732:58;21824:6;21819:2;21811:6;21807:15;21800:31;21615:223;:::o;21844:366::-;21986:3;22007:67;22071:2;22066:3;22007:67;:::i;:::-;22000:74;;22083:93;22172:3;22083:93;:::i;:::-;22201:2;22196:3;22192:12;22185:19;;21844:366;;;:::o;22216:419::-;22382:4;22420:2;22409:9;22405:18;22397:26;;22469:9;22463:4;22459:20;22455:1;22444:9;22440:17;22433:47;22497:131;22623:4;22497:131;:::i;:::-;22489:139;;22216:419;;;:::o;22641:240::-;22781:34;22777:1;22769:6;22765:14;22758:58;22850:23;22845:2;22837:6;22833:15;22826:48;22641:240;:::o;22887:366::-;23029:3;23050:67;23114:2;23109:3;23050:67;:::i;:::-;23043:74;;23126:93;23215:3;23126:93;:::i;:::-;23244:2;23239:3;23235:12;23228:19;;22887:366;;;:::o;23259:419::-;23425:4;23463:2;23452:9;23448:18;23440:26;;23512:9;23506:4;23502:20;23498:1;23487:9;23483:17;23476:47;23540:131;23666:4;23540:131;:::i;:::-;23532:139;;23259:419;;;:::o;23684:239::-;23824:34;23820:1;23812:6;23808:14;23801:58;23893:22;23888:2;23880:6;23876:15;23869:47;23684:239;:::o;23929:366::-;24071:3;24092:67;24156:2;24151:3;24092:67;:::i;:::-;24085:74;;24168:93;24257:3;24168:93;:::i;:::-;24286:2;24281:3;24277:12;24270:19;;23929:366;;;:::o;24301:419::-;24467:4;24505:2;24494:9;24490:18;24482:26;;24554:9;24548:4;24544:20;24540:1;24529:9;24525:17;24518:47;24582:131;24708:4;24582:131;:::i;:::-;24574:139;;24301:419;;;:::o;24726:180::-;24774:77;24771:1;24764:88;24871:4;24868:1;24861:15;24895:4;24892:1;24885:15;24912:233;24951:3;24974:24;24992:5;24974:24;:::i;:::-;24965:33;;25020:66;25013:5;25010:77;25007:103;;;25090:18;;:::i;:::-;25007:103;25137:1;25130:5;25126:13;25119:20;;24912:233;;;:::o;25151:225::-;25291:34;25287:1;25279:6;25275:14;25268:58;25360:8;25355:2;25347:6;25343:15;25336:33;25151:225;:::o;25382:366::-;25524:3;25545:67;25609:2;25604:3;25545:67;:::i;:::-;25538:74;;25621:93;25710:3;25621:93;:::i;:::-;25739:2;25734:3;25730:12;25723:19;;25382:366;;;:::o;25754:419::-;25920:4;25958:2;25947:9;25943:18;25935:26;;26007:9;26001:4;25997:20;25993:1;25982:9;25978:17;25971:47;26035:131;26161:4;26035:131;:::i;:::-;26027:139;;25754:419;;;:::o;26179:182::-;26319:34;26315:1;26307:6;26303:14;26296:58;26179:182;:::o;26367:366::-;26509:3;26530:67;26594:2;26589:3;26530:67;:::i;:::-;26523:74;;26606:93;26695:3;26606:93;:::i;:::-;26724:2;26719:3;26715:12;26708:19;;26367:366;;;:::o;26739:419::-;26905:4;26943:2;26932:9;26928:18;26920:26;;26992:9;26986:4;26982:20;26978:1;26967:9;26963:17;26956:47;27020:131;27146:4;27020:131;:::i;:::-;27012:139;;26739:419;;;:::o;27164:229::-;27304:34;27300:1;27292:6;27288:14;27281:58;27373:12;27368:2;27360:6;27356:15;27349:37;27164:229;:::o;27399:366::-;27541:3;27562:67;27626:2;27621:3;27562:67;:::i;:::-;27555:74;;27638:93;27727:3;27638:93;:::i;:::-;27756:2;27751:3;27747:12;27740:19;;27399:366;;;:::o;27771:419::-;27937:4;27975:2;27964:9;27960:18;27952:26;;28024:9;28018:4;28014:20;28010:1;27999:9;27995:17;27988:47;28052:131;28178:4;28052:131;:::i;:::-;28044:139;;27771:419;;;:::o;28196:143::-;28253:5;28284:6;28278:13;28269:22;;28300:33;28327:5;28300:33;:::i;:::-;28196:143;;;;:::o;28345:351::-;28415:6;28464:2;28452:9;28443:7;28439:23;28435:32;28432:119;;;28470:79;;:::i;:::-;28432:119;28590:1;28615:64;28671:7;28662:6;28651:9;28647:22;28615:64;:::i;:::-;28605:74;;28561:128;28345:351;;;;:::o;28702:223::-;28842:34;28838:1;28830:6;28826:14;28819:58;28911:6;28906:2;28898:6;28894:15;28887:31;28702:223;:::o;28931:366::-;29073:3;29094:67;29158:2;29153:3;29094:67;:::i;:::-;29087:74;;29170:93;29259:3;29170:93;:::i;:::-;29288:2;29283:3;29279:12;29272:19;;28931:366;;;:::o;29303:419::-;29469:4;29507:2;29496:9;29492:18;29484:26;;29556:9;29550:4;29546:20;29542:1;29531:9;29527:17;29520:47;29584:131;29710:4;29584:131;:::i;:::-;29576:139;;29303:419;;;:::o;29728:221::-;29868:34;29864:1;29856:6;29852:14;29845:58;29937:4;29932:2;29924:6;29920:15;29913:29;29728:221;:::o;29955:366::-;30097:3;30118:67;30182:2;30177:3;30118:67;:::i;:::-;30111:74;;30194:93;30283:3;30194:93;:::i;:::-;30312:2;30307:3;30303:12;30296:19;;29955:366;;;:::o;30327:419::-;30493:4;30531:2;30520:9;30516:18;30508:26;;30580:9;30574:4;30570:20;30566:1;30555:9;30551:17;30544:47;30608:131;30734:4;30608:131;:::i;:::-;30600:139;;30327:419;;;:::o;30752:224::-;30892:34;30888:1;30880:6;30876:14;30869:58;30961:7;30956:2;30948:6;30944:15;30937:32;30752:224;:::o;30982:366::-;31124:3;31145:67;31209:2;31204:3;31145:67;:::i;:::-;31138:74;;31221:93;31310:3;31221:93;:::i;:::-;31339:2;31334:3;31330:12;31323:19;;30982:366;;;:::o;31354:419::-;31520:4;31558:2;31547:9;31543:18;31535:26;;31607:9;31601:4;31597:20;31593:1;31582:9;31578:17;31571:47;31635:131;31761:4;31635:131;:::i;:::-;31627:139;;31354:419;;;:::o;31779:222::-;31919:34;31915:1;31907:6;31903:14;31896:58;31988:5;31983:2;31975:6;31971:15;31964:30;31779:222;:::o;32007:366::-;32149:3;32170:67;32234:2;32229:3;32170:67;:::i;:::-;32163:74;;32246:93;32335:3;32246:93;:::i;:::-;32364:2;32359:3;32355:12;32348:19;;32007:366;;;:::o;32379:419::-;32545:4;32583:2;32572:9;32568:18;32560:26;;32632:9;32626:4;32622:20;32618:1;32607:9;32603:17;32596:47;32660:131;32786:4;32660:131;:::i;:::-;32652:139;;32379:419;;;:::o;32804:179::-;32944:31;32940:1;32932:6;32928:14;32921:55;32804:179;:::o;32989:366::-;33131:3;33152:67;33216:2;33211:3;33152:67;:::i;:::-;33145:74;;33228:93;33317:3;33228:93;:::i;:::-;33346:2;33341:3;33337:12;33330:19;;32989:366;;;:::o;33361:419::-;33527:4;33565:2;33554:9;33550:18;33542:26;;33614:9;33608:4;33604:20;33600:1;33589:9;33585:17;33578:47;33642:131;33768:4;33642:131;:::i;:::-;33634:139;;33361:419;;;:::o;33786:172::-;33926:24;33922:1;33914:6;33910:14;33903:48;33786:172;:::o;33964:366::-;34106:3;34127:67;34191:2;34186:3;34127:67;:::i;:::-;34120:74;;34203:93;34292:3;34203:93;:::i;:::-;34321:2;34316:3;34312:12;34305:19;;33964:366;;;:::o;34336:419::-;34502:4;34540:2;34529:9;34525:18;34517:26;;34589:9;34583:4;34579:20;34575:1;34564:9;34560:17;34553:47;34617:131;34743:4;34617:131;:::i;:::-;34609:139;;34336:419;;;:::o;34761:297::-;34901:34;34897:1;34889:6;34885:14;34878:58;34970:34;34965:2;34957:6;34953:15;34946:59;35039:11;35034:2;35026:6;35022:15;35015:36;34761:297;:::o;35064:366::-;35206:3;35227:67;35291:2;35286:3;35227:67;:::i;:::-;35220:74;;35303:93;35392:3;35303:93;:::i;:::-;35421:2;35416:3;35412:12;35405:19;;35064:366;;;:::o;35436:419::-;35602:4;35640:2;35629:9;35625:18;35617:26;;35689:9;35683:4;35679:20;35675:1;35664:9;35660:17;35653:47;35717:131;35843:4;35717:131;:::i;:::-;35709:139;;35436:419;;;:::o;35861:240::-;36001:34;35997:1;35989:6;35985:14;35978:58;36070:23;36065:2;36057:6;36053:15;36046:48;35861:240;:::o;36107:366::-;36249:3;36270:67;36334:2;36329:3;36270:67;:::i;:::-;36263:74;;36346:93;36435:3;36346:93;:::i;:::-;36464:2;36459:3;36455:12;36448:19;;36107:366;;;:::o;36479:419::-;36645:4;36683:2;36672:9;36668:18;36660:26;;36732:9;36726:4;36722:20;36718:1;36707:9;36703:17;36696:47;36760:131;36886:4;36760:131;:::i;:::-;36752:139;;36479:419;;;:::o;36904:169::-;37044:21;37040:1;37032:6;37028:14;37021:45;36904:169;:::o;37079:366::-;37221:3;37242:67;37306:2;37301:3;37242:67;:::i;:::-;37235:74;;37318:93;37407:3;37318:93;:::i;:::-;37436:2;37431:3;37427:12;37420:19;;37079:366;;;:::o;37451:419::-;37617:4;37655:2;37644:9;37640:18;37632:26;;37704:9;37698:4;37694:20;37690:1;37679:9;37675:17;37668:47;37732:131;37858:4;37732:131;:::i;:::-;37724:139;;37451:419;;;:::o;37876:241::-;38016:34;38012:1;38004:6;38000:14;37993:58;38085:24;38080:2;38072:6;38068:15;38061:49;37876:241;:::o;38123:366::-;38265:3;38286:67;38350:2;38345:3;38286:67;:::i;:::-;38279:74;;38362:93;38451:3;38362:93;:::i;:::-;38480:2;38475:3;38471:12;38464:19;;38123:366;;;:::o;38495:419::-;38661:4;38699:2;38688:9;38684:18;38676:26;;38748:9;38742:4;38738:20;38734:1;38723:9;38719:17;38712:47;38776:131;38902:4;38776:131;:::i;:::-;38768:139;;38495:419;;;:::o;38920:191::-;38960:4;38980:20;38998:1;38980:20;:::i;:::-;38975:25;;39014:20;39032:1;39014:20;:::i;:::-;39009:25;;39053:1;39050;39047:8;39044:34;;;39058:18;;:::i;:::-;39044:34;39103:1;39100;39096:9;39088:17;;38920:191;;;;:::o;39117:225::-;39257:34;39253:1;39245:6;39241:14;39234:58;39326:8;39321:2;39313:6;39309:15;39302:33;39117:225;:::o;39348:366::-;39490:3;39511:67;39575:2;39570:3;39511:67;:::i;:::-;39504:74;;39587:93;39676:3;39587:93;:::i;:::-;39705:2;39700:3;39696:12;39689:19;;39348:366;;;:::o;39720:419::-;39886:4;39924:2;39913:9;39909:18;39901:26;;39973:9;39967:4;39963:20;39959:1;39948:9;39944:17;39937:47;40001:131;40127:4;40001:131;:::i;:::-;39993:139;;39720:419;;;:::o;40145:147::-;40246:11;40283:3;40268:18;;40145:147;;;;:::o;40298:114::-;;:::o;40418:398::-;40577:3;40598:83;40679:1;40674:3;40598:83;:::i;:::-;40591:90;;40690:93;40779:3;40690:93;:::i;:::-;40808:1;40803:3;40799:11;40792:18;;40418:398;;;:::o;40822:379::-;41006:3;41028:147;41171:3;41028:147;:::i;:::-;41021:154;;41192:3;41185:10;;40822:379;;;:::o;41207:442::-;41356:4;41394:2;41383:9;41379:18;41371:26;;41407:71;41475:1;41464:9;41460:17;41451:6;41407:71;:::i;:::-;41488:72;41556:2;41545:9;41541:18;41532:6;41488:72;:::i;:::-;41570;41638:2;41627:9;41623:18;41614:6;41570:72;:::i;:::-;41207:442;;;;;;:::o;41655:143::-;41712:5;41743:6;41737:13;41728:22;;41759:33;41786:5;41759:33;:::i;:::-;41655:143;;;;:::o;41804:351::-;41874:6;41923:2;41911:9;41902:7;41898:23;41894:32;41891:119;;;41929:79;;:::i;:::-;41891:119;42049:1;42074:64;42130:7;42121:6;42110:9;42106:22;42074:64;:::i;:::-;42064:74;;42020:128;41804:351;;;;:::o;42161:85::-;42206:7;42235:5;42224:16;;42161:85;;;:::o;42252:158::-;42310:9;42343:61;42361:42;42370:32;42396:5;42370:32;:::i;:::-;42361:42;:::i;:::-;42343:61;:::i;:::-;42330:74;;42252:158;;;:::o;42416:147::-;42511:45;42550:5;42511:45;:::i;:::-;42506:3;42499:58;42416:147;;:::o;42569:114::-;42636:6;42670:5;42664:12;42654:22;;42569:114;;;:::o;42689:184::-;42788:11;42822:6;42817:3;42810:19;42862:4;42857:3;42853:14;42838:29;;42689:184;;;;:::o;42879:132::-;42946:4;42969:3;42961:11;;42999:4;42994:3;42990:14;42982:22;;42879:132;;;:::o;43017:108::-;43094:24;43112:5;43094:24;:::i;:::-;43089:3;43082:37;43017:108;;:::o;43131:179::-;43200:10;43221:46;43263:3;43255:6;43221:46;:::i;:::-;43299:4;43294:3;43290:14;43276:28;;43131:179;;;;:::o;43316:113::-;43386:4;43418;43413:3;43409:14;43401:22;;43316:113;;;:::o;43465:732::-;43584:3;43613:54;43661:5;43613:54;:::i;:::-;43683:86;43762:6;43757:3;43683:86;:::i;:::-;43676:93;;43793:56;43843:5;43793:56;:::i;:::-;43872:7;43903:1;43888:284;43913:6;43910:1;43907:13;43888:284;;;43989:6;43983:13;44016:63;44075:3;44060:13;44016:63;:::i;:::-;44009:70;;44102:60;44155:6;44102:60;:::i;:::-;44092:70;;43948:224;43935:1;43932;43928:9;43923:14;;43888:284;;;43892:14;44188:3;44181:10;;43589:608;;;43465:732;;;;:::o;44203:831::-;44466:4;44504:3;44493:9;44489:19;44481:27;;44518:71;44586:1;44575:9;44571:17;44562:6;44518:71;:::i;:::-;44599:80;44675:2;44664:9;44660:18;44651:6;44599:80;:::i;:::-;44726:9;44720:4;44716:20;44711:2;44700:9;44696:18;44689:48;44754:108;44857:4;44848:6;44754:108;:::i;:::-;44746:116;;44872:72;44940:2;44929:9;44925:18;44916:6;44872:72;:::i;:::-;44954:73;45022:3;45011:9;45007:19;44998:6;44954:73;:::i;:::-;44203:831;;;;;;;;:::o;45040:807::-;45289:4;45327:3;45316:9;45312:19;45304:27;;45341:71;45409:1;45398:9;45394:17;45385:6;45341:71;:::i;:::-;45422:72;45490:2;45479:9;45475:18;45466:6;45422:72;:::i;:::-;45504:80;45580:2;45569:9;45565:18;45556:6;45504:80;:::i;:::-;45594;45670:2;45659:9;45655:18;45646:6;45594:80;:::i;:::-;45684:73;45752:3;45741:9;45737:19;45728:6;45684:73;:::i;:::-;45767;45835:3;45824:9;45820:19;45811:6;45767:73;:::i;:::-;45040:807;;;;;;;;;:::o;45853:663::-;45941:6;45949;45957;46006:2;45994:9;45985:7;45981:23;45977:32;45974:119;;;46012:79;;:::i;:::-;45974:119;46132:1;46157:64;46213:7;46204:6;46193:9;46189:22;46157:64;:::i;:::-;46147:74;;46103:128;46270:2;46296:64;46352:7;46343:6;46332:9;46328:22;46296:64;:::i;:::-;46286:74;;46241:129;46409:2;46435:64;46491:7;46482:6;46471:9;46467:22;46435:64;:::i;:::-;46425:74;;46380:129;45853:663;;;;;:::o
Swarm Source
ipfs://9f54824ff2377c6fbe882b2c00544b8b6f5129d6b94e05f2e4c5be22eee069be
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.