ERC-20
Overview
Max Total Supply
1,000,000 Mizo
Holders
28
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:
MizoInu
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-27 */ // SPDX-License-Identifier: Unlicensed /** Welcome to $MIZO! Join the rest of the community at https://t.me/MizoETH */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using this function * 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 guidelines: functions revert instead * of 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 _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SignedSafeMath { /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { return a * b; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { return a / b; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { return a - b; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { return a + b; } } // 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 no longer needed starting with Solidity 0.8. 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; } } } /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } } contract MizoInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool public enableEarlySellTax = true; uint256 public maxSellTransactionAmount = 1000000 * (10**18); uint256 public maxBuyTransactionAmount = 15000 * (10**18); uint256 public swapTokensAtAmount = 1000 * (10**18); uint256 public maxWalletToken = 20000 * (10**18); uint256 private buyTotalFees = 0; uint256 public sellTotalFees = 0; uint256 public earlySellTotalFee = 20; // auto burn fee uint256 public burnFee = 0; address public deadWallet = 0x000000000000000000000000000000000000dEaD; // distribute the collected tax percentage wise uint256 public liquidityPercent = 75; // 75% of total collected tax uint256 public marketingPercent = 20; // 20% of total collected tax uint256 public devPercent = 5; // 5% of total collected tax address payable public marketingWallet = payable(0x5aCE9457D67F40d0D119C3E521555A6A8b629A37); address payable public devWallet = payable(0x948550DC922d35673c36BB76b0e8815BAc9690CA); // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; // 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; mapping (address => uint256) public lastTxTimestamp; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensIntoLiqudity, uint256 ethReceived ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() ERC20("Mizo Inu", "Mizo") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Uniswap Router Adress // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); /* an internal function that is only called here, and CANNOT be called ever again */ _createInitialSupply(owner(), 1000000 * (10**18)); } receive() external payable { } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), "KCoin: The router already has that address"); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "KCoin: Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "KCoin: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "KCoin: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(automatedMarketMakerPairs[from] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) { require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount."); uint256 contractBalanceRecepient = balanceOf(to); require(contractBalanceRecepient + amount <= maxWalletToken,"Exceeds maximum wallet token amount."); lastTxTimestamp[to] = block.timestamp; } if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) { require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if( overMinTokenBalance && !inSwapAndLiquify && automatedMarketMakerPairs[to] && swapAndLiquifyEnabled ) { contractTokenBalance = swapTokensAtAmount; swapAndLiquify(contractTokenBalance); } uint256 fees = 0; uint256 burnShare = 0; // if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 _totalFees = buyTotalFees; if (automatedMarketMakerPairs[to]) { uint256 span = block.timestamp-lastTxTimestamp[from]; if(enableEarlySellTax && span <= 24 hours) { _totalFees = earlySellTotalFee; } else if(!enableEarlySellTax) { _totalFees = sellTotalFees; } } fees = amount.mul(_totalFees).div(100); burnShare = amount.mul(burnFee).div(100); if(fees > 0) { super._transfer(from, address(this), fees); } if(burnShare > 0) { super._transfer(from, deadWallet, burnShare); } amount = amount.sub(fees.add(burnShare)); } super._transfer(from, to, amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityPercent).div(100); // split the Liquidity token balance into halves uint256 half = tokensForLiquidity.div(2); uint256 otherHalf = tokensForLiquidity.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); // swap and Send Eth to marketing, dev wallets swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity)); marketingWallet.transfer(address(this).balance.mul(marketingPercent).div(marketingPercent.add(devPercent))); devWallet.transfer(address(this).balance); emit SwapAndLiquify(half, newBalance); } 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(); if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve(address(this), address(uniswapV2Router), ~uint256(0)); } // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function setMaxSellTransaction(uint256 _maxSellTxAmount) public onlyOwner { maxSellTransactionAmount = _maxSellTxAmount; require(maxSellTransactionAmount>totalSupply().div(1000), "value is too low"); } function setMaxBuyTransaction(uint256 _maxBuyTxAmount) public onlyOwner { maxBuyTransactionAmount = _maxBuyTxAmount; require(maxBuyTransactionAmount>totalSupply().div(1000), "value is too low"); } function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner { swapTokensAtAmount = _newAmount; } function setMarketingWallet(address payable wallet) public onlyOwner { marketingWallet = wallet; } function setDevWallet(address payable wallet) public onlyOwner { devWallet = wallet; } function updateBuyTotalTax(uint256 _buyTotalFees) public onlyOwner { buyTotalFees = _buyTotalFees; require(buyTotalFees <= 10, "Fee too high"); } function updateSellTotalTax(uint256 _sellTotalFees) public onlyOwner { sellTotalFees = _sellTotalFees; require(sellTotalFees <= 10, "Fee too high"); } function updateEarlySellTotalTax(uint256 _earlySellTotalFee) public onlyOwner { earlySellTotalFee = _earlySellTotalFee; require(earlySellTotalFee <= 20, "Fee too high"); } function updateTaxDistributionPercentage(uint256 _liquidityPercent, uint256 _marketingPercent, uint256 _devPercent) public onlyOwner { require(_liquidityPercent.add(_marketingPercent).add(_devPercent) == 100, "total percentage must be equal to 100"); liquidityPercent = _liquidityPercent; marketingPercent = _marketingPercent; devPercent = _devPercent; } function setEarlySellTax(bool onoff) external onlyOwner { enableEarlySellTax = onoff; } function setAutoBurn(uint256 _burnFee) external onlyOwner { require(_burnFee <= 5, "value too high"); burnFee = _burnFee; } function setMaxWalletToken(uint256 _maxToken) external onlyOwner { maxWalletToken = _maxToken; require(maxWalletToken>totalSupply().div(1000), "value is too low"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"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":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","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":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastTxTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"setAutoBurn","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":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyTxAmount","type":"uint256"}],"name":"setMaxBuyTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_buyTotalFees","type":"uint256"}],"name":"updateBuyTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlySellTotalFee","type":"uint256"}],"name":"updateEarlySellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityPercent","type":"uint256"},{"internalType":"uint256","name":"_marketingPercent","type":"uint256"},{"internalType":"uint256","name":"_devPercent","type":"uint256"}],"name":"updateTaxDistributionPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff02191690831515021790555069d3c21bcecceda100000060075569032d26d12e980b600000600855683635c9adc5dea0000060095569043c33c1937564800000600a556000600b556000600c556014600d556000600e5561dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604b60105560146011556005601255735ace9457d67f40d0d119c3e521555a6a8b629a37601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073948550dc922d35673c36bb76b0e8815bac9690ca601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200018e57600080fd5b506040518060400160405280600881526020017f4d697a6f20496e750000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d697a6f0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200021392919062000aaa565b5080600490805190602001906200022c92919062000aaa565b5050506200024f620002436200052b60201b60201c565b6200053360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002dc919062000bc4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000bc4565b6040518363ffffffff1660e01b81526004016200038992919062000c07565b6020604051808303816000875af1158015620003a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cf919062000bc4565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000459816001620005f960201b60201c565b6200047b6200046d6200072f60201b60201c565b60016200075960201b60201c565b620004b0601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b620004e5601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b620004f83060016200075960201b60201c565b620005236200050c6200072f60201b60201c565b69d3c21bcecceda10000006200092860201b60201c565b505062000fbb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006859062000cbb565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007696200052b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200078f6200072f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007df9062000d2d565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200087d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008749062000dc5565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200091c919062000e04565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009919062000e71565b60405180910390fd5b620009ae6000838362000aa060201b60201c565b8060026000828254620009c2919062000ecc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a19919062000ecc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a80919062000f3a565b60405180910390a362000a9c6000838362000aa560201b60201c565b5050565b505050565b505050565b82805462000ab89062000f86565b90600052602060002090601f01602090048101928262000adc576000855562000b28565b82601f1062000af757805160ff191683800117855562000b28565b8280016001018555821562000b28579182015b8281111562000b2757825182559160200191906001019062000b0a565b5b50905062000b37919062000b3b565b5090565b5b8082111562000b5657600081600090555060010162000b3c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b8c8262000b5f565b9050919050565b62000b9e8162000b7f565b811462000baa57600080fd5b50565b60008151905062000bbe8162000b93565b92915050565b60006020828403121562000bdd5762000bdc62000b5a565b5b600062000bed8482850162000bad565b91505092915050565b62000c018162000b7f565b82525050565b600060408201905062000c1e600083018562000bf6565b62000c2d602083018462000bf6565b9392505050565b600082825260208201905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000ca3603f8362000c34565b915062000cb08262000c45565b604082019050919050565b6000602082019050818103600083015262000cd68162000c94565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d1560208362000c34565b915062000d228262000cdd565b602082019050919050565b6000602082019050818103600083015262000d488162000d06565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000dad60318362000c34565b915062000dba8262000d4f565b604082019050919050565b6000602082019050818103600083015262000de08162000d9e565b9050919050565b60008115159050919050565b62000dfe8162000de7565b82525050565b600060208201905062000e1b600083018462000df3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e59601f8362000c34565b915062000e668262000e21565b602082019050919050565b6000602082019050818103600083015262000e8c8162000e4a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ed98262000e93565b915062000ee68362000e93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f1e5762000f1d62000e9d565b5b828201905092915050565b62000f348162000e93565b82525050565b600060208201905062000f51600083018462000f29565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9f57607f821691505b60208210810362000fb55762000fb462000f57565b5b50919050565b608051614b3c62000fde6000396000818161102d01526119b40152614b3c6000f3fe6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b13578063f2fde38b14610b3e578063fc3c28af14610b67578063fce589d814610b92576102d4565b8063dd62ed3e14610a82578063e2f4560514610abf578063e5c4005c14610aea576102d4565b8063b2f5260a14610976578063b3b5e0431461099f578063b62496f5146109c8578063c024666814610a05578063c49b9a8014610a2e578063d8020a1814610a57576102d4565b80639a7a23d61161012e5780639a7a23d614610854578063a26577781461087d578063a457c2d7146108a6578063a4d15b64146108e3578063a9059cbb1461090e578063b06837551461094b576102d4565b806375f0a8741461075457806385141a771461077f5780638da5cb5b146107aa5780638ea5220f146107d557806391d55f411461080057806395d89b4114610829576102d4565b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146106ac57806370a08231146106d7578063715018a614610714578063750c11b61461072b576102d4565b80635d098b38146106315780636078a9b51461065a57806365b8dbc014610683576102d4565b806349bd5a5e146105215780634a74bb021461054c5780634fbee19314610577578063533f9630146105b45780635aa821a9146105dd5780635c38ffe214610608576102d4565b80631aa04b88116102865780631aa04b88146103eb5780631f53ac021461041657806323b872dd1461043f578063313ce5671461047c57806339509351146104a75780634551bbe9146104e4576102d4565b806302259e9e146102d957806306fdde0314610304578063095ea7b31461032f5780630db722c41461036c5780631694505e1461039557806318160ddd146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bbd565b6040516102fb9190613634565b60405180910390f35b34801561031057600080fd5b50610319610bc3565b60405161032691906136e8565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613799565b610c55565b60405161036391906137f4565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061380f565b610c73565b005b3480156103a157600080fd5b506103aa610d70565b6040516103b791906138c1565b60405180910390f35b3480156103cc57600080fd5b506103d5610d96565b6040516103e29190613634565b60405180910390f35b3480156103f757600080fd5b50610400610da0565b60405161040d9190613634565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061391a565b610da6565b005b34801561044b57600080fd5b5061046660048036038101906104619190613947565b610e66565b60405161047391906137f4565b60405180910390f35b34801561048857600080fd5b50610491610f5e565b60405161049e91906139b6565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613799565b610f67565b6040516104db91906137f4565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906139d1565b611013565b6040516105189190613634565b60405180910390f35b34801561052d57600080fd5b5061053661102b565b6040516105439190613a0d565b60405180910390f35b34801561055857600080fd5b5061056161104f565b60405161056e91906137f4565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906139d1565b611062565b6040516105ab91906137f4565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613a28565b6110b8565b005b3480156105e957600080fd5b506105f2611184565b6040516105ff9190613634565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613a28565b61118a565b005b34801561063d57600080fd5b506106586004803603810190610653919061391a565b61126f565b005b34801561066657600080fd5b50610681600480360381019061067c9190613a28565b61132f565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906139d1565b6113fb565b005b3480156106b857600080fd5b506106c16115c7565b6040516106ce9190613634565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906139d1565b6115cd565b60405161070b9190613634565b60405180910390f35b34801561072057600080fd5b50610729611615565b005b34801561073757600080fd5b50610752600480360381019061074d9190613a28565b61169d565b005b34801561076057600080fd5b50610769611723565b6040516107769190613a64565b60405180910390f35b34801561078b57600080fd5b50610794611749565b6040516107a19190613a0d565b60405180910390f35b3480156107b657600080fd5b506107bf61176f565b6040516107cc9190613a0d565b60405180910390f35b3480156107e157600080fd5b506107ea611799565b6040516107f79190613a64565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613a28565b6117bf565b005b34801561083557600080fd5b5061083e6118a4565b60405161084b91906136e8565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613aab565b611936565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613aeb565b611a4e565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613799565b611ae7565b6040516108da91906137f4565b60405180910390f35b3480156108ef57600080fd5b506108f8611bd2565b60405161090591906137f4565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613799565b611be5565b60405161094291906137f4565b60405180910390f35b34801561095757600080fd5b50610960611c03565b60405161096d9190613634565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613a28565b611c09565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190613a28565b611cd5565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906139d1565b611dba565b6040516109fc91906137f4565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613aab565b611dda565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613aeb565b611f91565b005b348015610a6357600080fd5b50610a6c612061565b604051610a799190613634565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b18565b612067565b604051610ab69190613634565b60405180910390f35b348015610acb57600080fd5b50610ad46120ee565b604051610ae19190613634565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613a28565b6120f4565b005b348015610b1f57600080fd5b50610b286121be565b604051610b359190613634565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906139d1565b6121c4565b005b348015610b7357600080fd5b50610b7c6122bb565b604051610b899190613634565b60405180910390f35b348015610b9e57600080fd5b50610ba76122c1565b604051610bb49190613634565b60405180910390f35b60075481565b606060038054610bd290613b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90613b87565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c69610c626122c7565b84846122cf565b6001905092915050565b610c7b6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9961176f565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613c04565b60405180910390fd5b6064610d1682610d08858761249890919063ffffffff16565b61249890919063ffffffff16565b14610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c96565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610dae6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610dcc61176f565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613c04565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e738484846124ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ebe6122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613d28565b60405180910390fd5b610f5285610f4a6122c7565b8584036122cf565b60019150509392505050565b60006012905090565b6000611009610f746122c7565b848460016000610f826122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110049190613d77565b6122cf565b6001905092915050565b60176020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06122c7565b73ffffffffffffffffffffffffffffffffffffffff166110de61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c04565b60405180910390fd5b80600b81905550600a600b541115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613e19565b60405180910390fd5b50565b60085481565b6111926122c7565b73ffffffffffffffffffffffffffffffffffffffff166111b061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c04565b60405180910390fd5b806007819055506112296103e861121b610d96565b612bfc90919063ffffffff16565b6007541161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613e85565b60405180910390fd5b50565b6112776122c7565b73ffffffffffffffffffffffffffffffffffffffff1661129561176f565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613c04565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113376122c7565b73ffffffffffffffffffffffffffffffffffffffff1661135561176f565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613c04565b60405180910390fd5b80600d819055506014600d5411156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613e19565b60405180910390fd5b50565b6114036122c7565b73ffffffffffffffffffffffffffffffffffffffff1661142161176f565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c04565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613f17565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161d6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661163b61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c04565b60405180910390fd5b61169b6000612c12565b565b6116a56122c7565b73ffffffffffffffffffffffffffffffffffffffff166116c361176f565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613c04565b60405180910390fd5b8060098190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117c76122c7565b73ffffffffffffffffffffffffffffffffffffffff166117e561176f565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c04565b60405180910390fd5b80600a8190555061185e6103e8611850610d96565b612bfc90919063ffffffff16565b600a54116118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613e85565b60405180910390fd5b50565b6060600480546118b390613b87565b80601f01602080910402602001604051908101604052809291908181526020018280546118df90613b87565b801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b5050505050905090565b61193e6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661195c61176f565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613c04565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fcf565b60405180910390fd5b611a4a8282612cd8565b5050565b611a566122c7565b73ffffffffffffffffffffffffffffffffffffffff16611a7461176f565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613c04565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b60008060016000611af66122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614061565b60405180910390fd5b611bc7611bbe6122c7565b858584036122cf565b600191505092915050565b600660169054906101000a900460ff1681565b6000611bf9611bf26122c7565b84846124ae565b6001905092915050565b60105481565b611c116122c7565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613c04565b60405180910390fd5b80600c81905550600a600c541115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990613e19565b60405180910390fd5b50565b611cdd6122c7565b73ffffffffffffffffffffffffffffffffffffffff16611cfb61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c04565b60405180910390fd5b80600881905550611d746103e8611d66610d96565b612bfc90919063ffffffff16565b60085411611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90613e85565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611de26122c7565b73ffffffffffffffffffffffffffffffffffffffff16611e0061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90613c04565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906140f3565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8591906137f4565b60405180910390a25050565b611f996122c7565b73ffffffffffffffffffffffffffffffffffffffff16611fb761176f565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613c04565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161205691906137f4565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6120fc6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661211a61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c04565b60405180910390fd5b60058111156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab9061415f565b60405180910390fd5b80600e8190555050565b600a5481565b6121cc6122c7565b73ffffffffffffffffffffffffffffffffffffffff166121ea61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906141f1565b60405180910390fd5b6122b881612c12565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614283565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614315565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161248b9190613634565b60405180910390a3505050565b600081836124a69190613d77565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612514906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614439565b60405180910390fd5b600081036125a5576125a083836000612e0b565b612bf7565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126485750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561269e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278b576008548111156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906144cb565b60405180910390fd5b60006126f3836115cd565b9050600a5482826127049190613d77565b1115612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c9061455d565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128845750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128cf576007548111156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906145ef565b60405180910390fd5b5b60006128da306115cd565b9050600060095482101590508080156129005750600660149054906101000a900460ff16155b80156129555750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561296d5750600660159054906101000a900460ff165b156129815760095491506129808261308a565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a285750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be7576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b20576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612ad3919061460f565b9050600660169054906101000a900460ff168015612af45750620151808111155b15612b0357600d549150612b1e565b600660169054906101000a900460ff16612b1d57600c5491505b5b505b612b466064612b3883896132b490919063ffffffff16565b612bfc90919063ffffffff16565b9250612b706064612b62600e54896132b490919063ffffffff16565b612bfc90919063ffffffff16565b91506000831115612b8757612b86883085612e0b565b5b6000821115612bbe57612bbd88600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612e0b565b5b612be3612bd4838561249890919063ffffffff16565b876132ca90919063ffffffff16565b9550505b612bf2878787612e0b565b505050505b505050565b60008183612c0a9190614672565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614715565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e71906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614439565b60405180910390fd5b612ef48383836132e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f71906147a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300d9190613d77565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130719190613634565b60405180910390a36130848484846132e5565b50505050565b6001600660146101000a81548160ff02191690831515021790555060006130cf60646130c1601054856132b490919063ffffffff16565b612bfc90919063ffffffff16565b905060006130e7600283612bfc90919063ffffffff16565b905060006130fe82846132ca90919063ffffffff16565b9050600047905061310e836132ea565b600061312382476132ca90919063ffffffff16565b905061312f8382613563565b61314a61314586886132ca90919063ffffffff16565b6132ea565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6131c36131a060125460115461249890919063ffffffff16565b6131b5601154476132b490919063ffffffff16565b612bfc90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156131ee573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613257573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516132899291906147c7565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836132c291906147f0565b905092915050565b600081836132d8919061460f565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133075761330661484a565b5b6040519080825280602002602001820160405280156133355781602001602082028036833780820191505090505b509050308160008151811061334d5761334c614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341891906148bd565b8160018151811061342c5761342b614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161349330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612067565b10156134c9576134c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196122cf565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352d9594939291906149e3565b600060405180830381600087803b15801561354757600080fd5b505af115801561355b573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135af61176f565b426040518863ffffffff1660e01b81526004016135d196959493929190614a3d565b60606040518083038185885af11580156135ef573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136149190614ab3565b5050505050565b6000819050919050565b61362e8161361b565b82525050565b60006020820190506136496000830184613625565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368957808201518184015260208101905061366e565b83811115613698576000848401525b50505050565b6000601f19601f8301169050919050565b60006136ba8261364f565b6136c4818561365a565b93506136d481856020860161366b565b6136dd8161369e565b840191505092915050565b6000602082019050818103600083015261370281846136af565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373a8261370f565b9050919050565b61374a8161372f565b811461375557600080fd5b50565b60008135905061376781613741565b92915050565b6137768161361b565b811461378157600080fd5b50565b6000813590506137938161376d565b92915050565b600080604083850312156137b0576137af61370a565b5b60006137be85828601613758565b92505060206137cf85828601613784565b9150509250929050565b60008115159050919050565b6137ee816137d9565b82525050565b600060208201905061380960008301846137e5565b92915050565b6000806000606084860312156138285761382761370a565b5b600061383686828701613784565b935050602061384786828701613784565b925050604061385886828701613784565b9150509250925092565b6000819050919050565b600061388761388261387d8461370f565b613862565b61370f565b9050919050565b60006138998261386c565b9050919050565b60006138ab8261388e565b9050919050565b6138bb816138a0565b82525050565b60006020820190506138d660008301846138b2565b92915050565b60006138e78261370f565b9050919050565b6138f7816138dc565b811461390257600080fd5b50565b600081359050613914816138ee565b92915050565b6000602082840312156139305761392f61370a565b5b600061393e84828501613905565b91505092915050565b6000806000606084860312156139605761395f61370a565b5b600061396e86828701613758565b935050602061397f86828701613758565b925050604061399086828701613784565b9150509250925092565b600060ff82169050919050565b6139b08161399a565b82525050565b60006020820190506139cb60008301846139a7565b92915050565b6000602082840312156139e7576139e661370a565b5b60006139f584828501613758565b91505092915050565b613a078161372f565b82525050565b6000602082019050613a2260008301846139fe565b92915050565b600060208284031215613a3e57613a3d61370a565b5b6000613a4c84828501613784565b91505092915050565b613a5e816138dc565b82525050565b6000602082019050613a796000830184613a55565b92915050565b613a88816137d9565b8114613a9357600080fd5b50565b600081359050613aa581613a7f565b92915050565b60008060408385031215613ac257613ac161370a565b5b6000613ad085828601613758565b9250506020613ae185828601613a96565b9150509250929050565b600060208284031215613b0157613b0061370a565b5b6000613b0f84828501613a96565b91505092915050565b60008060408385031215613b2f57613b2e61370a565b5b6000613b3d85828601613758565b9250506020613b4e85828601613758565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b9f57607f821691505b602082108103613bb257613bb1613b58565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bee60208361365a565b9150613bf982613bb8565b602082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613c8060258361365a565b9150613c8b82613c24565b604082019050919050565b60006020820190508181036000830152613caf81613c73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d1260288361365a565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d828261361b565b9150613d8d8361361b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc257613dc1613d48565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613e03600c8361365a565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613e6f60108361365a565b9150613e7a82613e39565b602082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f01602a8361365a565b9150613f0c82613ea5565b604082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613fb9604c8361365a565b9150613fc482613f37565b606082019050919050565b60006020820190508181036000830152613fe881613fac565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061404b60258361365a565b915061405682613fef565b604082019050919050565b6000602082019050818103600083015261407a8161403e565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006140dd60318361365a565b91506140e882614081565b604082019050919050565b6000602082019050818103600083015261410c816140d0565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000614149600e8361365a565b915061415482614113565b602082019050919050565b600060208201905081810360008301526141788161413c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141db60268361365a565b91506141e68261417f565b604082019050919050565b6000602082019050818103600083015261420a816141ce565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061426d60248361365a565b915061427882614211565b604082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006142ff60228361365a565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061439160258361365a565b915061439c82614335565b604082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061442360238361365a565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006144b5602b8361365a565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061454760248361365a565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006145d9602c8361365a565b91506145e48261457d565b604082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b600061461a8261361b565b91506146258361361b565b92508282101561463857614637613d48565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061467d8261361b565b91506146888361361b565b92508261469857614697614643565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006146ff603f8361365a565b915061470a826146a3565b604082019050919050565b6000602082019050818103600083015261472e816146f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061479160268361365a565b915061479c82614735565b604082019050919050565b600060208201905081810360008301526147c081614784565b9050919050565b60006040820190506147dc6000830185613625565b6147e96020830184613625565b9392505050565b60006147fb8261361b565b91506148068361361b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483f5761483e613d48565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b781613741565b92915050565b6000602082840312156148d3576148d261370a565b5b60006148e1848285016148a8565b91505092915050565b6000819050919050565b600061490f61490a614905846148ea565b613862565b61361b565b9050919050565b61491f816148f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61495a8161372f565b82525050565b600061496c8383614951565b60208301905092915050565b6000602082019050919050565b600061499082614925565b61499a8185614930565b93506149a583614941565b8060005b838110156149d65781516149bd8882614960565b97506149c883614978565b9250506001810190506149a9565b5085935050505092915050565b600060a0820190506149f86000830188613625565b614a056020830187614916565b8181036040830152614a178186614985565b9050614a2660608301856139fe565b614a336080830184613625565b9695505050505050565b600060c082019050614a5260008301896139fe565b614a5f6020830188613625565b614a6c6040830187614916565b614a796060830186614916565b614a8660808301856139fe565b614a9360a0830184613625565b979650505050505050565b600081519050614aad8161376d565b92915050565b600080600060608486031215614acc57614acb61370a565b5b6000614ada86828701614a9e565b9350506020614aeb86828701614a9e565b9250506040614afc86828701614a9e565b915050925092509256fea2646970667358221220f743fe9e489f18237cfe160240c71146dc5a740626864d037996daf0ccdc479c64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b13578063f2fde38b14610b3e578063fc3c28af14610b67578063fce589d814610b92576102d4565b8063dd62ed3e14610a82578063e2f4560514610abf578063e5c4005c14610aea576102d4565b8063b2f5260a14610976578063b3b5e0431461099f578063b62496f5146109c8578063c024666814610a05578063c49b9a8014610a2e578063d8020a1814610a57576102d4565b80639a7a23d61161012e5780639a7a23d614610854578063a26577781461087d578063a457c2d7146108a6578063a4d15b64146108e3578063a9059cbb1461090e578063b06837551461094b576102d4565b806375f0a8741461075457806385141a771461077f5780638da5cb5b146107aa5780638ea5220f146107d557806391d55f411461080057806395d89b4114610829576102d4565b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146106ac57806370a08231146106d7578063715018a614610714578063750c11b61461072b576102d4565b80635d098b38146106315780636078a9b51461065a57806365b8dbc014610683576102d4565b806349bd5a5e146105215780634a74bb021461054c5780634fbee19314610577578063533f9630146105b45780635aa821a9146105dd5780635c38ffe214610608576102d4565b80631aa04b88116102865780631aa04b88146103eb5780631f53ac021461041657806323b872dd1461043f578063313ce5671461047c57806339509351146104a75780634551bbe9146104e4576102d4565b806302259e9e146102d957806306fdde0314610304578063095ea7b31461032f5780630db722c41461036c5780631694505e1461039557806318160ddd146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bbd565b6040516102fb9190613634565b60405180910390f35b34801561031057600080fd5b50610319610bc3565b60405161032691906136e8565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613799565b610c55565b60405161036391906137f4565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061380f565b610c73565b005b3480156103a157600080fd5b506103aa610d70565b6040516103b791906138c1565b60405180910390f35b3480156103cc57600080fd5b506103d5610d96565b6040516103e29190613634565b60405180910390f35b3480156103f757600080fd5b50610400610da0565b60405161040d9190613634565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061391a565b610da6565b005b34801561044b57600080fd5b5061046660048036038101906104619190613947565b610e66565b60405161047391906137f4565b60405180910390f35b34801561048857600080fd5b50610491610f5e565b60405161049e91906139b6565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613799565b610f67565b6040516104db91906137f4565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906139d1565b611013565b6040516105189190613634565b60405180910390f35b34801561052d57600080fd5b5061053661102b565b6040516105439190613a0d565b60405180910390f35b34801561055857600080fd5b5061056161104f565b60405161056e91906137f4565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906139d1565b611062565b6040516105ab91906137f4565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613a28565b6110b8565b005b3480156105e957600080fd5b506105f2611184565b6040516105ff9190613634565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613a28565b61118a565b005b34801561063d57600080fd5b506106586004803603810190610653919061391a565b61126f565b005b34801561066657600080fd5b50610681600480360381019061067c9190613a28565b61132f565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906139d1565b6113fb565b005b3480156106b857600080fd5b506106c16115c7565b6040516106ce9190613634565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906139d1565b6115cd565b60405161070b9190613634565b60405180910390f35b34801561072057600080fd5b50610729611615565b005b34801561073757600080fd5b50610752600480360381019061074d9190613a28565b61169d565b005b34801561076057600080fd5b50610769611723565b6040516107769190613a64565b60405180910390f35b34801561078b57600080fd5b50610794611749565b6040516107a19190613a0d565b60405180910390f35b3480156107b657600080fd5b506107bf61176f565b6040516107cc9190613a0d565b60405180910390f35b3480156107e157600080fd5b506107ea611799565b6040516107f79190613a64565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613a28565b6117bf565b005b34801561083557600080fd5b5061083e6118a4565b60405161084b91906136e8565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613aab565b611936565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613aeb565b611a4e565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613799565b611ae7565b6040516108da91906137f4565b60405180910390f35b3480156108ef57600080fd5b506108f8611bd2565b60405161090591906137f4565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613799565b611be5565b60405161094291906137f4565b60405180910390f35b34801561095757600080fd5b50610960611c03565b60405161096d9190613634565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613a28565b611c09565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190613a28565b611cd5565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906139d1565b611dba565b6040516109fc91906137f4565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613aab565b611dda565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613aeb565b611f91565b005b348015610a6357600080fd5b50610a6c612061565b604051610a799190613634565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b18565b612067565b604051610ab69190613634565b60405180910390f35b348015610acb57600080fd5b50610ad46120ee565b604051610ae19190613634565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613a28565b6120f4565b005b348015610b1f57600080fd5b50610b286121be565b604051610b359190613634565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906139d1565b6121c4565b005b348015610b7357600080fd5b50610b7c6122bb565b604051610b899190613634565b60405180910390f35b348015610b9e57600080fd5b50610ba76122c1565b604051610bb49190613634565b60405180910390f35b60075481565b606060038054610bd290613b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90613b87565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c69610c626122c7565b84846122cf565b6001905092915050565b610c7b6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9961176f565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613c04565b60405180910390fd5b6064610d1682610d08858761249890919063ffffffff16565b61249890919063ffffffff16565b14610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c96565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610dae6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610dcc61176f565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613c04565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e738484846124ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ebe6122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613d28565b60405180910390fd5b610f5285610f4a6122c7565b8584036122cf565b60019150509392505050565b60006012905090565b6000611009610f746122c7565b848460016000610f826122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110049190613d77565b6122cf565b6001905092915050565b60176020528060005260406000206000915090505481565b7f000000000000000000000000a978b45870983664b54685f4b53d6a88cb958fc381565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06122c7565b73ffffffffffffffffffffffffffffffffffffffff166110de61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c04565b60405180910390fd5b80600b81905550600a600b541115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613e19565b60405180910390fd5b50565b60085481565b6111926122c7565b73ffffffffffffffffffffffffffffffffffffffff166111b061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c04565b60405180910390fd5b806007819055506112296103e861121b610d96565b612bfc90919063ffffffff16565b6007541161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613e85565b60405180910390fd5b50565b6112776122c7565b73ffffffffffffffffffffffffffffffffffffffff1661129561176f565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613c04565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113376122c7565b73ffffffffffffffffffffffffffffffffffffffff1661135561176f565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613c04565b60405180910390fd5b80600d819055506014600d5411156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613e19565b60405180910390fd5b50565b6114036122c7565b73ffffffffffffffffffffffffffffffffffffffff1661142161176f565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c04565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613f17565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161d6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661163b61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c04565b60405180910390fd5b61169b6000612c12565b565b6116a56122c7565b73ffffffffffffffffffffffffffffffffffffffff166116c361176f565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613c04565b60405180910390fd5b8060098190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117c76122c7565b73ffffffffffffffffffffffffffffffffffffffff166117e561176f565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c04565b60405180910390fd5b80600a8190555061185e6103e8611850610d96565b612bfc90919063ffffffff16565b600a54116118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613e85565b60405180910390fd5b50565b6060600480546118b390613b87565b80601f01602080910402602001604051908101604052809291908181526020018280546118df90613b87565b801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b5050505050905090565b61193e6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661195c61176f565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613c04565b60405180910390fd5b7f000000000000000000000000a978b45870983664b54685f4b53d6a88cb958fc373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fcf565b60405180910390fd5b611a4a8282612cd8565b5050565b611a566122c7565b73ffffffffffffffffffffffffffffffffffffffff16611a7461176f565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613c04565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b60008060016000611af66122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614061565b60405180910390fd5b611bc7611bbe6122c7565b858584036122cf565b600191505092915050565b600660169054906101000a900460ff1681565b6000611bf9611bf26122c7565b84846124ae565b6001905092915050565b60105481565b611c116122c7565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613c04565b60405180910390fd5b80600c81905550600a600c541115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990613e19565b60405180910390fd5b50565b611cdd6122c7565b73ffffffffffffffffffffffffffffffffffffffff16611cfb61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c04565b60405180910390fd5b80600881905550611d746103e8611d66610d96565b612bfc90919063ffffffff16565b60085411611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90613e85565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611de26122c7565b73ffffffffffffffffffffffffffffffffffffffff16611e0061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90613c04565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906140f3565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8591906137f4565b60405180910390a25050565b611f996122c7565b73ffffffffffffffffffffffffffffffffffffffff16611fb761176f565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613c04565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161205691906137f4565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6120fc6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661211a61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c04565b60405180910390fd5b60058111156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab9061415f565b60405180910390fd5b80600e8190555050565b600a5481565b6121cc6122c7565b73ffffffffffffffffffffffffffffffffffffffff166121ea61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906141f1565b60405180910390fd5b6122b881612c12565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614283565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614315565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161248b9190613634565b60405180910390a3505050565b600081836124a69190613d77565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612514906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614439565b60405180910390fd5b600081036125a5576125a083836000612e0b565b612bf7565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126485750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561269e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278b576008548111156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906144cb565b60405180910390fd5b60006126f3836115cd565b9050600a5482826127049190613d77565b1115612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c9061455d565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128845750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128cf576007548111156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906145ef565b60405180910390fd5b5b60006128da306115cd565b9050600060095482101590508080156129005750600660149054906101000a900460ff16155b80156129555750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561296d5750600660159054906101000a900460ff165b156129815760095491506129808261308a565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a285750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be7576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b20576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612ad3919061460f565b9050600660169054906101000a900460ff168015612af45750620151808111155b15612b0357600d549150612b1e565b600660169054906101000a900460ff16612b1d57600c5491505b5b505b612b466064612b3883896132b490919063ffffffff16565b612bfc90919063ffffffff16565b9250612b706064612b62600e54896132b490919063ffffffff16565b612bfc90919063ffffffff16565b91506000831115612b8757612b86883085612e0b565b5b6000821115612bbe57612bbd88600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612e0b565b5b612be3612bd4838561249890919063ffffffff16565b876132ca90919063ffffffff16565b9550505b612bf2878787612e0b565b505050505b505050565b60008183612c0a9190614672565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614715565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e71906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614439565b60405180910390fd5b612ef48383836132e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f71906147a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300d9190613d77565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130719190613634565b60405180910390a36130848484846132e5565b50505050565b6001600660146101000a81548160ff02191690831515021790555060006130cf60646130c1601054856132b490919063ffffffff16565b612bfc90919063ffffffff16565b905060006130e7600283612bfc90919063ffffffff16565b905060006130fe82846132ca90919063ffffffff16565b9050600047905061310e836132ea565b600061312382476132ca90919063ffffffff16565b905061312f8382613563565b61314a61314586886132ca90919063ffffffff16565b6132ea565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6131c36131a060125460115461249890919063ffffffff16565b6131b5601154476132b490919063ffffffff16565b612bfc90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156131ee573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613257573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516132899291906147c7565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836132c291906147f0565b905092915050565b600081836132d8919061460f565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133075761330661484a565b5b6040519080825280602002602001820160405280156133355781602001602082028036833780820191505090505b509050308160008151811061334d5761334c614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341891906148bd565b8160018151811061342c5761342b614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161349330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612067565b10156134c9576134c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196122cf565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352d9594939291906149e3565b600060405180830381600087803b15801561354757600080fd5b505af115801561355b573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135af61176f565b426040518863ffffffff1660e01b81526004016135d196959493929190614a3d565b60606040518083038185885af11580156135ef573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136149190614ab3565b5050505050565b6000819050919050565b61362e8161361b565b82525050565b60006020820190506136496000830184613625565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368957808201518184015260208101905061366e565b83811115613698576000848401525b50505050565b6000601f19601f8301169050919050565b60006136ba8261364f565b6136c4818561365a565b93506136d481856020860161366b565b6136dd8161369e565b840191505092915050565b6000602082019050818103600083015261370281846136af565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373a8261370f565b9050919050565b61374a8161372f565b811461375557600080fd5b50565b60008135905061376781613741565b92915050565b6137768161361b565b811461378157600080fd5b50565b6000813590506137938161376d565b92915050565b600080604083850312156137b0576137af61370a565b5b60006137be85828601613758565b92505060206137cf85828601613784565b9150509250929050565b60008115159050919050565b6137ee816137d9565b82525050565b600060208201905061380960008301846137e5565b92915050565b6000806000606084860312156138285761382761370a565b5b600061383686828701613784565b935050602061384786828701613784565b925050604061385886828701613784565b9150509250925092565b6000819050919050565b600061388761388261387d8461370f565b613862565b61370f565b9050919050565b60006138998261386c565b9050919050565b60006138ab8261388e565b9050919050565b6138bb816138a0565b82525050565b60006020820190506138d660008301846138b2565b92915050565b60006138e78261370f565b9050919050565b6138f7816138dc565b811461390257600080fd5b50565b600081359050613914816138ee565b92915050565b6000602082840312156139305761392f61370a565b5b600061393e84828501613905565b91505092915050565b6000806000606084860312156139605761395f61370a565b5b600061396e86828701613758565b935050602061397f86828701613758565b925050604061399086828701613784565b9150509250925092565b600060ff82169050919050565b6139b08161399a565b82525050565b60006020820190506139cb60008301846139a7565b92915050565b6000602082840312156139e7576139e661370a565b5b60006139f584828501613758565b91505092915050565b613a078161372f565b82525050565b6000602082019050613a2260008301846139fe565b92915050565b600060208284031215613a3e57613a3d61370a565b5b6000613a4c84828501613784565b91505092915050565b613a5e816138dc565b82525050565b6000602082019050613a796000830184613a55565b92915050565b613a88816137d9565b8114613a9357600080fd5b50565b600081359050613aa581613a7f565b92915050565b60008060408385031215613ac257613ac161370a565b5b6000613ad085828601613758565b9250506020613ae185828601613a96565b9150509250929050565b600060208284031215613b0157613b0061370a565b5b6000613b0f84828501613a96565b91505092915050565b60008060408385031215613b2f57613b2e61370a565b5b6000613b3d85828601613758565b9250506020613b4e85828601613758565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b9f57607f821691505b602082108103613bb257613bb1613b58565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bee60208361365a565b9150613bf982613bb8565b602082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613c8060258361365a565b9150613c8b82613c24565b604082019050919050565b60006020820190508181036000830152613caf81613c73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d1260288361365a565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d828261361b565b9150613d8d8361361b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc257613dc1613d48565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613e03600c8361365a565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613e6f60108361365a565b9150613e7a82613e39565b602082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f01602a8361365a565b9150613f0c82613ea5565b604082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613fb9604c8361365a565b9150613fc482613f37565b606082019050919050565b60006020820190508181036000830152613fe881613fac565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061404b60258361365a565b915061405682613fef565b604082019050919050565b6000602082019050818103600083015261407a8161403e565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006140dd60318361365a565b91506140e882614081565b604082019050919050565b6000602082019050818103600083015261410c816140d0565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000614149600e8361365a565b915061415482614113565b602082019050919050565b600060208201905081810360008301526141788161413c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141db60268361365a565b91506141e68261417f565b604082019050919050565b6000602082019050818103600083015261420a816141ce565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061426d60248361365a565b915061427882614211565b604082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006142ff60228361365a565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061439160258361365a565b915061439c82614335565b604082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061442360238361365a565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006144b5602b8361365a565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061454760248361365a565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006145d9602c8361365a565b91506145e48261457d565b604082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b600061461a8261361b565b91506146258361361b565b92508282101561463857614637613d48565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061467d8261361b565b91506146888361361b565b92508261469857614697614643565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006146ff603f8361365a565b915061470a826146a3565b604082019050919050565b6000602082019050818103600083015261472e816146f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061479160268361365a565b915061479c82614735565b604082019050919050565b600060208201905081810360008301526147c081614784565b9050919050565b60006040820190506147dc6000830185613625565b6147e96020830184613625565b9392505050565b60006147fb8261361b565b91506148068361361b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483f5761483e613d48565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b781613741565b92915050565b6000602082840312156148d3576148d261370a565b5b60006148e1848285016148a8565b91505092915050565b6000819050919050565b600061490f61490a614905846148ea565b613862565b61361b565b9050919050565b61491f816148f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61495a8161372f565b82525050565b600061496c8383614951565b60208301905092915050565b6000602082019050919050565b600061499082614925565b61499a8185614930565b93506149a583614941565b8060005b838110156149d65781516149bd8882614960565b97506149c883614978565b9250506001810190506149a9565b5085935050505092915050565b600060a0820190506149f86000830188613625565b614a056020830187614916565b8181036040830152614a178186614985565b9050614a2660608301856139fe565b614a336080830184613625565b9695505050505050565b600060c082019050614a5260008301896139fe565b614a5f6020830188613625565b614a6c6040830187614916565b614a796060830186614916565b614a8660808301856139fe565b614a9360a0830184613625565b979650505050505050565b600081519050614aad8161376d565b92915050565b600080600060608486031215614acc57614acb61370a565b5b6000614ada86828701614a9e565b9350506020614aeb86828701614a9e565b9250506040614afc86828701614a9e565b915050925092509256fea2646970667358221220f743fe9e489f18237cfe160240c71146dc5a740626864d037996daf0ccdc479c64736f6c634300080d0033
Deployed Bytecode Sourcemap
39829:12197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40134:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5685:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7852:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51164:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39906:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6805:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40458:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50498:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8503:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9404:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41439:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39954:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40039:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44380:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50606:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40201:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49788:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50378:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50962:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43152:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40419:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6976:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17222:94;;;;;;;;;;;;;:::i;:::-;;50251:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40912:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40559:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16571:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41011:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51834:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5904:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43782:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51569:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10122:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40088:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7316:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40697:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50781:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50024:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41374:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43474:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44516:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40770:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7554:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40265:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51679:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40323:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17471:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40843:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40526:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40134:60;;;;:::o;5685:100::-;5739:13;5772:5;5765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5685:100;:::o;7852:169::-;7935:4;7952:39;7961:12;:10;:12::i;:::-;7975:7;7984:6;7952:8;:39::i;:::-;8009:4;8002:11;;7852:169;;;;:::o;51164:397::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51377:3:::1;51316:57;51361:11;51316:40;51338:17;51316;:21;;:40;;;;:::i;:::-;:44;;:57;;;;:::i;:::-;:64;51308:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51452:17;51433:16;:36;;;;51499:17;51480:16;:36;;;;51540:11;51527:10;:24;;;;51164:397:::0;;;:::o;39906:41::-;;;;;;;;;;;;;:::o;6805:108::-;6866:7;6893:12;;6886:19;;6805:108;:::o;40458:37::-;;;;:::o;50498:100::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50584:6:::1;50572:9;;:18;;;;;;;;;;;;;;;;;;50498:100:::0;:::o;8503:492::-;8643:4;8660:36;8670:6;8678:9;8689:6;8660:9;:36::i;:::-;8709:24;8736:11;:19;8748:6;8736:19;;;;;;;;;;;;;;;:33;8756:12;:10;:12::i;:::-;8736:33;;;;;;;;;;;;;;;;8709:60;;8808:6;8788:16;:26;;8780:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8895:57;8904:6;8912:12;:10;:12::i;:::-;8945:6;8926:16;:25;8895:8;:57::i;:::-;8983:4;8976:11;;;8503:492;;;;;:::o;6647:93::-;6705:5;6730:2;6723:9;;6647:93;:::o;9404:215::-;9492:4;9509:80;9518:12;:10;:12::i;:::-;9532:7;9578:10;9541:11;:25;9553:12;:10;:12::i;:::-;9541:25;;;;;;;;;;;;;;;:34;9567:7;9541:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9509:8;:80::i;:::-;9607:4;9600:11;;9404:215;;;;:::o;41439:51::-;;;;;;;;;;;;;;;;;:::o;39954:38::-;;;:::o;40039:40::-;;;;;;;;;;;;;:::o;44380:125::-;44445:4;44469:19;:28;44489:7;44469:28;;;;;;;;;;;;;;;;;;;;;;;;;44462:35;;44380:125;;;:::o;50606:168::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50699:13:::1;50684:12;:28;;;;50747:2;50731:12;;:18;;50723:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50606:168:::0;:::o;40201:57::-;;;;:::o;49788:224::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49900:16:::1;49873:24;:43;;;;49960:23;49978:4;49960:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;49935:24;;:48;49927:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49788:224:::0;:::o;50378:112::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50476:6:::1;50458:15;;:24;;;;;;;;;;;;;;;;;;50378:112:::0;:::o;50962:194::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51071:18:::1;51051:17;:38;;;;51129:2;51108:17;;:23;;51100:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50962:194:::0;:::o;43152:314::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43261:15:::1;;;;;;;;;;;43239:38;;:10;:38;;::::0;43231:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43382:15;;;;;;;;;;;43340:59;;43362:10;43340:59;;;;;;;;;;;;43447:10;43410:15;;:48;;;;;;;;;;;;;;;;;;43152:314:::0;:::o;40419:32::-;;;;:::o;6976:127::-;7050:7;7077:9;:18;7087:7;7077:18;;;;;;;;;;;;;;;;7070:25;;6976:127;;;:::o;17222:94::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17287:21:::1;17305:1;17287:9;:21::i;:::-;17222:94::o:0;50251:119::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50352:10:::1;50331:18;:31;;;;50251:119:::0;:::o;40912:92::-;;;;;;;;;;;;;:::o;40559:70::-;;;;;;;;;;;;;:::o;16571:87::-;16617:7;16644:6;;;;;;;;;;;16637:13;;16571:87;:::o;41011:86::-;;;;;;;;;;;;;:::o;51834:187::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51927:9:::1;51910:14;:26;;;;51970:23;51988:4;51970:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;51955:14;;:38;51947:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51834:187:::0;:::o;5904:104::-;5960:13;5993:7;5986:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5904:104;:::o;43782:263::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43889:13:::1;43881:21;;:4;:21;;::::0;43873:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43996:41;44025:4;44031:5;43996:28;:41::i;:::-;43782:263:::0;;:::o;51569:102::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51658:5:::1;51637:18;;:26;;;;;;;;;;;;;;;;;;51569:102:::0;:::o;10122:413::-;10215:4;10232:24;10259:11;:25;10271:12;:10;:12::i;:::-;10259:25;;;;;;;;;;;;;;;:34;10285:7;10259:34;;;;;;;;;;;;;;;;10232:61;;10332:15;10312:16;:35;;10304:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10425:67;10434:12;:10;:12::i;:::-;10448:7;10476:15;10457:16;:34;10425:8;:67::i;:::-;10523:4;10516:11;;;10122:413;;;;:::o;40088:37::-;;;;;;;;;;;;;:::o;7316:175::-;7402:4;7419:42;7429:12;:10;:12::i;:::-;7443:9;7454:6;7419:9;:42::i;:::-;7479:4;7472:11;;7316:175;;;;:::o;40697:36::-;;;;:::o;50781:173::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50877:14:::1;50861:13;:30;;;;50927:2;50910:13;;:19;;50902:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50781:173:::0;:::o;50024:219::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50133:15:::1;50107:23;:41;;;;50191:23;50209:4;50191:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50167;;:47;50159:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50024:219:::0;:::o;41374:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;43474:297::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43599:8:::1;43567:40;;:19;:28;43587:7;43567:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;43559:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43703:8;43672:19;:28;43692:7;43672:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43745:7;43729:34;;;43754:8;43729:34;;;;;;:::i;:::-;;;;;;;;43474:297:::0;;:::o;44516:171::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44617:8:::1;44593:21;;:32;;;;;;;;;;;;;;;;;;44641:38;44670:8;44641:38;;;;;;:::i;:::-;;;;;;;;44516:171:::0;:::o;40770:36::-;;;;:::o;7554:151::-;7643:7;7670:11;:18;7682:5;7670:18;;;;;;;;;;;;;;;:27;7689:7;7670:27;;;;;;;;;;;;;;;;7663:34;;7554:151;;;;:::o;40265:51::-;;;;:::o;51679:147::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51769:1:::1;51757:8;:13;;51749:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;51810:8;51800:7;:18;;;;51679:147:::0;:::o;40323:48::-;;;;:::o;17471:192::-;16802:12;:10;:12::i;:::-;16791:23;;:7;:5;:7::i;:::-;:23;;;16783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17580:1:::1;17560:22;;:8;:22;;::::0;17552:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17636:19;17646:8;17636:9;:19::i;:::-;17471:192:::0;:::o;40843:29::-;;;;:::o;40526:26::-;;;;:::o;194:104::-;247:7;280:10;273:17;;194:104;:::o;13821:380::-;13974:1;13957:19;;:5;:19;;;13949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14055:1;14036:21;;:7;:21;;;14028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14139:6;14109:11;:18;14121:5;14109:18;;;;;;;;;;;;;;;:27;14128:7;14109:27;;;;;;;;;;;;;;;:36;;;;14177:7;14161:32;;14170:5;14161:32;;;14186:6;14161:32;;;;;;:::i;:::-;;;;;;;;13821:380;;;:::o;27725:98::-;27783:7;27814:1;27810;:5;;;;:::i;:::-;27803:12;;27725:98;;;;:::o;44695:2624::-;44815:1;44799:18;;:4;:18;;;44791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44892:1;44878:16;;:2;:16;;;44870:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44960:1;44950:6;:11;44947:93;;44979:28;44995:4;45001:2;45005:1;44979:15;:28::i;:::-;45022:7;;44947:93;45063:25;:31;45089:4;45063:31;;;;;;;;;;;;;;;;;;;;;;;;;:63;;;;;45100:19;:25;45120:4;45100:25;;;;;;;;;;;;;;;;;;;;;;;;;45099:26;45063:63;:93;;;;;45132:19;:23;45152:2;45132:23;;;;;;;;;;;;;;;;;;;;;;;;;45131:24;45063:93;45060:457;;;45191:23;;45181:6;:33;;45173:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;45277:32;45312:13;45322:2;45312:9;:13::i;:::-;45277:48;;45385:14;;45375:6;45348:24;:33;;;;:::i;:::-;:51;;45340:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45476:15;45454;:19;45470:2;45454:19;;;;;;;;;;;;;;;:37;;;;45158:359;45060:457;45532:25;:29;45558:2;45532:29;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;;45567:19;:25;45587:4;45567:25;;;;;;;;;;;;;;;;;;;;;;;;;45566:26;45532:61;:91;;;;;45599:19;:23;45619:2;45599:23;;;;;;;;;;;;;;;;;;;;;;;;;45598:24;45532:91;45529:214;;;45658:24;;45648:6;:34;;45640:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;45529:214;45762:28;45793:24;45811:4;45793:9;:24::i;:::-;45762:55;;45838:24;45889:18;;45865:20;:42;;45838:69;;45944:19;:53;;;;;45981:16;;;;;;;;;;;45980:17;45944:53;:99;;;;;46014:25;:29;46040:2;46014:29;;;;;;;;;;;;;;;;;;;;;;;;;45944:99;:138;;;;;46061:21;;;;;;;;;;;45944:138;45927:286;;;46132:18;;46109:41;;46165:36;46180:20;46165:14;:36::i;:::-;45927:286;46225:12;46252:17;46374:19;:25;46394:4;46374:25;;;;;;;;;;;;;;;;;;;;;;;;;46373:26;:54;;;;;46404:19;:23;46424:2;46404:23;;;;;;;;;;;;;;;;;;;;;;;;;46403:24;46373:54;46370:894;;;46444:18;46465:12;;46444:33;;46498:25;:29;46524:2;46498:29;;;;;;;;;;;;;;;;;;;;;;;;;46494:375;;;46551:12;46582:15;:21;46598:4;46582:21;;;;;;;;;;;;;;;;46566:15;:37;;;;:::i;:::-;46551:52;;46625:18;;;;;;;;;;;:38;;;;;46655:8;46647:4;:16;;46625:38;46622:232;;;46701:17;;46688:30;;46622:232;;;46765:18;;;;;;;;;;;46761:93;;46821:13;;46808:26;;46761:93;46622:232;46529:340;46494:375;46892:31;46919:3;46892:22;46903:10;46892:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;46885:38;;46950:28;46974:3;46950:19;46961:7;;46950:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;46938:40;;47003:1;46996:4;:8;46993:90;;;47025:42;47041:4;47055;47062;47025:15;:42::i;:::-;46993:90;47114:1;47102:9;:13;47099:97;;;47136:44;47152:4;47158:10;;;;;;;;;;;47170:9;47136:15;:44::i;:::-;47099:97;47221:31;47232:19;47241:9;47232:4;:8;;:19;;;;:::i;:::-;47221:6;:10;;:31;;;;:::i;:::-;47212:40;;46429:835;46370:894;47276:33;47292:4;47298:2;47302:6;47276:15;:33::i;:::-;44780:2539;;;;44695:2624;;;;:::o;28862:98::-;28920:7;28951:1;28947;:5;;;;:::i;:::-;28940:12;;28862:98;;;;:::o;17671:173::-;17727:16;17746:6;;;;;;;;;;;17727:25;;17772:8;17763:6;;:17;;;;;;;;;;;;;;;;;;17827:8;17796:40;;17817:8;17796:40;;;;;;;;;;;;17716:128;17671:173;:::o;44053:315::-;44179:5;44144:40;;:25;:31;44170:4;44144:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;44136:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44297:5;44263:25;:31;44289:4;44263:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44354:5;44320:40;;44348:4;44320:40;;;;;;;;;;;;44053:315;;:::o;11025:733::-;11183:1;11165:20;;:6;:20;;;11157:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11267:1;11246:23;;:9;:23;;;11238:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11322:47;11343:6;11351:9;11362:6;11322:20;:47::i;:::-;11382:21;11406:9;:17;11416:6;11406:17;;;;;;;;;;;;;;;;11382:41;;11459:6;11442:13;:23;;11434:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11580:6;11564:13;:22;11544:9;:17;11554:6;11544:17;;;;;;;;;;;;;;;:42;;;;11632:6;11608:9;:20;11618:9;11608:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11673:9;11656:35;;11665:6;11656:35;;;11684:6;11656:35;;;;;;:::i;:::-;;;;;;;;11704:46;11724:6;11732:9;11743:6;11704:19;:46::i;:::-;11146:612;11025:733;;;:::o;47328:1351::-;42048:4;42029:16;;:23;;;;;;;;;;;;;;;;;;47413:26:::1;47442:51;47489:3;47442:42;47467:16;;47442:20;:24;;:42;;;;:::i;:::-;:46;;:51;;;;:::i;:::-;47413:80;;47562:12;47577:25;47600:1;47577:18;:22;;:25;;;;:::i;:::-;47562:40;;47613:17;47633:28;47656:4;47633:18;:22;;:28;;;;:::i;:::-;47613:48;;47937:22;47962:21;47937:46;;48026:22;48043:4;48026:16;:22::i;:::-;48177:18;48198:41;48224:14;48198:21;:25;;:41;;;;:::i;:::-;48177:62;;48287:35;48300:9;48311:10;48287:12;:35::i;:::-;48390:62;48407:44;48432:18;48407:20;:24;;:44;;;;:::i;:::-;48390:16;:62::i;:::-;48463:15;;;;;;;;;;;:24;;:107;48488:81;48536:32;48557:10;;48536:16;;:20;;:32;;;;:::i;:::-;48488:43;48514:16;;48488:21;:25;;:43;;;;:::i;:::-;:47;;:81;;;;:::i;:::-;48463:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48581:9;;;;;;;;;;;:18;;:41;48600:21;48581:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48638:32;48653:4;48659:10;48638:32;;;;;;;:::i;:::-;;;;;;;;47402:1277;;;;;42094:5:::0;42075:16;;:24;;;;;;;;;;;;;;;;;;47328:1351;:::o;28463:98::-;28521:7;28552:1;28548;:5;;;;:::i;:::-;28541:12;;28463:98;;;;:::o;28106:::-;28164:7;28195:1;28191;:5;;;;:::i;:::-;28184:12;;28106:98;;;;:::o;14801:125::-;;;;:::o;15530:124::-;;;;:::o;48687:694::-;48815:21;48853:1;48839:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48815:40;;48884:4;48866;48871:1;48866:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48910:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48900:4;48905:1;48900:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49001:11;48948:50;48966:4;48981:15;;;;;;;;;;;48948:9;:50::i;:::-;:64;48945:156;;;49027:62;49044:4;49059:15;;;;;;;;;;;49086:1;49077:11;49027:8;:62::i;:::-;48945:156;49139:15;;;;;;;;;;;:66;;;49220:11;49246:1;49290:4;49317;49337:15;49139:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48742:639;48687:694;:::o;49389:391::-;49510:15;;;;;;;;;;;:31;;;49549:9;49582:4;49602:11;49628:1;49671;49714:7;:5;:7::i;:::-;49736:15;49510:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49389:391;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:60::-;4499:3;4520:5;4513:12;;4471:60;;;:::o;4537:142::-;4587:9;4620:53;4638:34;4647:24;4665:5;4647:24;:::i;:::-;4638:34;:::i;:::-;4620:53;:::i;:::-;4607:66;;4537:142;;;:::o;4685:126::-;4735:9;4768:37;4799:5;4768:37;:::i;:::-;4755:50;;4685:126;;;:::o;4817:153::-;4894:9;4927:37;4958:5;4927:37;:::i;:::-;4914:50;;4817:153;;;:::o;4976:185::-;5090:64;5148:5;5090:64;:::i;:::-;5085:3;5078:77;4976:185;;:::o;5167:276::-;5287:4;5325:2;5314:9;5310:18;5302:26;;5338:98;5433:1;5422:9;5418:17;5409:6;5338:98;:::i;:::-;5167:276;;;;:::o;5449:104::-;5494:7;5523:24;5541:5;5523:24;:::i;:::-;5512:35;;5449:104;;;:::o;5559:138::-;5640:32;5666:5;5640:32;:::i;:::-;5633:5;5630:43;5620:71;;5687:1;5684;5677:12;5620:71;5559:138;:::o;5703:155::-;5757:5;5795:6;5782:20;5773:29;;5811:41;5846:5;5811:41;:::i;:::-;5703:155;;;;:::o;5864:345::-;5931:6;5980:2;5968:9;5959:7;5955:23;5951:32;5948:119;;;5986:79;;:::i;:::-;5948:119;6106:1;6131:61;6184:7;6175:6;6164:9;6160:22;6131:61;:::i;:::-;6121:71;;6077:125;5864:345;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:86::-;6875:7;6915:4;6908:5;6904:16;6893:27;;6840:86;;;:::o;6932:112::-;7015:22;7031:5;7015:22;:::i;:::-;7010:3;7003:35;6932:112;;:::o;7050:214::-;7139:4;7177:2;7166:9;7162:18;7154:26;;7190:67;7254:1;7243:9;7239:17;7230:6;7190:67;:::i;:::-;7050:214;;;;:::o;7270:329::-;7329:6;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7270:329;;;;:::o;7605:118::-;7692:24;7710:5;7692:24;:::i;:::-;7687:3;7680:37;7605:118;;:::o;7729:222::-;7822:4;7860:2;7849:9;7845:18;7837:26;;7873:71;7941:1;7930:9;7926:17;7917:6;7873:71;:::i;:::-;7729:222;;;;:::o;7957:329::-;8016:6;8065:2;8053:9;8044:7;8040:23;8036:32;8033:119;;;8071:79;;:::i;:::-;8033:119;8191:1;8216:53;8261:7;8252:6;8241:9;8237:22;8216:53;:::i;:::-;8206:63;;8162:117;7957:329;;;;:::o;8292:142::-;8395:32;8421:5;8395:32;:::i;:::-;8390:3;8383:45;8292:142;;:::o;8440:254::-;8549:4;8587:2;8576:9;8572:18;8564:26;;8600:87;8684:1;8673:9;8669:17;8660:6;8600:87;:::i;:::-;8440:254;;;;:::o;8700:116::-;8770:21;8785:5;8770:21;:::i;:::-;8763:5;8760:32;8750:60;;8806:1;8803;8796:12;8750:60;8700:116;:::o;8822:133::-;8865:5;8903:6;8890:20;8881:29;;8919:30;8943:5;8919:30;:::i;:::-;8822:133;;;;:::o;8961:468::-;9026:6;9034;9083:2;9071:9;9062:7;9058:23;9054:32;9051:119;;;9089:79;;:::i;:::-;9051:119;9209:1;9234:53;9279:7;9270:6;9259:9;9255:22;9234:53;:::i;:::-;9224:63;;9180:117;9336:2;9362:50;9404:7;9395:6;9384:9;9380:22;9362:50;:::i;:::-;9352:60;;9307:115;8961:468;;;;;:::o;9435:323::-;9491:6;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:50;9733:7;9724:6;9713:9;9709:22;9691:50;:::i;:::-;9681:60;;9637:114;9435:323;;;;:::o;9764:474::-;9832:6;9840;9889:2;9877:9;9868:7;9864:23;9860:32;9857:119;;;9895:79;;:::i;:::-;9857:119;10015:1;10040:53;10085:7;10076:6;10065:9;10061:22;10040:53;:::i;:::-;10030:63;;9986:117;10142:2;10168:53;10213:7;10204:6;10193:9;10189:22;10168:53;:::i;:::-;10158:63;;10113:118;9764:474;;;;;:::o;10244:180::-;10292:77;10289:1;10282:88;10389:4;10386:1;10379:15;10413:4;10410:1;10403:15;10430:320;10474:6;10511:1;10505:4;10501:12;10491:22;;10558:1;10552:4;10548:12;10579:18;10569:81;;10635:4;10627:6;10623:17;10613:27;;10569:81;10697:2;10689:6;10686:14;10666:18;10663:38;10660:84;;10716:18;;:::i;:::-;10660:84;10481:269;10430:320;;;:::o;10756:182::-;10896:34;10892:1;10884:6;10880:14;10873:58;10756:182;:::o;10944:366::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:419::-;11482:4;11520:2;11509:9;11505:18;11497:26;;11569:9;11563:4;11559:20;11555:1;11544:9;11540:17;11533:47;11597:131;11723:4;11597:131;:::i;:::-;11589:139;;11316:419;;;:::o;11741:224::-;11881:34;11877:1;11869:6;11865:14;11858:58;11950:7;11945:2;11937:6;11933:15;11926:32;11741:224;:::o;11971:366::-;12113:3;12134:67;12198:2;12193:3;12134:67;:::i;:::-;12127:74;;12210:93;12299:3;12210:93;:::i;:::-;12328:2;12323:3;12319:12;12312:19;;11971:366;;;:::o;12343:419::-;12509:4;12547:2;12536:9;12532:18;12524:26;;12596:9;12590:4;12586:20;12582:1;12571:9;12567:17;12560:47;12624:131;12750:4;12624:131;:::i;:::-;12616:139;;12343:419;;;:::o;12768:227::-;12908:34;12904:1;12896:6;12892:14;12885:58;12977:10;12972:2;12964:6;12960:15;12953:35;12768:227;:::o;13001:366::-;13143:3;13164:67;13228:2;13223:3;13164:67;:::i;:::-;13157:74;;13240:93;13329:3;13240:93;:::i;:::-;13358:2;13353:3;13349:12;13342:19;;13001:366;;;:::o;13373:419::-;13539:4;13577:2;13566:9;13562:18;13554:26;;13626:9;13620:4;13616:20;13612:1;13601:9;13597:17;13590:47;13654:131;13780:4;13654:131;:::i;:::-;13646:139;;13373:419;;;:::o;13798:180::-;13846:77;13843:1;13836:88;13943:4;13940:1;13933:15;13967:4;13964:1;13957:15;13984:305;14024:3;14043:20;14061:1;14043:20;:::i;:::-;14038:25;;14077:20;14095:1;14077:20;:::i;:::-;14072:25;;14231:1;14163:66;14159:74;14156:1;14153:81;14150:107;;;14237:18;;:::i;:::-;14150:107;14281:1;14278;14274:9;14267:16;;13984:305;;;;:::o;14295:162::-;14435:14;14431:1;14423:6;14419:14;14412:38;14295:162;:::o;14463:366::-;14605:3;14626:67;14690:2;14685:3;14626:67;:::i;:::-;14619:74;;14702:93;14791:3;14702:93;:::i;:::-;14820:2;14815:3;14811:12;14804:19;;14463:366;;;:::o;14835:419::-;15001:4;15039:2;15028:9;15024:18;15016:26;;15088:9;15082:4;15078:20;15074:1;15063:9;15059:17;15052:47;15116:131;15242:4;15116:131;:::i;:::-;15108:139;;14835:419;;;:::o;15260:166::-;15400:18;15396:1;15388:6;15384:14;15377:42;15260:166;:::o;15432:366::-;15574:3;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15671:93;15760:3;15671:93;:::i;:::-;15789:2;15784:3;15780:12;15773:19;;15432:366;;;:::o;15804:419::-;15970:4;16008:2;15997:9;15993:18;15985:26;;16057:9;16051:4;16047:20;16043:1;16032:9;16028:17;16021:47;16085:131;16211:4;16085:131;:::i;:::-;16077:139;;15804:419;;;:::o;16229:229::-;16369:34;16365:1;16357:6;16353:14;16346:58;16438:12;16433:2;16425:6;16421:15;16414:37;16229:229;:::o;16464:366::-;16606:3;16627:67;16691:2;16686:3;16627:67;:::i;:::-;16620:74;;16703:93;16792:3;16703:93;:::i;:::-;16821:2;16816:3;16812:12;16805:19;;16464:366;;;:::o;16836:419::-;17002:4;17040:2;17029:9;17025:18;17017:26;;17089:9;17083:4;17079:20;17075:1;17064:9;17060:17;17053:47;17117:131;17243:4;17117:131;:::i;:::-;17109:139;;16836:419;;;:::o;17261:300::-;17401:34;17397:1;17389:6;17385:14;17378:58;17470:34;17465:2;17457:6;17453:15;17446:59;17539:14;17534:2;17526:6;17522:15;17515:39;17261:300;:::o;17567:366::-;17709:3;17730:67;17794:2;17789:3;17730:67;:::i;:::-;17723:74;;17806:93;17895:3;17806:93;:::i;:::-;17924:2;17919:3;17915:12;17908:19;;17567:366;;;:::o;17939:419::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:131;18346:4;18220:131;:::i;:::-;18212:139;;17939:419;;;:::o;18364:224::-;18504:34;18500:1;18492:6;18488:14;18481:58;18573:7;18568:2;18560:6;18556:15;18549:32;18364:224;:::o;18594:366::-;18736:3;18757:67;18821:2;18816:3;18757:67;:::i;:::-;18750:74;;18833:93;18922:3;18833:93;:::i;:::-;18951:2;18946:3;18942:12;18935:19;;18594:366;;;:::o;18966:419::-;19132:4;19170:2;19159:9;19155:18;19147:26;;19219:9;19213:4;19209:20;19205:1;19194:9;19190:17;19183:47;19247:131;19373:4;19247:131;:::i;:::-;19239:139;;18966:419;;;:::o;19391:236::-;19531:34;19527:1;19519:6;19515:14;19508:58;19600:19;19595:2;19587:6;19583:15;19576:44;19391:236;:::o;19633:366::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:419::-;20171:4;20209:2;20198:9;20194:18;20186:26;;20258:9;20252:4;20248:20;20244:1;20233:9;20229:17;20222:47;20286:131;20412:4;20286:131;:::i;:::-;20278:139;;20005:419;;;:::o;20430:164::-;20570:16;20566:1;20558:6;20554:14;20547:40;20430:164;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20600:366;;;:::o;20972:419::-;21138:4;21176:2;21165:9;21161:18;21153:26;;21225:9;21219:4;21215:20;21211:1;21200:9;21196:17;21189:47;21253:131;21379:4;21253:131;:::i;:::-;21245:139;;20972:419;;;:::o;21397:225::-;21537:34;21533:1;21525:6;21521:14;21514:58;21606:8;21601:2;21593:6;21589:15;21582:33;21397:225;:::o;21628:366::-;21770:3;21791:67;21855:2;21850:3;21791:67;:::i;:::-;21784:74;;21867:93;21956:3;21867:93;:::i;:::-;21985:2;21980:3;21976:12;21969:19;;21628:366;;;:::o;22000:419::-;22166:4;22204:2;22193:9;22189:18;22181:26;;22253:9;22247:4;22243:20;22239:1;22228:9;22224:17;22217:47;22281:131;22407:4;22281:131;:::i;:::-;22273:139;;22000:419;;;:::o;22425:223::-;22565:34;22561:1;22553:6;22549:14;22542:58;22634:6;22629:2;22621:6;22617:15;22610:31;22425:223;:::o;22654:366::-;22796:3;22817:67;22881:2;22876:3;22817:67;:::i;:::-;22810:74;;22893:93;22982:3;22893:93;:::i;:::-;23011:2;23006:3;23002:12;22995:19;;22654:366;;;:::o;23026:419::-;23192:4;23230:2;23219:9;23215:18;23207:26;;23279:9;23273:4;23269:20;23265:1;23254:9;23250:17;23243:47;23307:131;23433:4;23307:131;:::i;:::-;23299:139;;23026:419;;;:::o;23451:221::-;23591:34;23587:1;23579:6;23575:14;23568:58;23660:4;23655:2;23647:6;23643:15;23636:29;23451:221;:::o;23678:366::-;23820:3;23841:67;23905:2;23900:3;23841:67;:::i;:::-;23834:74;;23917:93;24006:3;23917:93;:::i;:::-;24035:2;24030:3;24026:12;24019:19;;23678:366;;;:::o;24050:419::-;24216:4;24254:2;24243:9;24239:18;24231:26;;24303:9;24297:4;24293:20;24289:1;24278:9;24274:17;24267:47;24331:131;24457:4;24331:131;:::i;:::-;24323:139;;24050:419;;;:::o;24475:224::-;24615:34;24611:1;24603:6;24599:14;24592:58;24684:7;24679:2;24671:6;24667:15;24660:32;24475:224;:::o;24705:366::-;24847:3;24868:67;24932:2;24927:3;24868:67;:::i;:::-;24861:74;;24944:93;25033:3;24944:93;:::i;:::-;25062:2;25057:3;25053:12;25046:19;;24705:366;;;:::o;25077:419::-;25243:4;25281:2;25270:9;25266:18;25258:26;;25330:9;25324:4;25320:20;25316:1;25305:9;25301:17;25294:47;25358:131;25484:4;25358:131;:::i;:::-;25350:139;;25077:419;;;:::o;25502:222::-;25642:34;25638:1;25630:6;25626:14;25619:58;25711:5;25706:2;25698:6;25694:15;25687:30;25502:222;:::o;25730:366::-;25872:3;25893:67;25957:2;25952:3;25893:67;:::i;:::-;25886:74;;25969:93;26058:3;25969:93;:::i;:::-;26087:2;26082:3;26078:12;26071:19;;25730:366;;;:::o;26102:419::-;26268:4;26306:2;26295:9;26291:18;26283:26;;26355:9;26349:4;26345:20;26341:1;26330:9;26326:17;26319:47;26383:131;26509:4;26383:131;:::i;:::-;26375:139;;26102:419;;;:::o;26527:230::-;26667:34;26663:1;26655:6;26651:14;26644:58;26736:13;26731:2;26723:6;26719:15;26712:38;26527:230;:::o;26763:366::-;26905:3;26926:67;26990:2;26985:3;26926:67;:::i;:::-;26919:74;;27002:93;27091:3;27002:93;:::i;:::-;27120:2;27115:3;27111:12;27104:19;;26763:366;;;:::o;27135:419::-;27301:4;27339:2;27328:9;27324:18;27316:26;;27388:9;27382:4;27378:20;27374:1;27363:9;27359:17;27352:47;27416:131;27542:4;27416:131;:::i;:::-;27408:139;;27135:419;;;:::o;27560:223::-;27700:34;27696:1;27688:6;27684:14;27677:58;27769:6;27764:2;27756:6;27752:15;27745:31;27560:223;:::o;27789:366::-;27931:3;27952:67;28016:2;28011:3;27952:67;:::i;:::-;27945:74;;28028:93;28117:3;28028:93;:::i;:::-;28146:2;28141:3;28137:12;28130:19;;27789:366;;;:::o;28161:419::-;28327:4;28365:2;28354:9;28350:18;28342:26;;28414:9;28408:4;28404:20;28400:1;28389:9;28385:17;28378:47;28442:131;28568:4;28442:131;:::i;:::-;28434:139;;28161:419;;;:::o;28586:231::-;28726:34;28722:1;28714:6;28710:14;28703:58;28795:14;28790:2;28782:6;28778:15;28771:39;28586:231;:::o;28823:366::-;28965:3;28986:67;29050:2;29045:3;28986:67;:::i;:::-;28979:74;;29062:93;29151:3;29062:93;:::i;:::-;29180:2;29175:3;29171:12;29164:19;;28823:366;;;:::o;29195:419::-;29361:4;29399:2;29388:9;29384:18;29376:26;;29448:9;29442:4;29438:20;29434:1;29423:9;29419:17;29412:47;29476:131;29602:4;29476:131;:::i;:::-;29468:139;;29195:419;;;:::o;29620:191::-;29660:4;29680:20;29698:1;29680:20;:::i;:::-;29675:25;;29714:20;29732:1;29714:20;:::i;:::-;29709:25;;29753:1;29750;29747:8;29744:34;;;29758:18;;:::i;:::-;29744:34;29803:1;29800;29796:9;29788:17;;29620:191;;;;:::o;29817:180::-;29865:77;29862:1;29855:88;29962:4;29959:1;29952:15;29986:4;29983:1;29976:15;30003:185;30043:1;30060:20;30078:1;30060:20;:::i;:::-;30055:25;;30094:20;30112:1;30094:20;:::i;:::-;30089:25;;30133:1;30123:35;;30138:18;;:::i;:::-;30123:35;30180:1;30177;30173:9;30168:14;;30003:185;;;;:::o;30194:250::-;30334:34;30330:1;30322:6;30318:14;30311:58;30403:33;30398:2;30390:6;30386:15;30379:58;30194:250;:::o;30450:366::-;30592:3;30613:67;30677:2;30672:3;30613:67;:::i;:::-;30606:74;;30689:93;30778:3;30689:93;:::i;:::-;30807:2;30802:3;30798:12;30791:19;;30450:366;;;:::o;30822:419::-;30988:4;31026:2;31015:9;31011:18;31003:26;;31075:9;31069:4;31065:20;31061:1;31050:9;31046:17;31039:47;31103:131;31229:4;31103:131;:::i;:::-;31095:139;;30822:419;;;:::o;31247:225::-;31387:34;31383:1;31375:6;31371:14;31364:58;31456:8;31451:2;31443:6;31439:15;31432:33;31247:225;:::o;31478:366::-;31620:3;31641:67;31705:2;31700:3;31641:67;:::i;:::-;31634:74;;31717:93;31806:3;31717:93;:::i;:::-;31835:2;31830:3;31826:12;31819:19;;31478:366;;;:::o;31850:419::-;32016:4;32054:2;32043:9;32039:18;32031:26;;32103:9;32097:4;32093:20;32089:1;32078:9;32074:17;32067:47;32131:131;32257:4;32131:131;:::i;:::-;32123:139;;31850:419;;;:::o;32275:332::-;32396:4;32434:2;32423:9;32419:18;32411:26;;32447:71;32515:1;32504:9;32500:17;32491:6;32447:71;:::i;:::-;32528:72;32596:2;32585:9;32581:18;32572:6;32528:72;:::i;:::-;32275:332;;;;;:::o;32613:348::-;32653:7;32676:20;32694:1;32676:20;:::i;:::-;32671:25;;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32898:1;32830:66;32826:74;32823:1;32820:81;32815:1;32808:9;32801:17;32797:105;32794:131;;;32905:18;;:::i;:::-;32794:131;32953:1;32950;32946:9;32935:20;;32613:348;;;;:::o;32967:180::-;33015:77;33012:1;33005:88;33112:4;33109:1;33102:15;33136:4;33133:1;33126:15;33153:180;33201:77;33198:1;33191:88;33298:4;33295:1;33288:15;33322:4;33319:1;33312:15;33339:143;33396:5;33427:6;33421:13;33412:22;;33443:33;33470:5;33443:33;:::i;:::-;33339:143;;;;:::o;33488:351::-;33558:6;33607:2;33595:9;33586:7;33582:23;33578:32;33575:119;;;33613:79;;:::i;:::-;33575:119;33733:1;33758:64;33814:7;33805:6;33794:9;33790:22;33758:64;:::i;:::-;33748:74;;33704:128;33488:351;;;;:::o;33845:85::-;33890:7;33919:5;33908:16;;33845:85;;;:::o;33936:158::-;33994:9;34027:61;34045:42;34054:32;34080:5;34054:32;:::i;:::-;34045:42;:::i;:::-;34027:61;:::i;:::-;34014:74;;33936:158;;;:::o;34100:147::-;34195:45;34234:5;34195:45;:::i;:::-;34190:3;34183:58;34100:147;;:::o;34253:114::-;34320:6;34354:5;34348:12;34338:22;;34253:114;;;:::o;34373:184::-;34472:11;34506:6;34501:3;34494:19;34546:4;34541:3;34537:14;34522:29;;34373:184;;;;:::o;34563:132::-;34630:4;34653:3;34645:11;;34683:4;34678:3;34674:14;34666:22;;34563:132;;;:::o;34701:108::-;34778:24;34796:5;34778:24;:::i;:::-;34773:3;34766:37;34701:108;;:::o;34815:179::-;34884:10;34905:46;34947:3;34939:6;34905:46;:::i;:::-;34983:4;34978:3;34974:14;34960:28;;34815:179;;;;:::o;35000:113::-;35070:4;35102;35097:3;35093:14;35085:22;;35000:113;;;:::o;35149:732::-;35268:3;35297:54;35345:5;35297:54;:::i;:::-;35367:86;35446:6;35441:3;35367:86;:::i;:::-;35360:93;;35477:56;35527:5;35477:56;:::i;:::-;35556:7;35587:1;35572:284;35597:6;35594:1;35591:13;35572:284;;;35673:6;35667:13;35700:63;35759:3;35744:13;35700:63;:::i;:::-;35693:70;;35786:60;35839:6;35786:60;:::i;:::-;35776:70;;35632:224;35619:1;35616;35612:9;35607:14;;35572:284;;;35576:14;35872:3;35865:10;;35273:608;;;35149:732;;;;:::o;35887:831::-;36150:4;36188:3;36177:9;36173:19;36165:27;;36202:71;36270:1;36259:9;36255:17;36246:6;36202:71;:::i;:::-;36283:80;36359:2;36348:9;36344:18;36335:6;36283:80;:::i;:::-;36410:9;36404:4;36400:20;36395:2;36384:9;36380:18;36373:48;36438:108;36541:4;36532:6;36438:108;:::i;:::-;36430:116;;36556:72;36624:2;36613:9;36609:18;36600:6;36556:72;:::i;:::-;36638:73;36706:3;36695:9;36691:19;36682:6;36638:73;:::i;:::-;35887:831;;;;;;;;:::o;36724:807::-;36973:4;37011:3;37000:9;36996:19;36988:27;;37025:71;37093:1;37082:9;37078:17;37069:6;37025:71;:::i;:::-;37106:72;37174:2;37163:9;37159:18;37150:6;37106:72;:::i;:::-;37188:80;37264:2;37253:9;37249:18;37240:6;37188:80;:::i;:::-;37278;37354:2;37343:9;37339:18;37330:6;37278:80;:::i;:::-;37368:73;37436:3;37425:9;37421:19;37412:6;37368:73;:::i;:::-;37451;37519:3;37508:9;37504:19;37495:6;37451:73;:::i;:::-;36724:807;;;;;;;;;:::o;37537:143::-;37594:5;37625:6;37619:13;37610:22;;37641:33;37668:5;37641:33;:::i;:::-;37537:143;;;;:::o;37686:663::-;37774:6;37782;37790;37839:2;37827:9;37818:7;37814:23;37810:32;37807:119;;;37845:79;;:::i;:::-;37807:119;37965:1;37990:64;38046:7;38037:6;38026:9;38022:22;37990:64;:::i;:::-;37980:74;;37936:128;38103:2;38129:64;38185:7;38176:6;38165:9;38161:22;38129:64;:::i;:::-;38119:74;;38074:129;38242:2;38268:64;38324:7;38315:6;38304:9;38300:22;38268:64;:::i;:::-;38258:74;;38213:129;37686:663;;;;;:::o
Swarm Source
ipfs://f743fe9e489f18237cfe160240c71146dc5a740626864d037996daf0ccdc479c
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.