3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ProGuard Usage 翻译

發布時間:2023/12/29 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ProGuard Usage 翻译 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.



Usage ?用法

To run ProGuard, just type:

運行ProGuard,只需輸入:

java -jar proguard.jar?options?...

You can find the ProGuard jar in the?lib?directory of the ProGuard distribution. Alternatively, the?bin?directory contains some short Linux and Windows scripts containing this command. Typically, you'll put most options in a configuration file (say,?myconfig.pro), and just call:


你可以在ProGuard lib目錄中找到 ProGuard jar。一些包含此命令的LInux和Windows 短腳本可在bin 目錄中找到供你選擇。典型的用法是,你將大多數的參數選項寫入一個配置文件中(如,myconfig.pro),然后運行:


java -jar proguard.jar @myconfig.pro

You can combine command line options and options from configuration files. For instance:


你可以將命令行選項和配置文件選項結合使用。舉個栗子:


java -jar proguard.jar @myconfig.pro -verbose

You can add comments in a configuration file, starting with a?#?character and continuing until the end of the line.

你可以在配置文件添加注釋,用法是以#開頭,接在#后面的單行都是注釋。


Extra whitespace between words and delimiters is ignored. File names with spaces or special characters should be quoted with single or double quotes.


文字和分隔符中間的空格是被忽略的。包含空格或者特殊字符的文件名需要用單引號或者雙引號引用。


Options can be grouped arbitrarily in arguments on the command line and in lines in configuration files. This means that you can quote arbitrary sections of command line options, to avoid shell expansion of special characters, for instance.


命令行選項可以在命令行和配置文件中任意組合。這就意味著你可以引用任意命令行選項,而避免設計特殊的shell特殊語句擴展。


The order of the options is generally irrelevant. For quick experiments, you can abbreviate them to their first unique characters.


選項的順序通常是無關緊要的。為了快速的執行,你可以縮寫他們,用他們的第一個特殊字符標示他們。


The sections below provide more details:


以下的單元組提供更多詳細信息:


  • Input/Output Options?輸入流/輸出流選項
  • Keep Options? ?keep選項
  • Shrinking Options? ?縮減選項
  • Optimization Options優化選項
  • Obfuscation Options混淆選項
  • Preverification Options預校驗選項
  • General Options常規選項
  • Class Pathsclass 路徑
  • File Names文件名
  • File Filters文件過濾器
  • Filters過濾器
  • Overview of?Keep?Optionskeep選項總覽
  • Keep Option Modifierskeep選項修改器
  • Class Specifications


Input/Output Options

@filename

Short for '-include?filename'. ? ?'-include?filename'的簡寫

-include?filename ?

Recursively reads configuration options from the given file?filename. ?


從給定的文件中遞歸的讀取配置選項。 (如:-include lib/annotations.pro)


-basedirectory?directoryname

Specifies the base directory for all subsequent relative file names in these configuration arguments or this configuration file.


指定配置參數中或配置文件中所有有關聯的文件的基礎目錄。


-injars?class_path

Specifies the input jars (or aars, wars, ears, zips, apks, or directories) of the application to be processed. The class files in these jars will be processed and written to the output jars. By default, any non-class files will be copied without changes. Please be aware of any temporary files (e.g. created by IDEs), especially if you are reading your input files straight from directories. The entries in the class path can be filtered, as explained in the?filters?section. For better readability, class path entries can be specified using multiple?-injars?options.


指定應用中需要proguard處理的jars(或 aars,wars,ears,zips,asks等文件或目錄)。這些jars中的class文件將被proguard處理并被寫入output jars中。默認情況下,任何非class文件將被原封不動的拷貝一份。請留意處理那些臨時的文件(如 IDEs工具創建的配置文件等),尤其是當你直接指定目錄的時候。這些class path入口可設置過濾器,過濾器內容可查看過濾器單元。為了便于閱讀,class path入口可以通過重復的使用-injars選項進行指定。


-outjars?class_path

Specifies the names of the output jars (or aars, wars, ears, zips, apks, or directories). The processed input of the preceding?-injars?options will be written to the named jars. This allows you to collect the contents of groups of input jars into corresponding groups of output jars. In addition, the output entries can be filtered, as explained in the?filters?section. Each processed class file or resource file is then written to the first output entry with a matching filter, within the group of output jars.


指定輸出的jars(或 aars,wars,ears,zips,asks等文件或目錄)的文件名稱。之前在-injars選項中指定的被處理后的內容將寫入outjars 指定的文件中。它允許你以組形式收集的jars內容按照組形式輸出為對應的outjars組里。此外,output通道可以設置過濾器,過濾器詳情查看過濾器單元。每一個處理的class文件或者resource文件會寫入在output jars組中與過濾器匹配的第一個output通道。


-injars base_in1.jar

-injars base_in2.jar

-injars base_in3.jar

-outjars base_out.jar


-injars? extra_in.jar

-outjars extra_out.jar



You must avoid letting the output files overwrite any input files. For better readability, class path entries can be specified using multiple?-outjars?options. Without any?-outjars?options, no jars will be written.


你需要避免讓輸出文件覆蓋了輸入文件。為了便于閱讀,class path出口可以通過重復的使用-outjars選項進行指定。如果沒有任何-outjars選項,則不會輸出任何文件。



-libraryjars?class_path

Specifies the library jars (or aars, wars, ears, zips, apks, or directories) of the application to be processed. The files in these jars will not be included in the output jars. The specified library jars should at least contain the class files that are?extended?by application class files. Library class files that are only?called?needn't be present, although their presence can improve the results of the optimization step. The entries in the class path can be filtered, as explained in the?filters?section. For better readability, class path entries can be specified using multiple?-libraryjars?options.

Please note that the boot path and the class path set for running ProGuard are not considered when looking for library classes. This means that you explicitly have to specify the run-time jar that your code will use. Although this may seem cumbersome, it allows you to process applications targeted at different run-time environments. For example, you can process?J2SE applications?as well as?JME midlets?or?Android apps, just by specifying the appropriate run-time jar.


指定應用中需要處理的library jars (or aars, wars, ears, zips, apks, or directories)。在library jars中的文件不會被寫入output jars中。指定的library jars應該至少包含應用class文件中需要繼承的class。

Library class 文件只需要被引用而不需要存在,雖然他們的存在可以提高優化的結果。class path的入口可以設置過濾器,詳見過濾器單元。為了便于閱讀,class path出口可以通過重復的使用-libraryjars選項進行指定。

請注意,proguard執行時的運行時jar包環境是未知的。這就意味著,你需要明確指定運行時jar包,你的代碼才能使用。雖然看起來比較繁瑣,但它能允許你處理針對不同的運行環境的應用。舉個栗子,你可以處理J2SE應用,JME應用和Android應用。只要指定預處理應用對應的運行時jar包就好了。


-skipnonpubliclibraryclasses

Specifies to skip non-public classes while reading library jars, to speed up processing and reduce memory usage of ProGuard. By default, ProGuard reads non-public and public library classes alike. However, non-public classes are often not relevant, if they don't affect the actual program code in the input jars. Ignoring them then speeds up ProGuard, without affecting the output. Unfortunately, some libraries, including recent JSE run-time libraries, contain non-public library classes that are extended by public library classes. You then can't use this option. ProGuard will print out warnings if it can't find classes due to this option being set.


指定在讀取library jars時跳過讀取那些non-public classes,以便于提高proguard的處理速度和減少內存消耗。默認情況下,proguard像public library classes一樣讀取 non-public classes。然而,如果他們不影響input jars里的現行代碼,non-public classes經常是無關緊要的。忽略他們,提高proguard速度,也不影響output的輸出。不幸的是,一些libraries,包括當前的 JSE run-time libraries,包含有被public library classes 繼承的non-public library classes。你就不能使用這個選項了。proguard將會打印因為這個選項的設置而引起的 it can’t find classes警告。


-dontskipnonpubliclibraryclasses

Specifies not to ignore non-public library classes. As of version 4.5, this is the default setting.


不忽略non-public library classes.從4.5版本起,這個設置是默認的。


-dontskipnonpubliclibraryclassmembers

Specifies not to ignore package visible library class members (fields and methods). By default, ProGuard skips these class members while parsing library classes, as program classes will generally not refer to them. Sometimes however, program classes reside in the same packages as library classes, and they do refer to their package visible class members. In those cases, it can be useful to actually read the class members, in order to make sure the processed code remains consistent.


不忽略包級的library class里的成員(fields 和 methods)。默認的,當解析library classes時proguard會跳過這些類成員,因為代碼類通常不引用他們。然而有時候,代碼類與library classes處于用一個包名下,那就可以引用包級成員了。這樣,-dontskipnonpubliclibraryclassmembers 在確實讀取了這些包級成員時派上了用場,以確保處理后的代碼可用性。



-keepdirectories?[directory_filter]

Specifies the directories to be kept in the output jars (or aars, wars, ears, zips, apks, or directories). By default, directory entries are removed. This reduces the jar size, but it may break your program if the code tries to find them with constructs like "mypackage.MyClass.class.getResource("")". You'll then want to keep the directory corresponding to the package, "-keepdirectories mypackage". If the option is specified without a filter, all directories are kept. With a filter, only matching directories are kept. For instance, "-keepdirectories mydirectory" matches the specified directory, "-keepdirectories mydirectory/*" matches its immediate subdirectories, and "-keepdirectories mydirectory/**" matches all of its subdirectories.


指定目錄結構被保留在output (or aars, wars, ears, zips, apks, or directories)jars中。默認情況,目錄結構是被移除的。這樣可以減少jar的大小,但如果你使用類似于"mypackage.MyClass.class.getResource(“”)結構的代碼時,它將破壞你的程序。你若想保留對應的包名目錄結構,使用"-keepdirectories mypackage”。如果選項沒有設置過濾器,所有的目錄將被保留。使用過濾器,只用匹配的目錄將被保留。舉個栗子,"-keepdirectories mydirectory" 只匹配mydirectory目錄,"-keepdirectories mydirectory/*”匹配mydirectory的一層子目錄,"-keepdirectories mydirectory/**則匹配mydirectory下所有目錄。


-target?version

Specifies the version number to be set in the processed class files. The version number can be one of?1.0,?1.1,?1.2,?1.3,?1.4,?1.5?(or just?5),?1.6(or just?6),?1.7?(or just?7), or?1.8?(or just?8). By default, the version numbers of the class files are left unchanged. For example, you may want toupgrade class files to Java 6, by changing their version numbers and having them preverified. You probably shouldn't downgrade the version numbers of class files, since the code may contain constructs that are not supported in older versions.


指定處理后文件使用的java版本號。版本號形式可以是?1.0,?1.1,?1.2,?1.3,?1.4,?1.5?(or just?5),?1.6(or just?6),?1.7?(or just?7), or?1.8?(or just?8). 默認的,class files的版本號是不會變化的。如果你想升級class files 到java6,可以改變這個版本號,使之進行預驗證。你可能不能降低classes files的版本號,因為文件中可能會包含低版本不支持的結構。



-forceprocessing

Specifies to process the input, even if the output seems up to date. The up-to-dateness test is based on a comparison of the date stamps of the specified input, output, and configuration files or directories.


指定強行處理input數據,即使output的數據是最新的。驗證數據是否是最新的判斷是建立在指定的input,output,配置文件或目錄的日期戳的比較上。




Keep Options? Keep選項

-keep [,modifier,...] class_specification

Specifies classes and class members (fields and methods) to be preserved as entry points to your code. For example, in order to keep an application, you can specify the main class along with its main method. In order to process a library, you should specify all publicly accessible elements.


指定你代碼里的類和類成員(常變量和方法)保留原貌。舉個栗子,為了保護一個應用,你可以指定main class的main 方法被保留。而當處理一個library,你應該保留所有的公共可用的元素。



-keepclassmembers [,modifier,...] class_specification

Specifies class members to be preserved, if their classes are preserved as well. For example, you may want to keep all serialization fields and methods of classes that implement the Serializable interface.


指定類成員被保留,如果他們的類也被保護(類沒有被保護似乎也有效)。例如,你要保留所有實現Serializable接口的類的序列化成員。


-keepclassmembers class * implements java.io.Serializable {

? ? private static final java.io.ObjectStreamField[] serialPersistentFields;

? ? private void writeObject(java.io.ObjectOutputStream);

? ? private void readObject(java.io.ObjectInputStream);

? ? java.lang.Object writeReplace();

? ? java.lang.Object readResolve();

}



-keepclasseswithmembers [,modifier,...] class_specification

Specifies classes and class members to be preserved, on the condition that all of the specified class members are present. For example, you may want to keep all applications that have a main method, without having to list them explicitly.

指定在所有指定的類成員都存在的情況下,保護類和類成員。例如你要保存所有有main方法的應用,不用一一明確的指定每一個。


-keepclasseswithmembers public class * {

? ? public static void main(java.lang.String[]);

}



-keepnames class_specification

Short for -keep,allowshrinking class_specification

Specifies classes and class members whose names are to be preserved, if they aren't removed in the shrinking phase. For example, you may want to keep all class names of classes that implement the Serializable interface, so that the processed code remains compatible with any originally serialized classes. Classes that aren't used at all can still be removed. Only applicable when obfuscating.

?-keep,allowshrinking class_specification 的縮寫

指定類和類成員名被保護,如果他們沒有被縮減解析被刪減掉。例如,你想保留所有實現了序列化接口的類名,以便處理后的代碼仍然可以兼容原來的序列化類。那些沒有使用的類依然會被刪除。此選項只有在運行了混淆選項的時候有效。


-keepclassmembernames class_specification

Short for -keepclassmembers,allowshrinking class_specification

Specifies class members whose names are to be preserved, if they aren't removed in the shrinking phase. For example, you may want to preserve the name of the synthetic class$ methods when processing a library compiled by JDK 1.2 or older, so obfuscators can detect it again when processing an application that uses the processed library (although ProGuard itself doesn't need this). Only applicable when obfuscating.

?-keepclassmembers,allowshrinking class_specification 的縮寫

指定類成員名被保護,如果他們沒有被縮減解析刪減掉。例如,你想保留用JDK1.2或者更老版本編譯的library項目里的內部類方法,當處理一個使用了這個處理的library的應用的時候混淆器能再次發現他。此選項只有在運行了混淆選項的時候有效。?



-keepclasseswithmembernames class_specification

Short for -keepclasseswithmembers,allowshrinking class_specification

Specifies classes and class members whose names are to be preserved, on the condition that all of the specified class members are present after the shrinking phase. For example, you may want to keep all native method names and the names of their classes, so that the processed code can still link with the native library code. Native methods that aren't used at all can still be removed. If a class file is used, but none of its native methods are, its name will still be obfuscated. Only applicable when obfuscating.

?-keepclasseswithmembers,allowshrinking class_specification 的縮寫

指定類和類成員被保護,前提是所有指定類成員在被縮減處理后依然存在。例如,你想保護所有的native方法名和他們的類名,使處理后的代碼仍然可以聯系到native library code.沒有被使用的native方法依然會被刪除。如果一個類有被使用,但它的native方法都沒有被使用,那么它的類名仍然會被混淆。此選項只有在運行了混淆選項的時候有效。?


-printseeds [filename]

Specifies to exhaustively list classes and class members matched by the various -keep options. The list is printed to the standard output or to the given file. The list can be useful to verify if the intended class members are really found, especially if you're using wildcards. For example, you may want to list all the applications or all the applets that you are keeping.


羅列出一個被-keep相關選項匹配的類和類成員的詳細列表。這個列表將被打印到output中或者指定的路徑中。這個列表能被用于驗證是否期望的類成員真的被保護到,尤其是當你使用通配符的時候。例如,你想列出所有應用中你想保護的。


Shrinking Options ? 縮減選項

-dontshrink

Specifies not to shrink the input class files. By default, shrinking is applied; all classes and class members are removed, except for the ones listed by the various -keep options, and the ones on which they depend, directly or indirectly. A shrinking step is also applied after each optimization step, since some optimizations may open the possibility to remove more classes and class members.


指定不縮減輸入的class文件。縮減選項是默認執行的。除了被keep保護的,以及相互間有直接或間接依賴關系的類和類成員,其他的類和類成員都會被刪除掉。縮減步驟會在每次優化后再執行一次,因為一些優化后可能存在符合刪除條件的類和類成員。



-printusage [filename]

Specifies to list dead code of the input class files. The list is printed to the standard output or to the given file. For example, you can list the unused code of an application. Only applicable when shrinking.


列出被縮減刪除的code。這個列表會被輸出到output路徑或者指定的路徑文件下。例如,你可以列出應用中沒有使用的code.只在縮減執行時才有效。



-whyareyoukeeping class_specification

Specifies to print details on why the given classes and class members are being kept in the shrinking step. This can be useful if you are wondering why some given element is present in the output. In general, there can be many different reasons. This option prints the shortest chain of methods to a specified seed or entry point, for each specified class and class member. In the current implementation, the shortest chain that is printed out may sometimes contain circular deductions -- these do not reflect the actual shrinking process. If the -verboseoption if specified, the traces include full field and method signatures. Only applicable when shrinking.


設置打印說明為什么要在縮減步驟中保留那些類和類成員。如果你想知道為什么一些元素在輸出結果中依然存在,這個選項很有用。通常情況下,可能會有很多不同的原因。這個選項為每個指定的類和類成員打印最短的方法引用鏈。

在當前的實現機制下,這個方法鏈有時候會包含有刪減的內容 - - 這些不會影響縮減的真實處理。如果指定了具體選項,蹤跡會包含指定的所有field和method簽名。只在縮減執行時才有效。


Optimization Options? 優化選項

-dontoptimize

Specifies not to optimize the input class files. By default, optimization is enabled; all methods are optimized at a bytecode level.


指定不優化輸入文件。默認情況下,優化是可用的。所有方法都會以字節碼等級進行優化。


-optimizations optimization_filter

Specifies the optimizations to be enabled and disabled, at a more fine-grained level. Only applicable when optimizing. This is an expert option.


以更細顆粒度的等級指定什么時候優化什么時候不優化。只有在優化中才有效。這是一個專業級的選項。



-optimizationpasses n

Specifies the number of optimization passes to be performed. By default, a single pass is performed. Multiple passes may result in further improvements. If no improvements are found after an optimization pass, the optimization is ended. Only applicable when optimizing.


指定執行優化的次數。默認只優化一次。多次優化會對結果進行深度提升。如果在一次優化后發現沒有可以提升的空間后,優化會停止。只有在優化的情況下此選項才有效。


-assumenosideeffects class_specification

Specifies methods that don't have any side effects (other than maybe returning a value). In the optimization step, ProGuard will then remove calls to such methods, if it can determine that the return values aren't used. ProGuard will analyze your program code to find such methods automatically. It will not analyze library code, for which this option can therefore be useful. For example, you could specify the method System.currentTimeMillis(), so that any idle calls to it will be removed. With some care, you can also use the option to remove logging code. Note that ProGuard applies the option to the entire hierarchy of the specified methods. Only applicable when optimizing. In general, making assumptions can be dangerous; you can easily break the processed code. Only use this option if you know what you're doing!


使方法失效(除非返回一個有被使用的值)。在優化中,如果確定這些方法的返回值沒有被使用,proguard將不去調用這些方法。proguard會自動分析你的代碼找到這樣的方法。在這個選項使用的時候,它不會分析library代碼,但這個選項的效果仍有用。

舉例說明,你可以指定System.currentTimeMillis(),不被調用。在某些場景中,你可以用這個選項去消除logging日志代碼。請注意,proguard允許此選項影響方法的整個層級。只在使用了優化選項時才有效。通常情況下,使用

assumptions是危險的,你會輕易的破壞代碼結構。請只有在你知道你在做什么的時候下使用。


-allowaccessmodification

Specifies that the access modifiers of classes and class members may be broadened during processing. This can improve the results of the optimization step. For instance, when inlining a public getter, it may be necessary to make the accessed field public too. Although Java's binary compatibility specifications formally do not require this (cfr. The Java Language Specification, Third Edition, Section 13.4.6), some virtual machines would have problems with the processed code otherwise. Only applicable when optimizing (and when obfuscating with the -repackageclasses option).

Counter-indication: you probably shouldn't use this option when processing code that is to be used as a library, since classes and class members that weren't designed to be public in the API may become public.

指定在proguard處理時擴展類和類成員的訪問權限。它能提升優化結果。例如,當內嵌一個public getter方法時,有必要讓相關的field也是public的。雖然Java的二進制兼容性規范沒有正式要求這么做,另外,有些虛擬機也可能在處理這樣優化過得代碼出現問題。只有在優化選項中(如果混淆了,也需要使用-repackageclasses選項)使用。

警告:你不應該在library項目代碼中使用此選項處理代碼,因為那些沒有被設計成public的類和類成員可能會變成public.


-mergeinterfacesaggressively

Specifies that interfaces may be merged, even if their implementing classes don't implement all interface methods. This can reduce the size of the output by reducing the total number of classes. Note that Java's binary compatibility specifications allow such constructs (cfr. The Java Language Specification, Third Edition, Section 13.5.3), even if they are not allowed in the Java language (cfr. The Java Language Specification, Third Edition, Section 8.1.4). Only applicable when optimizing.

Counter-indication: setting this option can reduce the performance of the processed code on some JVMs, since advanced just-in-time compilation tends to favor more interfaces with fewer implementing classes. Worse, some JVMs may not be able to handle the resulting code. Notably:

  • Sun's JRE 1.3 may throw an InternalError when encountering more than 256 Miranda methods (interface methods without implementations) in a class.



合并所有interface接口,即使他們的實現類沒有實現所有的接口方法。它能減少output里類的數量。需要指出的是,Java的二進制兼容性規范是允許這樣的結構的,雖然java語言不允許這樣的結構。只有在優化選項使用時有效。

警告:使用了此選項后的code在一些jvm中執行表現會降低。因為高級的運行時編譯機制傾向于更多的接口,更少的實現類。更糟糕的時,一些jvms可能不能處理這種代碼。特別是:

Sun's JRE 1.3將拋出一個InternalError,當遇到一個類有超過256個 Miranda methods (沒有實現的接口方法)




Obfuscation Options

-dontobfuscate

Specifies not to obfuscate the input class files. By default, obfuscation is applied; classes and class members receive new short random names, except for the ones listed by the various -keep options. Internal attributes that are useful for debugging, such as source files names, variable names, and line numbers are removed.

指定不混淆輸入文件。默認混淆是使用的,類和類成員獲得一個新的短的隨機名稱,除了那些被-keep相關選項保護的。用于調試的內部屬性,如資源文件名,變量名,行號都被刪除。



-printmapping [filename]

Specifies to print the mapping from old names to new names for classes and class members that have been renamed. The mapping is printed to the standard output or to the given file. For example, it is required for subsequent incremental obfuscation, or if you ever want to make sense again of obfuscated stack traces. Only applicable when obfuscating.

打印類和類成員新舊名稱的對應表。對應表被打印到output路徑或者指定的路徑。例如,后續增量混淆需要它,或者你想查看混淆后的日志。只有在混淆執行時有效。


-applymapping filename

Specifies to reuse the given name mapping that was printed out in a previous obfuscation run of ProGuard. Classes and class members that are listed in the mapping file receive the names specified along with them. Classes and class members that are not mentioned receive new names. The mapping may refer to input classes as well as library classes. This option can be useful for incremental obfuscation, i.e. processing add-ons or small patches to an existing piece of code. If the structure of the code changes fundamentally, ProGuard may print out warnings that applying a mapping is causing conflicts. You may be able to reduce this risk by specifying the option -useuniqueclassmembernames in both obfuscation runs. Only a single mapping file is allowed. Only applicable when obfuscating.


復用在以前混淆打印出的對應表。對應表包含的類和類成員名稱不變。沒有包含的獲取新名稱。對應表涉及input和libaray的類。這個選項對增量混淆很有用。例如,增量更新和補丁更新。如果代碼的結構發生根本性的變化,proguard會發出使用對應表引起沖突的警告。你可一個通過在每次混淆時指定 -useuniqueclassmembernames 選項來降低這個風險。只能有一個對應表可以使用,只能在混淆時有效。


-obfuscationdictionary filename

Specifies a text file from which all valid words are used as obfuscated field and method names. By default, short names like 'a', 'b', etc. are used as obfuscated names. With an obfuscation dictionary, you can specify a list of reserved key words, or identifiers with foreign characters, for instance. White space, punctuation characters, duplicate words, and comments after a # sign are ignored. Note that an obfuscation dictionary hardly improves the obfuscation. Decent compilers can automatically replace them, and the effect can fairly simply be undone by obfuscating again with simpler names. The most useful application is specifying strings that are typically already present in class files (such as 'Code'), thus reducing the class file sizes just a little bit more. Only applicable when obfuscating.


指定一個文件設計有效的混淆名供類field和method使用。默認的的混淆名諸如a ,b 之類的。通過這個混淆字典,你可以指定保留關鍵字,或者外國標示符作為命名規則。空格,標點符號,重復的文字和#后面的注釋是被忽略的。請注意,混淆字典很難提升混淆效果。像樣點得編譯器可以自動替換他們,而其成效又可以通過用更簡單的命名方式替代。最有用的應用場景是指定存在于class的代表性的字符串(如‘Code’),因此混淆后的class文件大小會比默認混淆規則大一點。只在混淆時有效。



-classobfuscationdictionary filename

Specifies a text file from which all valid words are used as obfuscated class names. The obfuscation dictionary is similar to the one of the option -obfuscationdictionary. Only applicable when obfuscating.


指定混淆類名的命名規則。類似于-obfuscationdictionary.只在混淆時有效。



-packageobfuscationdictionary filename

Specifies a text file from which all valid words are used as obfuscated package names. The obfuscation dictionary is similar to the one of the option -obfuscationdictionary. Only applicable when obfuscating.


指定混淆包名的命名規則。類似于-obfuscationdictionary.只在混淆時有效。


-overloadaggressively

Specifies to apply aggressive overloading while obfuscating. Multiple fields and methods can then get the same names, as long as their arguments and return types are different, as required by Java bytecode (not just their arguments, as required by the Java language). This option can make the processed code even smaller (and less comprehensible). Only applicable when obfuscating.

Counter-indication: the resulting class files fall within the Java bytecode specification (cfr. The Java Virtual Machine Specification, Second Edition, first paragraphs of Section 4.5 and Section 4.6), even though this kind of overloading is not allowed in the Java language (cfr. The Java Language Specification, Third Edition, Section 8.3 and Section 8.4.5). Still, some tools have problems with it. Notably:

  • Sun's JDK 1.2.2 javac compiler produces an exception when compiling with such a library (cfr. Bug #4216736). You probably shouldn't use this option for processing libraries.
  • Sun's JRE 1.4 and later fail to serialize objects with overloaded primitive fields.
  • Sun's JRE 1.5 pack200 tool reportedly has problems with overloaded class members.
  • The class java.lang.reflect.Proxy can't handle overloaded methods.
  • Google's Dalvik VM can't handle overloaded static fields.


指定混淆時采用野蠻式的重載。很多field和methods可以有相同的名稱,只要他們的入參和返回類型不同,只要符合java字節碼(不只是他們的參數,只要符合java語言要求)。此選項可以讓處理后的代碼更加的小(更加的難以理解)。

只在混淆時有效。


警告:即使這種重載不符合java語言,但它符合java字節碼規范。當然,一些工具處理它時還是會遇到問題。典型的如下:

Sun's JDK 1.2.2 javac 編譯器當編譯這樣一個library的時候會產生異常。你應該不能用這個選項去處理library。

Sun's JRE 1.4 及以后的版本序列化重載的原始fields時會失敗。

Sun's JRE 1.5 pack200 tool據說也會有重載的成員的相關問題。

java.lang.reflect.Proxy類不能處理重載的方法。

Google's Dalvik VM不能處理重載靜態fields.


-useuniqueclassmembernames

Specifies to assign the same obfuscated names to class members that have the same names, and different obfuscated names to class members that have different names (for each given class member signature). Without the option, more class members can be mapped to the same short names like 'a', 'b', etc. The option therefore increases the size of the resulting code slightly, but it ensures that the saved obfuscation name mapping can always be respected in subsequent incremental obfuscation steps.

For instance, consider two distinct interfaces containing methods with the same name and signature. Without this option, these methods may get different obfuscated names in a first obfuscation step. If a patch is then added containing a class that implements both interfaces, ProGuard will have to enforce the same method name for both methods in an incremental obfuscation step. The original obfuscated code is changed, in order to keep the resulting code consistent. With this option in the initial obfuscation step, such renaming will never be necessary.

This option is only applicable when obfuscating. In fact, if you are planning on performing incremental obfuscation, you probably want to avoid shrinking and optimization altogether, since these steps could remove or modify parts of your code that are essential for later additions.

指定有相同名稱的類成員使用相同的混淆名,不同名稱的類成員用不同的混淆名稱(針對每一個類成員泛型)。不用這個選項,更多的類成員會被混淆成類似于a,b這樣的名字。這個選項會稍微的增加結果的大小,但它能確保這個混淆后的名字能給以后的增量混淆帶來好處。

例如,有兩個不同的接口包含有同樣的方法名和泛型的方法。沒有這個選項的時候,這個方法會在第一次混淆的時候擁有不同的方法名。如果一個后續添加的補丁中包含一個實現了這兩個接口的類,proguard不得不在增量混淆中強制把這兩個方法名在改為一個同樣的名字。為了保持結果代碼的功能完整性,原來混淆的代碼需要做出改變。但在初始的混淆中有了這個選項,這種再改名的現象就不需要了。

這個選項只有在混淆時才有效。事實上,如果你計劃執行增量更新,你應當避免縮減和優化,因為這些步驟可能會刪除或者改變為以后增量代碼預留的代碼。



-dontusemixedcaseclassnames

Specifies not to generate mixed-case class names while obfuscating. By default, obfuscated class names can contain a mix of upper-case characters and lower-case characters. This creates perfectly acceptable and usable jars. Only if a jar is unpacked on a platform with a case-insensitive filing system (say, Windows), the unpacking tool may let similarly named class files overwrite each other. Code that self-destructs when it's unpacked! Developers who really want to unpack their jars on Windows can use this option to switch off this behavior. Obfuscated jars will become slightly larger as a result. Only applicable when obfuscating.


指定混淆時不生產混合方法名。默認的,混淆的方法名包含大小寫的混合形式。它生成出完美運行的jars。但當這個jar在不區分大小寫的系統(如windows)解壓的時候,解壓工具可能會覆蓋相似文件名的文件。這樣代碼在解壓的時候就損壞了。如果開發者想要在windows下解壓jars,他們就可以使用這個選項去關閉混合命名行為。混淆的代碼會稍微大一點。只有在混淆時有效。



-keeppackagenames [package_filter]

Specifies not to obfuscate the given package names. The optional filter is a comma-separated list of package names. Package names can contain ?, *, and ** wildcards, and they can be preceded by the ! negator. Only applicable when obfuscating.


不混淆指定規則的包名。過濾器選項是以逗號分隔額包名列表。包名可包含?, *, 和 **通配符,也可以在前面包含!作為非的含義。只有在混淆時有效。



-flattenpackagehierarchy [package_name]

Specifies to repackage all packages that are renamed, by moving them into the single given parent package. Without argument or with an empty string (''), the packages are moved into the root package. This option is one example of further obfuscating package names. It can make the processed code smaller and less comprehensible. Only applicable when obfuscating.

將所有重命名的包名重新包裹,把他們都移動到一個單獨的父包目錄下。如果不寫入參[package_name]或者寫為空字符串’’,所有包則都會被移動到根包下。這個選項使用的一個場景是深度混淆包名。它能讓處理后的代碼更小,更難讀懂。只有在混淆時才有效。




-repackageclasses [package_name]

Specifies to repackage all class files that are renamed, by moving them into the single given package. Without argument or with an empty string (''), the package is removed completely. This option overrides the -flattenpackagehierarchy option. It is another example of furtherobfuscating package names. It can make the processed code even smaller and less comprehensible. Its deprecated name is -defaultpackage. Only applicable when obfuscating.

Counter-indication: classes that look for resource files in their package directories will no longer work properly if they are moved elsewhere. When in doubt, just leave the packaging untouched by not using this option.

將所有混淆的類文件重新打包到一個給定的單獨的包下。如果不寫入參[package_name]或者寫為空字符串’’,則將包路徑完全去除。它能讓處理后的代碼更小,更難讀懂。它原來的名字是-defaultpackage.只在混淆時有效。

警告:那些需要在他們包路徑中尋找資源文件的移至別處的類將不能工作。當你不確定時,還是不要使用這個選項好了。



-keepattributes [attribute_filter]

Specifies any optional attributes to be preserved. The attributes can be specified with one or more -keepattributes directives. The optional filter is a comma-separated list of attribute names that Java virtual machines and ProGuard support. Attribute names can contain ?, *, and** wildcards, and they can be preceded by the ! negator. For example, you should at least keep the Exceptions, InnerClasses, and Signatureattributes when processing a library. You should also keep the SourceFile and LineNumberTable attributes for producing useful obfuscated stack traces. Finally, you may want to keep annotations if your code depends on them. Only applicable when obfuscating.


保留指定的屬性。屬性可以用多個-keepattributes 來指定。添加項可以是java虛擬機和proguard支持的以逗號分隔的屬性名稱列表。屬性名稱可包含

??, *, 和**這樣的通配符,也可以在前面使用 非符號!例如,當你處理一個library項目的時候,你至少要保留Exceptions, InnerClasses, 和 Signature屬性(異常,內部類,泛型)。你也應當保留SourceFileLineNumberTable屬性(源文件名,行號)以生成有用的混淆日志。最后,你可能想保留annotations (注解),如果你的代碼依賴于它。只有在混淆時有效。


-keepparameternames

Specifies to keep the parameter names and types of methods that are kept. This option actually keeps trimmed versions of the debugging attributes LocalVariableTable and LocalVariableTypeTable. It can be useful when processing a library. Some IDEs can use the information to assist developers who use the library, for example with tool tips or autocompletion. Only applicable when obfuscating.

保留方法的參數和類型。這個選項實際上是debugging屬性LocalVariableTableLocalVariableTypeTable的平衡使用。當處理library時,它很有用。一些IDEs能使用這些信息幫助那些使用了這個library的開發者們,例如提示或者自動補全工具。只有在混淆時有效。



-renamesourcefileattribute [string]

Specifies a constant string to be put in the SourceFile attributes (and SourceDir attributes) of the class files. Note that the attribute has to be present to start with, so it also has to be preserved explicitly using the -keepattributes directive. For example, you may want to have your processed libraries and applications produce useful obfuscated stack traces. Only applicable when obfuscating.

指定一個字符串常量替代SourceFile的內容(也可以是SourceDir)。請注意,指定的屬性得使被-keepattributes 指定的。

你想讓處理的library或者應用生成有用可讀性高的混淆日志時,可以使用此配置項。只在混淆時有效。



-adaptclassstrings [class_filter]

Specifies that string constants that correspond to class names should be obfuscated as well. Without a filter, all string constants that correspond to class names are adapted. With a filter, only string constants in classes that match the filter are adapted. For example, if your code contains a large number of hard-coded strings that refer to classes, and you prefer not to keep their names, you may want to use this option. Primarily applicable when obfuscating, although corresponding classes are automatically kept in the shrinking step too.


指定 混淆那些與類名對應的字符串常量。如果沒有設置過濾器,所有與類名對應的字符串常量都要混淆。如果有過濾器,只有匹配過濾器的常量會混淆。例如,假設你得代碼中包含有大量的對應類的硬編碼,你又不想保留他們的名字,你可以使用這個選項。需要提醒的是,混淆時優先考慮可用性,盡管有關聯的類在縮減階段也會被保護。



-adaptresourcefilenames [file_filter]

Specifies the resource files to be renamed, based on the obfuscated names of the corresponding class files (if any). Without a filter, all resource files that correspond to class files are renamed. With a filter, only matching files are renamed. For example, see processing resource files. Only applicable when obfuscating.


基于相關聯的類文件(或者其他什么)的混淆名,混淆資源文件名。如果沒有設置過濾器,所有資源文件名都要混淆。如果有過濾器,只有匹配過濾器的會混淆。可以參考processing resource files處理資源文件的例子。只有在混淆時才有效


-adaptresourcefilecontents [file_filter]

Specifies the resource files whose contents are to be updated. Any class names mentioned in the resource files are renamed, based on the obfuscated names of the corresponding classes (if any). Without a filter, the contents of all resource files updated. With a filter, only matching files are updated. The resource files are parsed and written using the platform's default character set. You can change this default character set by setting the environment variable LANG or the Java system property file.encoding. For an example, see processing resource files. Only applicable when obfuscating.

Caveat: You probably only want to apply this option to text files, since parsing and adapting binary files as text files can cause unexpected problems. Therefore, make sure that you specify a sufficiently narrow filter.

指定資源文件里的內容進行混淆。基于相關聯的類文件(或者其他什么)的混淆名,任何與資源文件內容有關的類里的名稱都會被重命名。沒有過濾器,所有的資源文件都會被混淆。有了過濾器,只有匹配的才會處理。資源文件內容會按照平臺的默認編碼格式進行書寫。你可以通過設置環境變量LANG或者java系統配置文件里的 file.encoding屬性進行自定義。例子參考 processing resource files.只有混淆時才有效。


警告:你應當只讓此選項適用于text文件,因為接卸和改編二進制文件為text文件會引起意想不到的問題。因此,確保你指定一個充分窄范圍的過濾器。



Preverification Options? 預校驗選項

-dontpreverify

Specifies not to preverify the processed class files. By default, class files are preverified if they are targeted at Java Micro Edition or at Java 6 or higher. For Java Micro Edition, preverification is required, so you will need to run an external preverifier on the processed code if you specify this option. For Java 6, preverification is optional, but as of Java 7, it is required. Only when eventually targeting Android, it is not necessary, so you can then switch it off to reduce the processing time a bit.


不校驗處理后的類文件。默認的,類文件是會被校驗的,只要他們的版本是Java Micro Edition或java6以上版本。Java Micro Edition版本的代碼是必須要校驗的,所以如果你使用了這個選項,你也要運行一個額外的校驗過程。java6校驗是可選項,但是java7是必選項。只有在android下運行的代碼,是不需要校驗的,所有你可以關閉這個校驗過程來減少一點點處理的時間。



-microedition

Specifies that the processed class files are targeted at Java Micro Edition. The preverifier will then add the appropriate StackMap attributes, which are different from the default StackMapTable attributes for Java Standard Edition. For example, you will need this option if you areprocessing midlets.


指定處理的類文件以Java Micro Edition運行。校驗器會添加適當的StackMap屬性,因為和Java Standard Edition默認的StackMapTable不一樣。

當你處理midlets項目的時候,你需要用到這個選項。




General Options 常規選項

-verbose

Specifies to write out some more information during processing. If the program terminates with an exception, this option will print out the entire stack trace, instead of just the exception message.


輸出處理期間更多的信息。如果處理中因為一個異常中斷了,這個選項就會輸出詳細的日志,而不僅僅是異常信息。



-dontnote [class_filter]

Specifies not to print notes about potential mistakes or omissions in the configuration, such as typos in class names or missing options that might be useful. The optional filter is a regular expression; ProGuard doesn't print notes about classes with matching names.


不打印潛在的配置文件的錯誤或者遺漏,如類名的錯別字,或者有用的選項。可選的過濾器是規則表達式;proguard不會打印符合過濾器的相關類信息。


-dontwarn [class_filter]

Specifies not to warn about unresolved references and other important problems at all. The optional filter is a regular expression; ProGuard doesn't print warnings about classes with matching names. Ignoring warnings can be dangerous. For instance, if the unresolved classes or class members are indeed required for processing, the processed code will not function properly. Only use this option if you know what you're doing!


不提示無法判斷引用和其他重要的錯誤問題。可選的過濾器是規則表達式;proguard不會打印符合過濾器的相關類信息。忽略警示是危險的。

例如,如果無法判斷的類和類成員確實是運行時需要的內容,則處理后的代碼可能會無效。只有在你知道你做什么的時候使用。


-ignorewarnings

Specifies to print any warnings about unresolved references and other important problems, but to continue processing in any case. Ignoring warnings can be dangerous. For instance, if the unresolved classes or class members are indeed required for processing, the processed code will not function properly. Only use this option if you know what you're doing!


提示任何無法判斷引用和其他重要的錯誤問題,但卻繼續執行處理流程而不中斷。忽略警示是危險的。例如,如果無法判斷的類和類成員確實是運行時需要的內容,則處理后的代碼可能會無效。只有在你知道你做什么的時候使用。


-printconfiguration [filename]

Specifies to write out the entire configuration that has been parsed, with included files and replaced variables. The structure is printed to the standard output or to the given file. This can sometimes be useful for debugging configurations, or for converting XML configurations into a more readable format.


打印出build解析后執行的完整的proguard配置信息,包括包含的文件和替換的變量。這個結構會被寫入output中或者指定的文件。在debugging配置或者轉換XML為更易讀的結構是會有用。



-dump [filename]

Specifies to write out the internal structure of the class files, after any processing. The structure is printed to the standard output or to the given file. For example, you may want to write out the contents of a given jar file, without processing it at all.


輸出intput的原來包含的類的內部結構。這個結構會被寫入output中或者指定的文件。

例如,你想輸出給定的一個jar文件結構,在沒有被處理的時候。 write out the contents of a given jar file



Class Paths

ProGuard accepts a generalization of class paths to specify input files and output files. A class path consists of entries, separated by the traditional path separator (e.g. ':' on Unix, or ';' on Windows platforms). The order of the entries determines their priorities, in case of duplicates.

Each input entry can be:

  • A class file or resource file,
  • An apk file, containing any of the above,
  • A jar file, containing any of the above,
  • An aar file, containing any of the above,
  • A war file, containing any of the above,
  • An ear file, containing any of the above,
  • A zip file, containing any of the above,
  • A directory (structure), containing any of the above.


Proguard接受廣泛化的類路徑來指定輸入和輸出文件。類路徑可由多個條目組成,以傳統的分隔符分隔(例如,Unix上用:? Windows上用;)。有多數的情況下,詞條的順序決定了他們的優先級。

路徑文件可以是:

類文件或者資源文件,

apk文件,包含以上

jar文件,包含以上

aar文件,包含以上

war文件,包含以上

ear文件,包含以上

zip文件,包含以上

目錄結構,包含以上



The paths of directly specified class files and resource files is ignored, so class files should generally be part of a jar file, an aar file, a war file, an ear file, a zip file, or a directory. In addition, the paths of class files should not have any additional directory prefixes inside the archives or directories.

直接在路徑中指定的類文件和資源文件是被忽略處理的,所以類文件應當是jar,aar,war,ear,zip或者目錄里的一部分。另外,類文件的路徑應該沒有任何附加的檔案或目錄前綴(不明白- -|)。

Each output entry can be:

  • An apk file, in which all class files and resource files will be collected.
  • A jar file, in which any and all of the above will be collected,
  • An aar file, in which any and all of the above will be collected,
  • A war file, in which any and all of the above will be collected,
  • An ear file, in which any and all of the above will be collected,
  • A zip file, in which any and all of the above will be collected,
  • A directory, in which any and all of the above will be collected.

output的對象可以是:

apk文件,包含類文件和資源文件。

jar文件,包含以上。

aar文件,包含以上。

war文件,包含以上。

ear文件,包含以上。

zip文件,包含以上。

目錄,包含以上。



When writing output entries, ProGuard will generally package the results in a sensible way, reconstructing the input entries as much as required. Writing everything to an output directory is the most straightforward option: the output directory will contain a complete reconstruction of the input entries. The packaging can be almost arbitrarily complex though: you could process an entire application, packaged in a zip file along with its documentation, writing it out as a zip file again. The Examples section shows a few ways to restructure output archives.

當輸出output的時候,proguard通常會以簡單明了的方式重新打包結果,盡量按照input的時候重新打包。把所有東西輸出到一個目錄是最直接的方法:output目錄將包含一個完成的input重構結構。打包可以隨意的復雜化:你可以處理一個完整的應用,打包成zip和文檔放在一起,然后再一起打包成zip輸出。

例子單元有重構output檔案的多個方法。restructure output archives


-injars base_in1.jar

-injars base_in2.jar

-injars base_in3.jar

-outjars base_out.jar


-injars? extra_in.jar

-outjars extra_out.jar



Files and directories can be specified as discussed in the section on file names below.

文件和目錄可以按照下面文件名單元規則進行指定。


In addition, ProGuard provides the possibility to filter the class path entries and their contents, based on their full relative file names. Each class path entry can be followed by up to 7 types of file filters between parentheses, separated by semi-colons:

  • A filter for all aar names that are encountered,
  • A filter for all apk names that are encountered,
  • A filter for all zip names that are encountered,
  • A filter for all ear names that are encountered,
  • A filter for all war names that are encountered,
  • A filter for all jar names that are encountered,
  • A filter for all class file names and resource file names that are encountered.

此外,proguard提供基于全路徑的內容過濾。路徑可以包含以下7種類型的文件設置過濾選項:

aar,apk,zip,ear,war,jar,類名和資源名



If fewer than 7 filters are specified, they are assumed to be the latter filters. Any empty filters are ignored. More formally, a filtered class path entry looks like this:

如果少于7中類型被設定,那就假定只針對于后面的過濾類型。空的過濾器是被忽略的。更正式點,一個路徑過濾器應該如下這樣。


classpathentry([[[[[[aarfilter;]apkfilter;]zipfilter;]earfilter;]warfilter;]jarfilter;]filefilter)

Square brackets "[]" mean that their contents are optional.

[]的區域標示里面的內容是可選項


For example, "rt.jar(java/**.class,javax/**.class)" matches all class files in the java and javax directories inside the rt jar.

例如,"rt.jar(java/**.class,javax/**.class)" 表示匹配rtjar中在java和javax目錄下的類文件。


For example, "input.jar(!**.gif,images/**)" matches all files in the images directory inside the input jar, except gif files.

"input.jar(!**.gif,images/**)”表示匹配images目錄下的文件,不包括gif文件。

The different filters are applied to all corresponding file types, irrespective of their nesting levels in the input; they are orthogonal.

不同的過濾器可以對應所有的文件類型,與input的嵌套等級無關(即不管input是否包含過濾類型);他們是可相互交叉的。

For example, "input.war(lib/**.jar,support/**.jar;**.class,**.gif)" only considers jar files in the lib and support directories in the input war, not any other jar files. It then matches all class files and gif files that are encountered.

?"input.war(lib/**.jar,support/**.jar;**.class,**.gif)表示,只考慮lib,support文件夾下的jar。結果是,這個過濾器會會匹配遇到的所有類文件和gif。


The filters allow for an almost infinite number of packaging and repackaging possibilities. The Examples section provides a few more examples forfiltering input and output.

過濾器允許包含無限數量的包層級和重新打包的層級。示例單元提供了一些input和output的例子。


File Names

ProGuard accepts absolute paths and relative paths for the various file names and directory names. A relative path is interpreted as follows:

  • relative to the base directory, if set, or otherwise
  • relative to the configuration file in which it is specified, if any, or otherwise
  • relative to the working directory.

proguard允許文件名和目錄名采用絕對路徑和相對路徑。相對路徑會按如下方式進行解讀:

與基本目錄相關聯,如果符合則確定,否則繼續尋找

與指定的配置文件關聯,如果符合則確定,否則繼續尋找

與工作目錄關聯


The names can contain Java system properties (or Ant properties, when using Ant), delimited by angular brackets, '<' and '>'. The properties are automatically replaced by their corresponding values.

路徑名可以包含java環境變量(或者ANT變量),以<>表示。環境變量會自動轉換為相應的值。

For example, <java.home>/lib/rt.jar is automatically expanded to something like /usr/local/java/jdk/jre/lib/rt.jar. Similarly, <user.home> is expanded to the user's home directory, and <user.dir> is expanded to the current working directory.

例如,<java.home>/lib/rt.jar 會自動擴展為類似/usr/local/java/jdk/jre/lib/rt.jar. 同樣的,<user.home>擴展為用戶home目錄。 <user.dir> 擴展為當前工作目錄。

Names with special characters like spaces and parentheses must be quoted with single or double quotes. Each file name in a list of names has to be quoted individually. Note that the quotes themselves may need to be escaped when used on the command line, to avoid them being gobbled by the shell.

名稱中包含有類似空格,括號的特殊字符得用單引號或者雙引號表示。名稱列表的每一個名稱都得用引號區分出來。請注意,引號本身應當避免在命令行中使用,以免引號被shell吞噬。


For example, on the command line, you could use an option like '-injars "my program.jar":"/your directory/your program.jar"'.

例如,你可以在命令行上這樣使用一個選項’-injars "my program.jar":"/your directory/your program.jar"'.



File Filters

Like general filters, a file filter is a comma-separated list of file names that can contain wildcards. Only files with matching file names are read (in the case of input jars), or written (in the case of output jars). The following wildcards are supported:

?

matches any single character in a file name.

*

matches any part of a filename not containing the directory separator.

**

matches any part of a filename, possibly containing any number of directory separators.




與常用的過濾器一樣,文件過濾器也是包含通配符的以逗號分隔的文件列表。只有匹配的文件才會被讀取(與input jar有關),寫入(與output有關)。一些是支持的通配符:

?表示匹配任何單字符

*表示匹配文件名的任何部分,不包含目錄

**匹配文件名的任何部分,即使名字中間包含任何多的目錄


For example, "java/**.class,javax/**.class" matches all class files in the java and javax.

例如,"java/**.class,javax/**.class" 包含java,javax文件夾及子文件夾下的所有類文件。


Furthermore, a file name can be preceded by an exclamation mark '!' to exclude the file name from further attempts to match with subsequentfile names.

此外,文件名前可以使用!來排除后面的文件。


For example, "!**.gif,images/**" matches all files in the images directory, except gif files.

例如,"!**.gif,images/**" 匹配所有image目錄下的文件,除了gif文件

The Examples section provides a few more examples for filtering input and output.

?filtering input and output? 單元中有更多例子。


Filters

ProGuard offers options with filters for many different aspects of the configuration: names of files, directories, classes, packages, attributes, optimizations, etc.

A filter is a list of comma-separated names that can contain wildcards. Only names that match an item on the list pass the filter. The supported wildcards depend on the type of names for which the filter is being used, but the following wildcards are typical:

?

matches any single character in a name.

*

matches any part of a name not containing the package separator or directory separator.

**

matches any part of a name, possibly containing any number of package separators or directory separators.


Proguard為配置文件提供多方位的過濾器:文件名,目錄,類,包,屬性,優化等等。

過濾器是包含通配符的以逗號分隔的名稱列表。只有匹配的名字才能通過過濾。支持的通配符依據過濾器使用的名稱類型,但如下的通配符是通用的:

?匹配任意單個字符

*匹配包含在包和目錄分隔符之間的任何部分

**匹配包含任何包,目錄的任何內容


For example, "foo,*bar" matches the name foo and all names ending with bar.

例如,"foo,*bar”匹配叫foo的和以bar結尾的名字

Furthermore, a name can be preceded by a negating exclamation mark '!' to exclude the name from further attempts to match with subsequentnames. So, if a name matches an item in the filter, it is accepted or rejected right away, depending on whether the item has a negator. If the name doesn't match the item, it is tested against the next item, and so on. It if doesn't match any items, it is accepted or rejected, depending on the whether the last item has a negator or not.

此外,文件名前可以使用!來排除后面的文件。因此一個名字匹配后是接受還是拒絕,基于它是否有否決器。如果一個名字不匹配一個規則,它會嘗試下一個,然后一直下去。如果它不匹配任何一個,它接受與否決定與最后是否有否決器。


For example, "!foobar,*bar" matches all names ending with bar, except foobar.

例如, "!foobar,*bar" 匹配所有以bar結尾的名字,但是不包含foobar.



Overview of Keep Options?

The various -keep options for shrinking and obfuscation may seem a bit confusing at first, but there's actually a pattern behind them. The following table summarizes how they are related:

Keep

From being removed or renamed

From being renamed

Classes and class members

-keep

-keepnames

Class members only

-keepclassmembers

-keepclassmembernames

Classes and class members, if class members present

-keepclasseswithmembers

-keepclasseswithmembernames


為縮減和混淆提供的-keep相關選項乍一看有些混亂,但他們背后是有模式的。下圖就展示了他們的關系。


Each of these -keep options is of course followed by a specification of the classes and class members (fields and methods) to which it should be applied.

每一個-keep選項都可以跟隨一個類和類成員的限定規則。


If you're not sure which option you need, you should probably simply use -keep. It will make sure the specified classes and class members are not removed in the shrinking step, and not renamed in the obfuscation step.


  • If you specify a class, without class members, ProGuard only preserves the class and its parameterless constructor as entry points. It may still remove, optimize, or obfuscate its other class members.
  • If you specify a method, ProGuard only preserves the method as an entry point. Its code may still be optimized and adapted.


如果你不確定使用哪個,那就直接使用-keep選項。它將保證不會在縮減中刪除你指定的類和類成員,也不會改變他們的名字。


如果你只指定了類,沒有指定類成員。proguard只會保留類名和默認的無參構造器。它其他的類成員仍然會經歷刪除,優化,混淆的過程。

如果你只指定方法名,proguard只會保護方法名,它里面的代碼仍然會優化和改編。


Class Specifications

A class specification is a template of classes and class members (fields and methods). It is used in the various -keep options and in the -assumenosideeffects option. The corresponding option is only applied to classes and class members that match the template.

The template was designed to look very Java-like, with some extensions for wildcards. To get a feel for the syntax, you should probably look at theexamples, but this is an attempt at a complete formal definition:


類規則是類和類成員限定的模板。它被運用于-keep和-assumenosideeffects屬性中。相應的選項只會影響匹配模板的類和類成員。

模板被設計的近似于java的樣子,外加一些擴展的通配符。為了對這個語法有個初步的認知,你應該去看看那些例子。下面是完整正式的模板定義:



[@annotationtype] [[!]public|final|abstract|@ ...] [!]interface|class|enum classname

? ? [extends|implements [@annotationtype] classname]

[{

? ? [@annotationtype] [[!]public|private|protected|static|volatile|transient ...] <fields> |

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? (fieldtype fieldname);

? ? [@annotationtype] [[!]public|private|protected|static|synchronized|native|abstract|strictfp ...] <methods> |

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <init>(argumenttype,...) |

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? classname(argumenttype,...) |

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? (returntype methodname(argumenttype,...));

? ? [@annotationtype] [[!]public|private|protected|static ... ] *;

? ? ...

}]

Square brackets "[]" mean that their contents are optional. Ellipsis dots "..." mean that any number of the preceding items may be specified. A vertical bar "|" delimits two alternatives. Non-bold parentheses "()" just group parts of the specification that belong together. The indentation tries to clarify the intended meaning, but white-space is irrelevant in actual configuration files.


[]里的內容標示為可選項。…意味著任何數量的內容可能會被在前面指定。|代表可選擇。()則表示里面的內容是一個整體。縮進是為了便于你的觀察,但空格本身是沒有作用的。


  • The class keyword refers to any interface or class. The interface keyword restricts matches to interface classes. The enum keyword restricts matches to enumeration classes. Preceding the interface or enum keywords by a ! restricts matches to classes that are not interfaces or enumerations, respectively.


class關鍵字可影響interface和class。interface只約束interface類。enum關鍵字則約束枚舉類。在interface和enum前加!則約束不是接口和枚舉的類。


  • Every classname must be fully qualified, e.g. java.lang.String. Inner classes are separated by a dollar sign "$", e.g. java.lang.Thread$State. Class names may be specified as regular expressions containing the following wildcards:


類名需要使用全路徑表示。例如,java.lang.String 內部類以$分隔,例如java.lang.Thread$State.類名匹配可以使用如下通配符:


  • ?
  • matches any single character in a class name, but not the package separator. For example, "mypackage.Test?" matches "mypackage.Test1" and "mypackage.Test2", but not "mypackage.Test12".
  • *
  • matches any part of a class name not containing the package separator. For example, "mypackage.*Test*" matches "mypackage.Test" and "mypackage.YourTestApplication", but not "mypackage.mysubpackage.MyTest". Or, more generally, "mypackage.*" matches all classes in "mypackage", but not in its subpackages.
  • **
  • matches any part of a class name, possibly containing any number of package separators. For example, "**.Test" matches all Testclasses in all packages except the root package. Or, "mypackage.**" matches all classes in "mypackage" and in its subpackages.



?匹配類名中單個任意字符,但不包含包分隔符。例如, "mypackage.Test?" 匹配 "mypackage.Test1" 和 "mypackage.Test2", 但不匹配 "mypackage.Test12".


*匹配類名中任意部分,不包含包分隔符。例如, "mypackage.*Test*" 匹配 "mypackage.Test" 和 "mypackage.YourTestApplication", 但不匹配”mypackage.mysubpackage.MyTest". 更常見的, "mypackage.*" 匹配在 "mypackage", 包下所有類,但不包含子包。


**匹配類名中任意部分,包含包分隔符。"**.Test" 匹配所有 除了根目錄下的所有目錄中包含的Test類 . "mypackage.**" 匹配”mypackage" 包及其子包種的所有類。


For additional flexibility, class names can actually be comma-separated lists of class names, with optional ! negators, just like file name filters.This notation doesn't look very Java-like, so it should be used with moderation.

為了添加方便,類名列表可以以逗號分開,也可以添加!否決器,就如同文件名過濾器一樣。這個規則與java不是非常相似,所以請適度使用。



For convenience and for backward compatibility, the class name * refers to any class, irrespective of its package.


為了便捷和向后兼容,*可以表示任何類名,與它的包名無關。


The extends and implements specifications are typically used to restrict classes with wildcards. They are currently equivalent, specifying that only classes extending or implementing the given class qualify. Note that the given class itself is not included in this set. If required, it should be specified in a separate option.

extends 和implements關鍵字常與通配符關聯使用。他們作用相等,指定只有那些extending或者implementing給定類的類才能通過。請注意,給定的類(被繼承或實現的類)是不會包含在這個限定規則里的。若想把給定的類也指定,你得單獨寫個規則限定他。


The @ specifications can be used to restrict classes and class members to the ones that are annotated with the specified annotation types. An annotationtype is specified just like a classname.


@標示符可以用于限定那些使用指定注解的類和類成員。注解的指定和類名一樣(即需要全路徑)


Fields and methods are specified much like in Java, except that method argument lists don't contain argument names (just like in other tools like javadoc and javap). The specifications can also contain the following catch-all wildcards:


field和method的設定類似于java.除了那些沒有入參名的方法(類似javadoc的注釋)。規范可以包含下面的通配符使用:

<init>

matches any ? ? constructor.

<fields>

matches any field.

<methods>

matches any method.

*

matches any field or method.


<init> 匹配所有構造器

<fields>匹配所有常變量

<methods>匹配所有方法

*匹配所有fields和方法


Note that the above wildcards don't have return types. Only the <init> wildcard has an argument list.

Fields and methods may also be specified using regular expressions. Names can contain the following wildcards:


請注意,以上的通配符不需要設置返回類型的。只有<init>通配符可設置入參。

field和menthods也可以用正規的的表達式表達。以下是可用的通配符:


?

matches any single character in a method name.

*

matches any part of a method name.

?匹配方法名單個任意字符

*匹配方法名任意部分


Types in descriptors can contain the following wildcards:

表示類型的可以是以下的通配符:


%

matches any primitive type ("boolean", "int", etc, but not "void").

?

matches any single character in a class name.

*

matches any part of a class name not containing the package separator.

**

matches any part of a class name, possibly containing any number of package separators.

***

matches any type (primitive or non-primitive, array or non-array).

matches any number of arguments of any type.




%匹配任何基本類型(如boolean,int等,但不能匹配void)

?匹配類名任何單個字符

*匹配不包含包分隔符的類名的任何部分

**匹配包含包分隔符的類名的任何部分

***匹配任何類型(基本的非基本的,數組的非數組的)

…匹配任意多任意類型的入參

Note that the ?, *, and ** wildcards will never match primitive types. Furthermore, only the *** wildcards will match array types of any dimension. For example, "** get*()" matches "java.lang.Object getObject()", but not "float getFloat()", nor "java.lang.Object[] getObjects()".


請注意,?,*,**不能匹配基本類型。除此之外,只有***能匹配任何規模的數組類型。

例如,** get*()" 匹配 "java.lang.Object getObject()", 但不匹配 "float getFloat()", 也不匹配 "java.lang.Object[] getObjects()".


Constructors can also be specified using their short class names (without package) or using their full class names. As in the Java language, the constructor specification has an argument list, but no return type.

The class access modifiers and class member access modifiers are typically used to restrict wildcarded classes and class members. They specify that the corresponding access flags have to be set for the member to match. A preceding ! specifies that the corresponding access flag should be unset.Combining multiple flags is allowed (e.g. public static). It means that both access flags have to be set (e.g. public and static), except when they are conflicting, in which case at least one of them has to be set (e.g. at least public or protected).ProGuard supports the additional modifiers synthetic, bridge, and varargs, which may be set by compilers.


構造器也可以通過設置短類名(不包含包名)或全類名指定。在java中,構造器有入參列表,但沒有返回類型。

類和類成員的作用于也常用于約束通配符限定的類和類成員。通過他們限定匹配的成員。!否決符是不能被設置在作用域標識前的。混合使用作用域標識是可以的(例如 public static).這就意味著,兩種作用域標示符都可以設置,除非他們之間有沖突,也就是說沖突的作用域標示符只能設置一個(例如,設置public或者protected).proguard也支持額外的可以在編譯器上設置的標識如synthetic, bridge, 和 varargs

總結

以上是生活随笔為你收集整理的ProGuard Usage 翻译的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

无码毛片视频一区二区本码 | 久久成人a毛片免费观看网站 | 日韩欧美群交p片內射中文 | 理论片87福利理论电影 | 无码国产色欲xxxxx视频 | 人人妻在人人 | 国产午夜无码视频在线观看 | 国产成人无码专区 | 午夜精品一区二区三区在线观看 | 中文字幕无码热在线视频 | 色 综合 欧美 亚洲 国产 | 亚洲成av人综合在线观看 | 小泽玛莉亚一区二区视频在线 | 4hu四虎永久在线观看 | 亚洲综合精品香蕉久久网 | 免费看男女做好爽好硬视频 | 四虎国产精品一区二区 | 中文精品无码中文字幕无码专区 | 夜夜夜高潮夜夜爽夜夜爰爰 | 狂野欧美性猛交免费视频 | 国产精品igao视频网 | 妺妺窝人体色www婷婷 | 国产欧美精品一区二区三区 | 国产精品久久久久久亚洲影视内衣 | 97精品国产97久久久久久免费 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产深夜福利视频在线 | 女人被男人躁得好爽免费视频 | 亚洲精品综合一区二区三区在线 | 人人超人人超碰超国产 | 天天摸天天透天天添 | 自拍偷自拍亚洲精品10p | 日日干夜夜干 | 日本va欧美va欧美va精品 | 欧美人与禽猛交狂配 | 在线天堂新版最新版在线8 | 久久综合香蕉国产蜜臀av | 国产精品永久免费视频 | 欧美精品国产综合久久 | 无码精品人妻一区二区三区av | 日日碰狠狠丁香久燥 | 精品成在人线av无码免费看 | 一本久道久久综合狠狠爱 | 国产精品久久久午夜夜伦鲁鲁 | 高清无码午夜福利视频 | 亚洲日本一区二区三区在线 | 日本精品高清一区二区 | 狠狠色噜噜狠狠狠狠7777米奇 | 国产精品久久久午夜夜伦鲁鲁 | 日本精品少妇一区二区三区 | 人妻aⅴ无码一区二区三区 | 久久无码专区国产精品s | 日韩亚洲欧美中文高清在线 | 精品国产一区二区三区四区在线看 | 日韩av无码一区二区三区不卡 | 国产精品久久久久久亚洲毛片 | 色婷婷久久一区二区三区麻豆 | 蜜桃臀无码内射一区二区三区 | a在线观看免费网站大全 | 成人aaa片一区国产精品 | 99er热精品视频 | 久久久精品欧美一区二区免费 | 亚洲毛片av日韩av无码 | 丁香啪啪综合成人亚洲 | 色欲人妻aaaaaaa无码 | 人妻尝试又大又粗久久 | 国产亚洲美女精品久久久2020 | 成 人影片 免费观看 | 国产乱人伦av在线无码 | 99久久精品午夜一区二区 | 在线欧美精品一区二区三区 | 国产精品无码一区二区桃花视频 | 中文字幕人成乱码熟女app | 99久久精品日本一区二区免费 | 精品少妇爆乳无码av无码专区 | 国产在线aaa片一区二区99 | 欧美丰满熟妇xxxx性ppx人交 | 中文字幕+乱码+中文字幕一区 | 亚洲欧美日韩国产精品一区二区 | 人人澡人人妻人人爽人人蜜桃 | 中文字幕人妻无码一夲道 | 国产精品无码mv在线观看 | 伊在人天堂亚洲香蕉精品区 | 日本精品久久久久中文字幕 | 欧美性生交xxxxx久久久 | 免费无码av一区二区 | 一区二区传媒有限公司 | 国产精品99久久精品爆乳 | 少妇被粗大的猛进出69影院 | 中文字幕亚洲情99在线 | 东京热一精品无码av | 国产欧美精品一区二区三区 | 欧美成人免费全部网站 | 人人爽人人澡人人高潮 | 日本爽爽爽爽爽爽在线观看免 | 88国产精品欧美一区二区三区 | 永久免费精品精品永久-夜色 | av香港经典三级级 在线 | 强奷人妻日本中文字幕 | 国产99久久精品一区二区 | 国产在线一区二区三区四区五区 | 国产av无码专区亚洲a∨毛片 | 中文字幕+乱码+中文字幕一区 | 亚洲熟妇色xxxxx欧美老妇y | 亚洲国产av精品一区二区蜜芽 | 夜夜高潮次次欢爽av女 | 日韩精品久久久肉伦网站 | 国产精品高潮呻吟av久久4虎 | 亚洲精品综合一区二区三区在线 | 国产精品无码成人午夜电影 | 玩弄中年熟妇正在播放 | 精品久久久无码中文字幕 | 免费无码午夜福利片69 | 欧美黑人性暴力猛交喷水 | 精品国产一区av天美传媒 | 丰满少妇女裸体bbw | 欧美国产日产一区二区 | 国产精品久久久久无码av色戒 | 国产精品无码一区二区三区不卡 | www国产精品内射老师 | www国产亚洲精品久久久日本 | 国产亚洲人成在线播放 | 疯狂三人交性欧美 | 国产人妻精品一区二区三区 | 亚洲一区二区三区偷拍女厕 | 精品欧洲av无码一区二区三区 | 青青久在线视频免费观看 | 欧美国产日韩久久mv | 免费乱码人妻系列无码专区 | 午夜性刺激在线视频免费 | 人人爽人人澡人人人妻 | 麻豆国产97在线 | 欧洲 | 300部国产真实乱 | 中文字幕乱码人妻二区三区 | 欧美国产日产一区二区 | 日本www一道久久久免费榴莲 | 亚洲一区二区三区偷拍女厕 | 精品一区二区三区无码免费视频 | 欧美日韩综合一区二区三区 | 亚洲日韩av一区二区三区四区 | 少妇无码av无码专区在线观看 | 国语精品一区二区三区 | 国语精品一区二区三区 | 久久无码中文字幕免费影院蜜桃 | 麻花豆传媒剧国产免费mv在线 | 波多野42部无码喷潮在线 | 国产又爽又黄又刺激的视频 | 麻豆av传媒蜜桃天美传媒 | 亚洲s码欧洲m码国产av | 少妇愉情理伦片bd | 国产色精品久久人妻 | 精品无人区无码乱码毛片国产 | 正在播放东北夫妻内射 | 亚洲中文字幕成人无码 | 成人无码精品一区二区三区 | 97无码免费人妻超级碰碰夜夜 | 久久午夜夜伦鲁鲁片无码免费 | 国内综合精品午夜久久资源 | 国产97人人超碰caoprom | 久久久久人妻一区精品色欧美 | 色情久久久av熟女人妻网站 | 亚洲男女内射在线播放 | 国产成人亚洲综合无码 | 狠狠cao日日穞夜夜穞av | 久久精品国产精品国产精品污 | 久久天天躁夜夜躁狠狠 | 中国女人内谢69xxxx | 国产偷抇久久精品a片69 | av小次郎收藏 | 丰满少妇高潮惨叫视频 | 久久亚洲中文字幕精品一区 | 亚洲日本va午夜在线电影 | 国产精品a成v人在线播放 | 国产国产精品人在线视 | 狠狠色噜噜狠狠狠狠7777米奇 | 未满小14洗澡无码视频网站 | 丝袜美腿亚洲一区二区 | 成熟妇人a片免费看网站 | 国产人妻精品一区二区三区 | 久久国产精品二国产精品 | 日韩精品成人一区二区三区 | 青青久在线视频免费观看 | 亚洲熟妇色xxxxx欧美老妇y | 性欧美大战久久久久久久 | 乌克兰少妇性做爰 | 久久99国产综合精品 | 亚洲成a人一区二区三区 | 久久综合激激的五月天 | 欧美成人免费全部网站 | 动漫av一区二区在线观看 | 任你躁国产自任一区二区三区 | 午夜精品一区二区三区在线观看 | 荫蒂被男人添的好舒服爽免费视频 | 蜜臀aⅴ国产精品久久久国产老师 | 国产精品久久国产精品99 | 亚洲国产精品成人久久蜜臀 | 国产精品国产自线拍免费软件 | 亚洲最大成人网站 | 99久久99久久免费精品蜜桃 | 日产国产精品亚洲系列 | 国产精品久久久久无码av色戒 | 国语自产偷拍精品视频偷 | 中文无码成人免费视频在线观看 | 免费国产黄网站在线观看 | 国产精品无码成人午夜电影 | 亚洲七七久久桃花影院 | 99麻豆久久久国产精品免费 | 一二三四社区在线中文视频 | 三级4级全黄60分钟 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 国产9 9在线 | 中文 | 国产精品丝袜黑色高跟鞋 | 无码任你躁久久久久久久 | 国产激情精品一区二区三区 | 久久久久se色偷偷亚洲精品av | 波多野结衣av在线观看 | 精品国产成人一区二区三区 | 久青草影院在线观看国产 | 天堂а√在线地址中文在线 | 高清国产亚洲精品自在久久 | 精品国产一区二区三区四区在线看 | 99久久人妻精品免费二区 | 国产精品igao视频网 | 久久国内精品自在自线 | 国产精品亚洲一区二区三区喷水 | 狠狠色噜噜狠狠狠狠7777米奇 | 熟女体下毛毛黑森林 | 国产精品怡红院永久免费 | 亚洲熟妇自偷自拍另类 | 1000部夫妻午夜免费 | 免费人成在线视频无码 | 人人爽人人爽人人片av亚洲 | 性生交大片免费看l | 少妇无码av无码专区在线观看 | 亚洲の无码国产の无码影院 | 中文字幕无码av激情不卡 | 一本久久a久久精品亚洲 | 永久免费观看美女裸体的网站 | 国产9 9在线 | 中文 | 亚洲一区二区三区偷拍女厕 | 国产熟妇另类久久久久 | 国内精品久久毛片一区二区 | 国产色视频一区二区三区 | 国产婷婷色一区二区三区在线 | 欧美肥老太牲交大战 | 网友自拍区视频精品 | 日本一卡2卡3卡四卡精品网站 | 久久亚洲精品成人无码 | 欧美日韩视频无码一区二区三 | 国产97在线 | 亚洲 | 东北女人啪啪对白 | 国产区女主播在线观看 | 亚洲中文字幕在线无码一区二区 | 亚洲人成无码网www | 人人爽人人爽人人片av亚洲 | 精品人妻中文字幕有码在线 | 四虎4hu永久免费 | 久久久久久a亚洲欧洲av冫 | 乱人伦人妻中文字幕无码久久网 | 无码人妻久久一区二区三区不卡 | 久久亚洲日韩精品一区二区三区 | 日本精品人妻无码77777 天堂一区人妻无码 | 久久综合香蕉国产蜜臀av | 成年美女黄网站色大免费全看 | 精品熟女少妇av免费观看 | 午夜成人1000部免费视频 | 久久亚洲a片com人成 | 国产午夜无码视频在线观看 | 亚洲精品成人av在线 | 日日鲁鲁鲁夜夜爽爽狠狠 | 国产肉丝袜在线观看 | 妺妺窝人体色www在线小说 | 俺去俺来也在线www色官网 | 日本一区二区三区免费播放 | 亚洲欧美中文字幕5发布 | 精品偷拍一区二区三区在线看 | 亚洲爆乳精品无码一区二区三区 | 夜夜夜高潮夜夜爽夜夜爰爰 | 99久久人妻精品免费二区 | 少妇的肉体aa片免费 | 欧美日本免费一区二区三区 | 日韩av无码一区二区三区 | 午夜无码人妻av大片色欲 | 人妻尝试又大又粗久久 | 国产激情综合五月久久 | 久久精品视频在线看15 | 国产三级久久久精品麻豆三级 | 熟妇人妻无乱码中文字幕 | 成人片黄网站色大片免费观看 | 久青草影院在线观看国产 | 亚洲精品国偷拍自产在线观看蜜桃 | 亚洲精品欧美二区三区中文字幕 | 未满小14洗澡无码视频网站 | 蜜桃无码一区二区三区 | 日韩精品a片一区二区三区妖精 | 沈阳熟女露脸对白视频 | 亚洲色大成网站www | 国产免费久久精品国产传媒 | 午夜丰满少妇性开放视频 | 国产免费久久精品国产传媒 | 亚洲男人av天堂午夜在 | 亚洲毛片av日韩av无码 | 久久精品国产亚洲精品 | av无码不卡在线观看免费 | 国产内射老熟女aaaa | 国内综合精品午夜久久资源 | 亚洲综合在线一区二区三区 | 亚洲色无码一区二区三区 | 未满成年国产在线观看 | 欧美国产亚洲日韩在线二区 | 夜夜高潮次次欢爽av女 | 久久精品中文闷骚内射 | 青草青草久热国产精品 | 亚洲人成网站色7799 | 啦啦啦www在线观看免费视频 | 午夜福利一区二区三区在线观看 | 久久精品中文字幕一区 | 亚洲另类伦春色综合小说 | 国产肉丝袜在线观看 | 国产精品无套呻吟在线 | 日日天日日夜日日摸 | 好男人社区资源 | 久久亚洲国产成人精品性色 | 亚洲a无码综合a国产av中文 | 牛和人交xxxx欧美 | 麻豆国产人妻欲求不满谁演的 | 久久成人a毛片免费观看网站 | 人人妻人人澡人人爽人人精品 | 久久精品女人天堂av免费观看 | 国产精品第一国产精品 | 天堂在线观看www | 樱花草在线播放免费中文 | 欧美乱妇无乱码大黄a片 | 欧美日韩综合一区二区三区 | 精品久久久久久人妻无码中文字幕 | 国产精品igao视频网 | 色欲av亚洲一区无码少妇 | 色妞www精品免费视频 | 国产色xx群视频射精 | 久久精品成人欧美大片 | 欧美性色19p | 天天拍夜夜添久久精品大 | 亚洲一区二区三区四区 | 强伦人妻一区二区三区视频18 | 少妇激情av一区二区 | 1000部夫妻午夜免费 | 日日碰狠狠躁久久躁蜜桃 | 欧美猛少妇色xxxxx | 午夜精品一区二区三区的区别 | 18精品久久久无码午夜福利 | 一本大道伊人av久久综合 | 亚洲理论电影在线观看 | 夜先锋av资源网站 | 午夜福利电影 | 男女下面进入的视频免费午夜 | 欧美老妇交乱视频在线观看 | 日韩精品无码免费一区二区三区 | 欧洲vodafone精品性 | 奇米影视888欧美在线观看 | 伊人久久大香线蕉av一区二区 | 国产午夜手机精彩视频 | 国产精品高潮呻吟av久久 | 丰满妇女强制高潮18xxxx | 欧美 日韩 亚洲 在线 | 99在线 | 亚洲 | 成熟人妻av无码专区 | 日欧一片内射va在线影院 | 一本精品99久久精品77 | 国产成人无码一二三区视频 | 丝袜美腿亚洲一区二区 | 欧美丰满熟妇xxxx性ppx人交 | 国产精品毛多多水多 | 久久久久久久久888 | 国产97人人超碰caoprom | 亚洲最大成人网站 | 亚洲一区二区三区国产精华液 | 色综合久久久无码中文字幕 | 日韩欧美中文字幕公布 | 中文无码伦av中文字幕 | 中文字幕人妻无码一区二区三区 | 国产亚洲视频中文字幕97精品 | 无码av最新清无码专区吞精 | 亚洲阿v天堂在线 | 无遮挡国产高潮视频免费观看 | 中文字幕无码热在线视频 | 精品aⅴ一区二区三区 | 日韩成人一区二区三区在线观看 | 少妇高潮喷潮久久久影院 | 小鲜肉自慰网站xnxx | 老子影院午夜伦不卡 | 日日麻批免费40分钟无码 | 亚洲综合另类小说色区 | 免费人成在线观看网站 | 亚洲 高清 成人 动漫 | 乱人伦中文视频在线观看 | 熟妇激情内射com | 玩弄中年熟妇正在播放 | 性欧美大战久久久久久久 | 撕开奶罩揉吮奶头视频 | 国产精品久久久久影院嫩草 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 亚洲 日韩 欧美 成人 在线观看 | 激情内射亚州一区二区三区爱妻 | 未满小14洗澡无码视频网站 | 中文字幕乱码人妻二区三区 | 亚洲а∨天堂久久精品2021 | 国产午夜福利亚洲第一 | 亚洲中文字幕久久无码 | 中文精品久久久久人妻不卡 | 国产亚洲精品久久久ai换 | 久久综合激激的五月天 | 亚洲熟妇色xxxxx欧美老妇 | 无套内谢老熟女 | 99精品无人区乱码1区2区3区 | 成人无码影片精品久久久 | 国产农村妇女高潮大叫 | 日本欧美一区二区三区乱码 | 熟女体下毛毛黑森林 | 高清国产亚洲精品自在久久 | 成人综合网亚洲伊人 | 亚洲中文字幕久久无码 | 六月丁香婷婷色狠狠久久 | 色综合视频一区二区三区 | 国产激情无码一区二区app | 久久国产精品精品国产色婷婷 | 激情亚洲一区国产精品 | 久久久精品人妻久久影视 | 国产日产欧产精品精品app | 国产精品爱久久久久久久 | 丰满少妇弄高潮了www | 精品久久久久久人妻无码中文字幕 | 国产成人综合色在线观看网站 | 国产suv精品一区二区五 | 亚洲成色在线综合网站 | 亚洲精品一区二区三区婷婷月 | 亚洲日本一区二区三区在线 | 国产熟妇高潮叫床视频播放 | 国产一区二区三区日韩精品 | 国产亚洲欧美日韩亚洲中文色 | 日本熟妇人妻xxxxx人hd | 人妻少妇精品无码专区二区 | 欧美精品国产综合久久 | aa片在线观看视频在线播放 | 中文字幕无码热在线视频 | 天堂在线观看www | 国产猛烈高潮尖叫视频免费 | 日韩人妻无码一区二区三区久久99 | 小sao货水好多真紧h无码视频 | 成人性做爰aaa片免费看不忠 | 夜夜夜高潮夜夜爽夜夜爰爰 | 久久久久成人精品免费播放动漫 | 成 人 免费观看网站 | 人人妻人人澡人人爽人人精品 | 国产精品二区一区二区aⅴ污介绍 | 亚洲精品成人av在线 | 亚洲中文字幕无码中文字在线 | 色 综合 欧美 亚洲 国产 | 日韩人妻无码中文字幕视频 | 国产人妻大战黑人第1集 | 亚洲va中文字幕无码久久不卡 | 色婷婷综合中文久久一本 | 骚片av蜜桃精品一区 | 亚洲日韩av一区二区三区四区 | 内射欧美老妇wbb | 国产国语老龄妇女a片 | 亚洲小说春色综合另类 | 九九在线中文字幕无码 | 亚洲欧美国产精品专区久久 | 美女极度色诱视频国产 | 久久久久久a亚洲欧洲av冫 | 国模大胆一区二区三区 | 最新版天堂资源中文官网 | 九九热爱视频精品 | 巨爆乳无码视频在线观看 | 一区二区传媒有限公司 | 国产精品沙发午睡系列 | 樱花草在线社区www | 国产亚洲精品久久久久久 | 午夜肉伦伦影院 | 狂野欧美性猛交免费视频 | 永久免费观看美女裸体的网站 | 97夜夜澡人人双人人人喊 | 国产成人av免费观看 | 玩弄少妇高潮ⅹxxxyw | 国产日产欧产精品精品app | 精品国产一区av天美传媒 | 亚洲成a人片在线观看日本 | 免费观看的无遮挡av | 国产精品第一国产精品 | 又紧又大又爽精品一区二区 | 日韩人妻无码一区二区三区久久99 | 亚洲小说春色综合另类 | 精品无人区无码乱码毛片国产 | 日韩精品a片一区二区三区妖精 | 久久人人爽人人爽人人片av高清 | 又大又紧又粉嫩18p少妇 | 亚洲日本va中文字幕 | 激情内射日本一区二区三区 | 久久精品人人做人人综合试看 | 中文字幕精品av一区二区五区 | 色婷婷久久一区二区三区麻豆 | 亚洲一区二区三区偷拍女厕 | 乱中年女人伦av三区 | 成在人线av无码免费 | 日本丰满护士爆乳xxxx | 高清不卡一区二区三区 | 曰本女人与公拘交酡免费视频 | 日韩av激情在线观看 | 日本大香伊一区二区三区 | 天堂а√在线中文在线 | 内射老妇bbwx0c0ck | 亚洲人交乣女bbw | 粉嫩少妇内射浓精videos | 亚洲国产日韩a在线播放 | 亚洲大尺度无码无码专区 | 日韩无套无码精品 | 国产在线aaa片一区二区99 | 成人影院yy111111在线观看 | 久久久久免费看成人影片 | 中文字幕无码免费久久9一区9 | 精品熟女少妇av免费观看 | ass日本丰满熟妇pics | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 精品久久综合1区2区3区激情 | 免费观看黄网站 | 亚洲成a人片在线观看日本 | 中文字幕无码热在线视频 | 亚洲乱亚洲乱妇50p | 人妻与老人中文字幕 | 亚洲人成无码网www | 在线看片无码永久免费视频 | 久久综合激激的五月天 | 成人影院yy111111在线观看 | 色综合久久久无码中文字幕 | 国产99久久精品一区二区 | 色综合久久网 | 99re在线播放 | 999久久久国产精品消防器材 | 人人妻人人澡人人爽欧美一区 | 丰满少妇人妻久久久久久 | av人摸人人人澡人人超碰下载 | 国产高清不卡无码视频 | 成人一区二区免费视频 | 鲁鲁鲁爽爽爽在线视频观看 | 波多野结衣av在线观看 | 色一情一乱一伦一视频免费看 | 国产午夜手机精彩视频 | 玩弄人妻少妇500系列视频 | 夜夜影院未满十八勿进 | 精品aⅴ一区二区三区 | 青青久在线视频免费观看 | 性色欲网站人妻丰满中文久久不卡 | 人妻少妇精品无码专区二区 | 色情久久久av熟女人妻网站 | 亚洲人亚洲人成电影网站色 | 欧美亚洲国产一区二区三区 | 亚洲精品午夜无码电影网 | 300部国产真实乱 | 久久国产精品_国产精品 | 精品无人区无码乱码毛片国产 | 国产网红无码精品视频 | 亚洲精品国产品国语在线观看 | 国产另类ts人妖一区二区 | 在教室伦流澡到高潮hnp视频 | 7777奇米四色成人眼影 | 又大又黄又粗又爽的免费视频 | 人妻与老人中文字幕 | 综合人妻久久一区二区精品 | 男女作爱免费网站 | 性做久久久久久久免费看 | 欧美丰满老熟妇xxxxx性 | 国产suv精品一区二区五 | 内射爽无广熟女亚洲 | 久久综合久久自在自线精品自 | 久久久久亚洲精品中文字幕 | 国内揄拍国内精品少妇国语 | 久久精品视频在线看15 | av香港经典三级级 在线 | 蜜桃无码一区二区三区 | 2020最新国产自产精品 | 两性色午夜免费视频 | 丰满护士巨好爽好大乳 | 免费人成在线观看网站 | 少妇厨房愉情理9仑片视频 | 亚洲精品一区二区三区在线 | 国产精品毛多多水多 | 亚洲春色在线视频 | 无码人妻少妇伦在线电影 | 国产精品高潮呻吟av久久4虎 | 又湿又紧又大又爽a视频国产 | 日韩欧美中文字幕在线三区 | 无码精品人妻一区二区三区av | 蜜臀av无码人妻精品 | 欧美阿v高清资源不卡在线播放 | 老熟女重囗味hdxx69 | 色综合天天综合狠狠爱 | 国精产品一品二品国精品69xx | 免费无码午夜福利片69 | 人妻无码久久精品人妻 | 露脸叫床粗话东北少妇 | 99久久精品国产一区二区蜜芽 | 亚洲国产成人a精品不卡在线 | 51国偷自产一区二区三区 | 国产成人综合在线女婷五月99播放 | 亚洲乱亚洲乱妇50p | 高清国产亚洲精品自在久久 | 成人精品视频一区二区三区尤物 | 天天做天天爱天天爽综合网 | 老太婆性杂交欧美肥老太 | 国产精品久久久久无码av色戒 | 亚洲娇小与黑人巨大交 | 美女极度色诱视频国产 | 国产精品久久久久久无码 | 荡女精品导航 | 亚洲人成影院在线无码按摩店 | 国产熟女一区二区三区四区五区 | 麻豆国产丝袜白领秘书在线观看 | 亚洲小说春色综合另类 | 精品一区二区不卡无码av | 在线а√天堂中文官网 | 国产乡下妇女做爰 | 亚洲啪av永久无码精品放毛片 | 国产肉丝袜在线观看 | 久久99精品久久久久久动态图 | 亚洲国产精品久久久久久 | 美女张开腿让人桶 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 强伦人妻一区二区三区视频18 | 国产色视频一区二区三区 | 3d动漫精品啪啪一区二区中 | yw尤物av无码国产在线观看 | 99精品视频在线观看免费 | 熟妇女人妻丰满少妇中文字幕 | 欧美三级不卡在线观看 | 草草网站影院白丝内射 | 亚洲va中文字幕无码久久不卡 | 一区二区传媒有限公司 | 欧美成人午夜精品久久久 | www一区二区www免费 | 国产成人精品无码播放 | 国产深夜福利视频在线 | 正在播放东北夫妻内射 | 日本一区二区三区免费播放 | 国产精华av午夜在线观看 | 亚洲第一网站男人都懂 | 日日麻批免费40分钟无码 | 国产亚洲精品久久久久久 | 中国女人内谢69xxxx | 国产激情综合五月久久 | 激情国产av做激情国产爱 | 成人精品视频一区二区三区尤物 | 国产成人无码av片在线观看不卡 | 精品一区二区三区波多野结衣 | 国产两女互慰高潮视频在线观看 | 一本久久a久久精品vr综合 | 久久午夜无码鲁丝片 | 学生妹亚洲一区二区 | 最新国产麻豆aⅴ精品无码 | 精品国产青草久久久久福利 | 午夜理论片yy44880影院 | 中文字幕人成乱码熟女app | 欧美野外疯狂做受xxxx高潮 | 好屌草这里只有精品 | 女人被男人爽到呻吟的视频 | 夜精品a片一区二区三区无码白浆 | 欧美人与牲动交xxxx | 波多野结衣乳巨码无在线观看 | √8天堂资源地址中文在线 | 亚洲国产日韩a在线播放 | 18精品久久久无码午夜福利 | 亚洲中文字幕成人无码 | 国产亚洲人成a在线v网站 | 国产小呦泬泬99精品 | 国内少妇偷人精品视频 | 久久无码人妻影院 | 久久精品视频在线看15 | 免费国产成人高清在线观看网站 | 一二三四社区在线中文视频 | 精品久久久久久亚洲精品 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产精品理论片在线观看 | 国产精品久久精品三级 | 国产精品内射视频免费 | 欧美人与禽猛交狂配 | 国产内射爽爽大片视频社区在线 | 国产情侣作爱视频免费观看 | 国产 浪潮av性色四虎 | 国产成人精品三级麻豆 | 老头边吃奶边弄进去呻吟 | 亚洲精品国产第一综合99久久 | 在线观看国产一区二区三区 | 亚洲国产精品无码久久久久高潮 | 国产福利视频一区二区 | 丝袜人妻一区二区三区 | 久久99精品久久久久婷婷 | 亚洲精品一区二区三区大桥未久 | www成人国产高清内射 | 熟妇人妻中文av无码 | 少妇人妻av毛片在线看 | 久久久久免费看成人影片 | 在线视频网站www色 | 日韩精品无码一本二本三本色 | 白嫩日本少妇做爰 | 少妇的肉体aa片免费 | 亚洲欧美综合区丁香五月小说 | 亚洲爆乳无码专区 | 精品国产一区二区三区四区 | 免费人成在线视频无码 | 天堂а√在线中文在线 | 丰腴饱满的极品熟妇 | 久久99精品久久久久婷婷 | 荫蒂添的好舒服视频囗交 | 无码人妻黑人中文字幕 | 成人无码精品1区2区3区免费看 | 久久精品无码一区二区三区 | 国产成人午夜福利在线播放 | 久久久www成人免费毛片 | 亚洲日本在线电影 | 久久精品人人做人人综合试看 | 精品国产国产综合精品 | 扒开双腿吃奶呻吟做受视频 | 激情综合激情五月俺也去 | 少妇性荡欲午夜性开放视频剧场 | 国产又爽又黄又刺激的视频 | 久久综合网欧美色妞网 | 天堂无码人妻精品一区二区三区 | 免费无码av一区二区 | 少妇人妻大乳在线视频 | 无码国模国产在线观看 | 大地资源中文第3页 | 扒开双腿吃奶呻吟做受视频 | 精品少妇爆乳无码av无码专区 | 青青青手机频在线观看 | 欧美黑人性暴力猛交喷水 | 国产精品va在线播放 | 亚洲精品国产a久久久久久 | 国产农村乱对白刺激视频 | 欧美激情一区二区三区成人 | 亚洲精品国产品国语在线观看 | 精品国产aⅴ无码一区二区 | 97夜夜澡人人双人人人喊 | 国产特级毛片aaaaaaa高清 | 国产精品人人爽人人做我的可爱 | 亚洲 a v无 码免 费 成 人 a v | 免费人成网站视频在线观看 | 成熟妇人a片免费看网站 | 国产美女精品一区二区三区 | 亚洲区欧美区综合区自拍区 | 亚洲欧美日韩国产精品一区二区 | 成人aaa片一区国产精品 | 国产精品香蕉在线观看 | 国产在线aaa片一区二区99 | 国产色xx群视频射精 | 亚洲小说春色综合另类 | 日日摸夜夜摸狠狠摸婷婷 | 久久精品国产99久久6动漫 | 亚洲精品久久久久久久久久久 | 人妻插b视频一区二区三区 | 又粗又大又硬又长又爽 | 人妻少妇精品无码专区动漫 | 精品少妇爆乳无码av无码专区 | 国产在线无码精品电影网 | 日本丰满熟妇videos | 久久97精品久久久久久久不卡 | ass日本丰满熟妇pics | 麻豆果冻传媒2021精品传媒一区下载 | 无人区乱码一区二区三区 | 国产精品无码mv在线观看 | 激情爆乳一区二区三区 | 精品偷自拍另类在线观看 | 久久亚洲a片com人成 | 欧美性色19p | 人妻少妇精品无码专区动漫 | 久久熟妇人妻午夜寂寞影院 | 欧美人与禽猛交狂配 | 国产福利视频一区二区 | 伊人久久大香线蕉亚洲 | 色综合久久久久综合一本到桃花网 | 在线精品国产一区二区三区 | 18无码粉嫩小泬无套在线观看 | 亚洲综合色区中文字幕 | 久久精品人妻少妇一区二区三区 | 美女毛片一区二区三区四区 | 成在人线av无码免观看麻豆 | 久久精品人妻少妇一区二区三区 | 久久久久久av无码免费看大片 | 图片区 小说区 区 亚洲五月 | 性欧美牲交在线视频 | 国产福利视频一区二区 | 少妇无码av无码专区在线观看 | 久久久www成人免费毛片 | 夜精品a片一区二区三区无码白浆 | 国产乱人伦av在线无码 | 精品国产国产综合精品 | 久久久久久亚洲精品a片成人 | 日本又色又爽又黄的a片18禁 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 亚洲精品中文字幕乱码 | 7777奇米四色成人眼影 | 亚洲国产午夜精品理论片 | 亚洲精品国产精品乱码不卡 | 中文字幕精品av一区二区五区 | 国产猛烈高潮尖叫视频免费 | 3d动漫精品啪啪一区二区中 | 国产精品沙发午睡系列 | 漂亮人妻洗澡被公强 日日躁 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产高清不卡无码视频 | 理论片87福利理论电影 | 在线观看免费人成视频 | 亚洲精品鲁一鲁一区二区三区 | 夜先锋av资源网站 | 日本成熟视频免费视频 | 国产精品久久福利网站 | 永久免费精品精品永久-夜色 | 亚洲爆乳精品无码一区二区三区 | 四虎国产精品免费久久 | 成人av无码一区二区三区 | 国精产品一区二区三区 | 人人妻人人澡人人爽人人精品 | 成在人线av无码免费 | 中文字幕乱码人妻二区三区 | 久久亚洲精品成人无码 | 性欧美大战久久久久久久 | 99久久人妻精品免费一区 | 中文字幕乱码亚洲无线三区 | 日产精品99久久久久久 | 久久久久成人精品免费播放动漫 | 亚洲爆乳大丰满无码专区 | 67194成是人免费无码 | 中文字幕人妻无码一夲道 | 麻豆国产人妻欲求不满 | 51国偷自产一区二区三区 | 日韩人妻无码一区二区三区久久99 | 377p欧洲日本亚洲大胆 | 小泽玛莉亚一区二区视频在线 | 黑森林福利视频导航 | 自拍偷自拍亚洲精品10p | 强奷人妻日本中文字幕 | 成人动漫在线观看 | 亚洲国产精品久久久天堂 | 自拍偷自拍亚洲精品被多人伦好爽 | 国产口爆吞精在线视频 | 国内老熟妇对白xxxxhd | 亚洲精品综合一区二区三区在线 | 欧美自拍另类欧美综合图片区 | 久久午夜无码鲁丝片午夜精品 | 精品无人区无码乱码毛片国产 | 成人免费视频一区二区 | av无码不卡在线观看免费 | 少妇性l交大片欧洲热妇乱xxx | 国产精品人妻一区二区三区四 | 亚洲va中文字幕无码久久不卡 | 曰本女人与公拘交酡免费视频 | 国产超碰人人爽人人做人人添 | 无码一区二区三区在线观看 | 67194成是人免费无码 | 亚洲熟妇自偷自拍另类 | 日韩在线不卡免费视频一区 | 全黄性性激高免费视频 | 亚洲精品国偷拍自产在线麻豆 | 国产绳艺sm调教室论坛 | 熟妇女人妻丰满少妇中文字幕 | 性生交大片免费看l | 国产成人综合美国十次 | 亚洲 日韩 欧美 成人 在线观看 | 天天做天天爱天天爽综合网 | 亚洲精品欧美二区三区中文字幕 | 欧美精品国产综合久久 | 国产精品成人av在线观看 | 丰满人妻被黑人猛烈进入 | 狂野欧美性猛xxxx乱大交 | 少妇久久久久久人妻无码 | 久久久久久久久蜜桃 | 欧美黑人性暴力猛交喷水 | 亚洲精品国产品国语在线观看 | 久久精品无码一区二区三区 | 欧美丰满熟妇xxxx | 中文字幕乱码人妻二区三区 | 强伦人妻一区二区三区视频18 | 国产成人综合在线女婷五月99播放 | 久久国产精品精品国产色婷婷 | 亚洲一区二区三区国产精华液 | 99久久婷婷国产综合精品青草免费 | 久久久av男人的天堂 | 丝袜美腿亚洲一区二区 | 亚洲日韩乱码中文无码蜜桃臀网站 | 日本高清一区免费中文视频 | 国产 精品 自在自线 | 成人试看120秒体验区 | 国产97人人超碰caoprom | 波多野结衣乳巨码无在线观看 | 国产精品久久久久久亚洲影视内衣 | 国产精品二区一区二区aⅴ污介绍 | 性生交片免费无码看人 | 久久久久久久人妻无码中文字幕爆 | 国产亚洲精品久久久久久久 | 粗大的内捧猛烈进出视频 | 精品人妻av区 | 国产网红无码精品视频 | 国产人妻精品一区二区三区不卡 | 久久综合激激的五月天 | 人妻尝试又大又粗久久 | 欧洲熟妇精品视频 | 亚洲乱亚洲乱妇50p | 亚洲中文字幕va福利 | 亚洲色在线无码国产精品不卡 | 日韩欧美群交p片內射中文 | 无遮挡国产高潮视频免费观看 | 精品久久8x国产免费观看 | 欧美人与牲动交xxxx | 国产va免费精品观看 | 精品厕所偷拍各类美女tp嘘嘘 | 精品亚洲成av人在线观看 | 日韩亚洲欧美中文高清在线 | 久久综合给合久久狠狠狠97色 | 狠狠色丁香久久婷婷综合五月 | 欧美日韩精品 | 伊人色综合久久天天小片 | 国产成人精品一区二区在线小狼 | 日韩少妇白浆无码系列 | 国产亚洲精品久久久久久大师 | 亚洲国产成人av在线观看 | 色综合久久久无码网中文 | 国产无套内射久久久国产 | 成人片黄网站色大片免费观看 | 国产在线精品一区二区三区直播 | 国产精品.xx视频.xxtv | 人妻少妇精品无码专区动漫 | 无码国产色欲xxxxx视频 | 狠狠色噜噜狠狠狠狠7777米奇 | 人妻少妇精品无码专区动漫 | 亚洲爆乳无码专区 | 日本丰满熟妇videos | 无码帝国www无码专区色综合 | 纯爱无遮挡h肉动漫在线播放 | 粉嫩少妇内射浓精videos | 欧美激情内射喷水高潮 | 人人爽人人澡人人人妻 | 久久精品国产亚洲精品 | 国产精品无码永久免费888 | 四十如虎的丰满熟妇啪啪 | 久久久久久av无码免费看大片 | 久久久久se色偷偷亚洲精品av | 国产成人无码av片在线观看不卡 | 少妇太爽了在线观看 | 精品日本一区二区三区在线观看 | 少女韩国电视剧在线观看完整 | yw尤物av无码国产在线观看 | a在线亚洲男人的天堂 | 国产成人无码av一区二区 | 999久久久国产精品消防器材 | 人妻有码中文字幕在线 | 中文字幕av日韩精品一区二区 | 蜜桃av抽搐高潮一区二区 | 中文字幕乱码亚洲无线三区 | 日韩av无码中文无码电影 | 欧美日韩综合一区二区三区 | 成人性做爰aaa片免费看不忠 | 无码成人精品区在线观看 | 日本xxxx色视频在线观看免费 | 亚洲熟熟妇xxxx | 人人妻人人澡人人爽欧美精品 | 久久午夜无码鲁丝片午夜精品 | 日韩人妻系列无码专区 | 蜜臀aⅴ国产精品久久久国产老师 | 老太婆性杂交欧美肥老太 | 欧美日韩综合一区二区三区 | 久久久久免费看成人影片 | 国产av无码专区亚洲a∨毛片 | 国产成人无码av一区二区 | 免费无码av一区二区 | 成人影院yy111111在线观看 | 欧美丰满熟妇xxxx | 一本一道久久综合久久 | 午夜不卡av免费 一本久久a久久精品vr综合 | 亚洲国产精品成人久久蜜臀 | 国产精品99久久精品爆乳 | 亚洲中文字幕无码中字 | 偷窥日本少妇撒尿chinese | 国产手机在线αⅴ片无码观看 | 18禁黄网站男男禁片免费观看 | 国产精品无套呻吟在线 | 中文无码伦av中文字幕 | 狠狠色色综合网站 | 日本又色又爽又黄的a片18禁 | 国产一区二区三区四区五区加勒比 | 99视频精品全部免费免费观看 | 啦啦啦www在线观看免费视频 | 成在人线av无码免观看麻豆 | 乌克兰少妇性做爰 | 亚洲中文字幕在线观看 | 亚洲熟熟妇xxxx | 欧美激情综合亚洲一二区 | 国产特级毛片aaaaaaa高清 | 国产片av国语在线观看 | 国产成人午夜福利在线播放 | 一本一道久久综合久久 | 丰满人妻一区二区三区免费视频 | 精品久久久久香蕉网 | 欧美xxxxx精品 | 波多野结衣aⅴ在线 | 高清国产亚洲精品自在久久 | 天堂а√在线地址中文在线 | 波多野结衣aⅴ在线 | 综合网日日天干夜夜久久 | 色噜噜亚洲男人的天堂 | 国内老熟妇对白xxxxhd | 一本久久a久久精品vr综合 | 男人和女人高潮免费网站 | 激情内射日本一区二区三区 | 国产在线精品一区二区高清不卡 | 精品人妻人人做人人爽 | 日韩无套无码精品 | 久久综合激激的五月天 | 亚洲熟妇色xxxxx亚洲 | 国产精品沙发午睡系列 | 国语自产偷拍精品视频偷 | 欧美性猛交内射兽交老熟妇 | 久久国产精品偷任你爽任你 | 国产精品久久久久7777 | 成年美女黄网站色大免费全看 | 久久久久久a亚洲欧洲av冫 | 亚洲精品国产第一综合99久久 | 九九久久精品国产免费看小说 | 蜜臀aⅴ国产精品久久久国产老师 | 久久亚洲国产成人精品性色 | 国产成人无码一二三区视频 | 欧美亚洲国产一区二区三区 | 亚洲日本va中文字幕 | 中文字幕乱妇无码av在线 | 中文久久乱码一区二区 | 55夜色66夜色国产精品视频 | 国产精品va在线播放 | 亚洲精品国产第一综合99久久 | 亚洲自偷精品视频自拍 | 蜜桃臀无码内射一区二区三区 | 亚洲色大成网站www国产 | 成人精品视频一区二区 | 亚洲无人区午夜福利码高清完整版 | 国产电影无码午夜在线播放 | 国产精品亚洲а∨无码播放麻豆 | 亚洲人亚洲人成电影网站色 | av香港经典三级级 在线 | 国产精品对白交换视频 | 婷婷六月久久综合丁香 | 精品国产av色一区二区深夜久久 | 国产精品办公室沙发 | 精品无码国产一区二区三区av | 青青青爽视频在线观看 | 欧美三级a做爰在线观看 | 欧美日韩一区二区免费视频 | 日本熟妇乱子伦xxxx | 午夜福利不卡在线视频 | 丝袜美腿亚洲一区二区 | 亚洲熟妇色xxxxx欧美老妇y | 欧美怡红院免费全部视频 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 亲嘴扒胸摸屁股激烈网站 | 亚洲日本一区二区三区在线 | 色欲av亚洲一区无码少妇 | 狠狠躁日日躁夜夜躁2020 | 一个人看的www免费视频在线观看 | 欧美老妇与禽交 | 波多野结衣高清一区二区三区 | 色综合久久久无码中文字幕 | 成年美女黄网站色大免费全看 | 亚洲毛片av日韩av无码 | 中文无码精品a∨在线观看不卡 | 性啪啪chinese东北女人 | 欧洲极品少妇 | 特黄特色大片免费播放器图片 | 女人被男人躁得好爽免费视频 | 97无码免费人妻超级碰碰夜夜 | 99精品视频在线观看免费 | 亚洲一区二区三区国产精华液 | 精品一区二区三区波多野结衣 | 欧美日本精品一区二区三区 | 少妇被粗大的猛进出69影院 | 亚洲欧美中文字幕5发布 | 亚洲男人av香蕉爽爽爽爽 | 亚洲欧洲日本综合aⅴ在线 | 无遮无挡爽爽免费视频 | 1000部夫妻午夜免费 | 日本熟妇大屁股人妻 | 又粗又大又硬毛片免费看 | 色诱久久久久综合网ywww | 色综合天天综合狠狠爱 | 国产亚洲tv在线观看 | 国产精品igao视频网 | 中文字幕乱码中文乱码51精品 | 亚洲熟妇色xxxxx欧美老妇y | 久久久精品欧美一区二区免费 | 欧美老妇交乱视频在线观看 | 久久久国产精品无码免费专区 | 欧美 亚洲 国产 另类 | 51国偷自产一区二区三区 | 乱人伦中文视频在线观看 | 3d动漫精品啪啪一区二区中 | 人妻无码αv中文字幕久久琪琪布 | 中国女人内谢69xxxxxa片 | 99久久人妻精品免费一区 | 国产精品久久久午夜夜伦鲁鲁 | 国产乱码精品一品二品 | 欧美熟妇另类久久久久久不卡 | 欧美freesex黑人又粗又大 | 欧美色就是色 | 久青草影院在线观看国产 | 亚洲中文字幕乱码av波多ji | 国产午夜福利亚洲第一 | 性生交片免费无码看人 | 国产欧美亚洲精品a | 久久zyz资源站无码中文动漫 | 国产卡一卡二卡三 | 日日摸天天摸爽爽狠狠97 | 国产午夜无码视频在线观看 | 夜精品a片一区二区三区无码白浆 | 色妞www精品免费视频 | 亚洲经典千人经典日产 | 国产区女主播在线观看 | 综合激情五月综合激情五月激情1 | 国产精品亚洲一区二区三区喷水 | 久久婷婷五月综合色国产香蕉 | 99久久婷婷国产综合精品青草免费 | 亚洲成av人影院在线观看 | 国产av无码专区亚洲awww | 18禁黄网站男男禁片免费观看 | 国产口爆吞精在线视频 | 免费中文字幕日韩欧美 | 国产精品久久久久久亚洲影视内衣 | 亚洲国产高清在线观看视频 | 曰韩无码二三区中文字幕 | 99国产欧美久久久精品 | 99riav国产精品视频 | 欧美国产日韩久久mv | 欧美大屁股xxxxhd黑色 | 国产人妻久久精品二区三区老狼 | 无码一区二区三区在线观看 | 99久久人妻精品免费一区 | 日本在线高清不卡免费播放 | 老子影院午夜伦不卡 | 麻豆国产人妻欲求不满 | 人妻与老人中文字幕 | 久久精品中文字幕大胸 | 领导边摸边吃奶边做爽在线观看 | 精品国产国产综合精品 | 在线观看欧美一区二区三区 | 老熟女乱子伦 | 国产suv精品一区二区五 | 成人无码影片精品久久久 | 亚洲a无码综合a国产av中文 | 国产成人精品必看 | 国产乱子伦视频在线播放 | 国产乱码精品一品二品 | 色情久久久av熟女人妻网站 | 无码人妻丰满熟妇区毛片18 | 亚洲精品成人av在线 | 又大又紧又粉嫩18p少妇 | 精品久久久中文字幕人妻 | 99久久人妻精品免费二区 | 亚洲gv猛男gv无码男同 | а√天堂www在线天堂小说 | 丰满人妻精品国产99aⅴ | 中文字幕无码热在线视频 | 国产无套粉嫩白浆在线 | 国产精品无码mv在线观看 | 波多野结衣乳巨码无在线观看 | 亚洲 高清 成人 动漫 | av无码久久久久不卡免费网站 | 国产明星裸体无码xxxx视频 | 激情内射亚州一区二区三区爱妻 | 男女下面进入的视频免费午夜 | 国产另类ts人妖一区二区 | 日产国产精品亚洲系列 | 55夜色66夜色国产精品视频 | v一区无码内射国产 | 2019午夜福利不卡片在线 | 99久久精品日本一区二区免费 | 熟女少妇人妻中文字幕 | 人人澡人人妻人人爽人人蜜桃 | 精品欧洲av无码一区二区三区 | 亚洲日本一区二区三区在线 | 亚洲无人区午夜福利码高清完整版 | 噜噜噜亚洲色成人网站 | 中文字幕 人妻熟女 | 在线a亚洲视频播放在线观看 | 一区二区传媒有限公司 | 18精品久久久无码午夜福利 | 蜜桃臀无码内射一区二区三区 | 漂亮人妻洗澡被公强 日日躁 | 国产精品久久久久久亚洲毛片 | 亚洲日本一区二区三区在线 | 国产三级精品三级男人的天堂 | 曰本女人与公拘交酡免费视频 | 99久久人妻精品免费二区 | 欧美成人高清在线播放 | 夜夜夜高潮夜夜爽夜夜爰爰 | 久久久久久久女国产乱让韩 | 亚洲中文字幕久久无码 | 国产在线一区二区三区四区五区 | 日本免费一区二区三区最新 | 国产激情艳情在线看视频 | 在线观看国产午夜福利片 | 永久免费观看国产裸体美女 | 国产九九九九九九九a片 | 永久免费观看美女裸体的网站 | 亚洲 激情 小说 另类 欧美 | 国产香蕉尹人视频在线 | 久久精品国产一区二区三区肥胖 | 亚洲精品久久久久中文第一幕 | 2019nv天堂香蕉在线观看 | 久久久久久av无码免费看大片 | 中文字幕日韩精品一区二区三区 | 77777熟女视频在线观看 а天堂中文在线官网 | 丁香花在线影院观看在线播放 | 午夜不卡av免费 一本久久a久久精品vr综合 | 97久久精品无码一区二区 | 欧美人妻一区二区三区 | 丰满人妻翻云覆雨呻吟视频 | 成人免费视频一区二区 | 亚洲中文字幕无码中字 | 天天躁夜夜躁狠狠是什么心态 | 日韩精品无码免费一区二区三区 | 婷婷综合久久中文字幕蜜桃三电影 | 国产尤物精品视频 | 国产无遮挡又黄又爽免费视频 | 国语自产偷拍精品视频偷 | 无码毛片视频一区二区本码 | 成人欧美一区二区三区黑人免费 | 亚洲欧洲日本综合aⅴ在线 | 中文字幕无码日韩专区 | 乱码午夜-极国产极内射 | 最新国产麻豆aⅴ精品无码 | 97夜夜澡人人双人人人喊 | 曰韩少妇内射免费播放 | 任你躁国产自任一区二区三区 | 欧美野外疯狂做受xxxx高潮 | 无码乱肉视频免费大全合集 | 99视频精品全部免费免费观看 | 中文字幕无码免费久久99 | 亚洲欧美国产精品久久 | 狠狠躁日日躁夜夜躁2020 | 玩弄人妻少妇500系列视频 | 国产无套粉嫩白浆在线 | 久激情内射婷内射蜜桃人妖 | 99久久精品无码一区二区毛片 | 性欧美牲交xxxxx视频 | 欧美日韩久久久精品a片 | 日本肉体xxxx裸交 | 在线精品亚洲一区二区 | 亚洲毛片av日韩av无码 | 国产精品久久国产三级国 | 亚洲欧美精品伊人久久 | 久久午夜无码鲁丝片午夜精品 | 小泽玛莉亚一区二区视频在线 | 性啪啪chinese东北女人 | 丝袜美腿亚洲一区二区 | 欧美熟妇另类久久久久久不卡 | 国产精品二区一区二区aⅴ污介绍 | 亚洲中文字幕久久无码 | 色窝窝无码一区二区三区色欲 | 欧美老妇交乱视频在线观看 | 三上悠亚人妻中文字幕在线 | 亚洲精品综合一区二区三区在线 | 国产无遮挡又黄又爽又色 | 国产精品久久国产三级国 | 久久国产精品二国产精品 | 国产成人无码a区在线观看视频app | 夜夜影院未满十八勿进 | 一本色道婷婷久久欧美 | 国产网红无码精品视频 | 男女猛烈xx00免费视频试看 | 天天综合网天天综合色 | 精品国精品国产自在久国产87 | 国产乱人无码伦av在线a | 狠狠色噜噜狠狠狠狠7777米奇 | 88国产精品欧美一区二区三区 | 无码av中文字幕免费放 | 人人澡人人妻人人爽人人蜜桃 | 成人无码视频免费播放 | 免费网站看v片在线18禁无码 | 麻豆精产国品 | 国产香蕉尹人综合在线观看 | 久久zyz资源站无码中文动漫 | 九九在线中文字幕无码 | 国产色精品久久人妻 | 久久精品国产亚洲精品 | 亚洲熟熟妇xxxx | 亚洲国精产品一二二线 | 国产精品美女久久久久av爽李琼 | 在线成人www免费观看视频 | 国产美女精品一区二区三区 | 国内综合精品午夜久久资源 | 久久人人97超碰a片精品 | 无码精品国产va在线观看dvd | 激情亚洲一区国产精品 | 国产精品美女久久久 | 日本高清一区免费中文视频 | 色婷婷欧美在线播放内射 | 国产精品爱久久久久久久 | 国内精品久久久久久中文字幕 | 人人妻人人澡人人爽欧美一区九九 | 国产人妻精品一区二区三区不卡 | 亚洲成av人片在线观看无码不卡 | 亚洲色大成网站www | 久久综合九色综合97网 | 天堂久久天堂av色综合 | 亚洲日韩中文字幕在线播放 | 人人爽人人澡人人高潮 | 成人试看120秒体验区 | 性欧美牲交xxxxx视频 | 高潮毛片无遮挡高清免费视频 | 中文无码精品a∨在线观看不卡 | 国产在热线精品视频 | 亚洲国产精品无码久久久久高潮 | 特级做a爰片毛片免费69 | 久久久精品人妻久久影视 | 亚洲 日韩 欧美 成人 在线观看 | 中文亚洲成a人片在线观看 | 亚洲欧美国产精品专区久久 | 国産精品久久久久久久 | 婷婷色婷婷开心五月四房播播 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | а√天堂www在线天堂小说 | 国产亚洲美女精品久久久2020 | 国产人妖乱国产精品人妖 | 国产区女主播在线观看 | 丰满少妇人妻久久久久久 | 国产美女精品一区二区三区 | 亚洲成av人综合在线观看 | 亚洲а∨天堂久久精品2021 | 亚洲熟妇色xxxxx欧美老妇 | 国产午夜手机精彩视频 | 蜜桃臀无码内射一区二区三区 | 无码中文字幕色专区 | 沈阳熟女露脸对白视频 | 欧美日本免费一区二区三区 | 丰满少妇女裸体bbw | 无码国模国产在线观看 | 中国女人内谢69xxxx | 亚洲成a人片在线观看无码 | 久久久久成人精品免费播放动漫 | 久久zyz资源站无码中文动漫 | 国产明星裸体无码xxxx视频 | 欧美 日韩 人妻 高清 中文 | 亚洲日本一区二区三区在线 | 男人和女人高潮免费网站 | 国产免费久久精品国产传媒 | 大肉大捧一进一出好爽视频 | 亚洲啪av永久无码精品放毛片 | 免费乱码人妻系列无码专区 | 国产亲子乱弄免费视频 | 伊人色综合久久天天小片 | 日韩精品一区二区av在线 | 中文字幕人妻无码一夲道 | 亚洲精品成a人在线观看 | 国产无av码在线观看 | 亚洲人成影院在线无码按摩店 | 最新版天堂资源中文官网 | 无码av岛国片在线播放 | 一本色道久久综合狠狠躁 | 97精品国产97久久久久久免费 | 无码av免费一区二区三区试看 | 300部国产真实乱 | 国产在线一区二区三区四区五区 | 在线精品亚洲一区二区 | 精品人妻人人做人人爽夜夜爽 | 纯爱无遮挡h肉动漫在线播放 | 无码人妻av免费一区二区三区 | 日韩欧美中文字幕公布 | 偷窥日本少妇撒尿chinese | а天堂中文在线官网 | 动漫av网站免费观看 | 欧美丰满少妇xxxx性 | 国产av人人夜夜澡人人爽麻豆 | 乌克兰少妇xxxx做受 | 国产精品香蕉在线观看 | 亚洲大尺度无码无码专区 | 亚洲精品国产品国语在线观看 | 97久久超碰中文字幕 | 欧美丰满熟妇xxxx | 丰满人妻一区二区三区免费视频 | 国内综合精品午夜久久资源 | 欧美国产日韩亚洲中文 | 欧美老熟妇乱xxxxx | 久久久久久久久蜜桃 | 男女性色大片免费网站 | 亚洲中文字幕久久无码 | 精品国产一区二区三区av 性色 | 老司机亚洲精品影院无码 | 国产午夜亚洲精品不卡下载 | 国产综合在线观看 | 欧美丰满熟妇xxxx性ppx人交 | 好男人社区资源 | 九九久久精品国产免费看小说 | 人人妻人人澡人人爽欧美一区 | 四虎国产精品免费久久 | 久久97精品久久久久久久不卡 | 亚洲欧洲日本综合aⅴ在线 | 激情国产av做激情国产爱 | 亚洲国产精品一区二区美利坚 | 国产香蕉尹人视频在线 | 久久精品中文字幕一区 | 东京热无码av男人的天堂 | 男人扒开女人内裤强吻桶进去 | 国产精品自产拍在线观看 | 97夜夜澡人人爽人人喊中国片 | 日本在线高清不卡免费播放 | 国产乱人伦偷精品视频 | 亚洲小说春色综合另类 | 人妻插b视频一区二区三区 | 精品一区二区不卡无码av | 久久精品中文闷骚内射 | 国产亚洲精品久久久久久大师 | 亚洲精品国产精品乱码不卡 | 日韩欧美中文字幕在线三区 | 亚洲精品一区二区三区大桥未久 | 久久综合九色综合欧美狠狠 | 日本又色又爽又黄的a片18禁 | 偷窥村妇洗澡毛毛多 | 亚洲日韩精品欧美一区二区 | 国产特级毛片aaaaaa高潮流水 | 极品尤物被啪到呻吟喷水 | 国产av剧情md精品麻豆 | 无码av免费一区二区三区试看 | 亚洲 a v无 码免 费 成 人 a v | 色妞www精品免费视频 | 大色综合色综合网站 | 亚洲一区二区三区国产精华液 | 成人三级无码视频在线观看 | 欧美日韩一区二区免费视频 | 国产无套内射久久久国产 | 精品无码成人片一区二区98 | 亚洲 高清 成人 动漫 | 成人免费视频视频在线观看 免费 | 老头边吃奶边弄进去呻吟 | 无码人妻黑人中文字幕 | 97久久精品无码一区二区 | 中文无码成人免费视频在线观看 | 76少妇精品导航 | 中文精品久久久久人妻不卡 | 亚洲の无码国产の无码步美 | 精品偷自拍另类在线观看 | 成人精品天堂一区二区三区 | 亚洲国产成人av在线观看 | 欧美人与禽猛交狂配 | 国产亚洲视频中文字幕97精品 | 欧美黑人乱大交 | 国产乱人伦偷精品视频 | 久久久久成人精品免费播放动漫 | 精品人人妻人人澡人人爽人人 | 久久久久久av无码免费看大片 | 久久久国产一区二区三区 | 亚洲中文字幕无码中文字在线 | 亚洲欧美精品伊人久久 | 3d动漫精品啪啪一区二区中 | 日本欧美一区二区三区乱码 | 久久精品女人天堂av免费观看 | 日本免费一区二区三区最新 | 国产精品理论片在线观看 | 欧美老人巨大xxxx做受 | 水蜜桃av无码 | 久久精品国产99精品亚洲 | 国产在线无码精品电影网 | 国产xxx69麻豆国语对白 | 亚洲精品国产精品乱码不卡 | 最近的中文字幕在线看视频 | 亚洲中文字幕无码中文字在线 | 麻豆国产人妻欲求不满谁演的 | 亚洲性无码av中文字幕 | 免费无码午夜福利片69 | 7777奇米四色成人眼影 | 日本大乳高潮视频在线观看 | 亚洲一区二区三区 | 给我免费的视频在线观看 | 高清国产亚洲精品自在久久 | 亚洲成av人综合在线观看 | 麻豆md0077饥渴少妇 | 亚洲 激情 小说 另类 欧美 | 人妻少妇精品视频专区 | 永久免费观看美女裸体的网站 | 欧美丰满熟妇xxxx | 亚洲日韩av一区二区三区四区 | 在线播放免费人成毛片乱码 | 国产一区二区三区四区五区加勒比 | а天堂中文在线官网 | 激情综合激情五月俺也去 | 久久人人爽人人爽人人片ⅴ | av香港经典三级级 在线 | 成人无码视频在线观看网站 | 色综合久久久久综合一本到桃花网 | 67194成是人免费无码 | 美女极度色诱视频国产 | 亚洲熟熟妇xxxx | 欧美日韩视频无码一区二区三 | 久久综合色之久久综合 | 精品成人av一区二区三区 | 图片区 小说区 区 亚洲五月 | 国产成人无码a区在线观看视频app | 久久天天躁夜夜躁狠狠 | 久久久久久九九精品久 | 国产精品久久精品三级 | 中文字幕日韩精品一区二区三区 | 2019午夜福利不卡片在线 | 日本乱偷人妻中文字幕 | 欧美性猛交xxxx富婆 | 精品国产av色一区二区深夜久久 | 久久国语露脸国产精品电影 | 一区二区三区高清视频一 | 午夜福利一区二区三区在线观看 | 精品乱码久久久久久久 | 久久精品人人做人人综合 | 亚洲成色www久久网站 | 狠狠噜狠狠狠狠丁香五月 | 国产人成高清在线视频99最全资源 | 亚洲大尺度无码无码专区 | 欧美肥老太牲交大战 | 欧美性生交xxxxx久久久 | 少妇愉情理伦片bd | 亚洲中文字幕av在天堂 | 日本护士xxxxhd少妇 | 成人女人看片免费视频放人 | 久久久久久亚洲精品a片成人 | 午夜理论片yy44880影院 | 久久天天躁狠狠躁夜夜免费观看 | 老熟妇仑乱视频一区二区 | 色一情一乱一伦一区二区三欧美 | 国产黑色丝袜在线播放 | 在线欧美精品一区二区三区 | 国产精品资源一区二区 | 一个人看的www免费视频在线观看 | 欧美亚洲国产一区二区三区 | 久久人人爽人人爽人人片ⅴ | 男人的天堂av网站 | 亚洲成在人网站无码天堂 | 成人精品天堂一区二区三区 | 久久亚洲精品成人无码 | 天天摸天天透天天添 | 装睡被陌生人摸出水好爽 | 欧美人与禽zoz0性伦交 | 在教室伦流澡到高潮hnp视频 | 久久国产精品_国产精品 | 日本一卡2卡3卡四卡精品网站 | 大肉大捧一进一出好爽视频 | 人妻与老人中文字幕 | 国产人成高清在线视频99最全资源 | 国产午夜精品一区二区三区嫩草 | 999久久久国产精品消防器材 | 色综合久久中文娱乐网 | 久久精品国产日本波多野结衣 | 国产精品无码mv在线观看 | 国产精品久免费的黄网站 | 亚洲精品久久久久avwww潮水 | 无套内谢的新婚少妇国语播放 | 麻豆国产97在线 | 欧洲 | 国产精品沙发午睡系列 | 中文字幕中文有码在线 | 蜜桃臀无码内射一区二区三区 | 永久免费精品精品永久-夜色 | 久久zyz资源站无码中文动漫 | 久久精品女人天堂av免费观看 | 国产乱码精品一品二品 | 亚洲最大成人网站 | 日本成熟视频免费视频 | 成人无码视频在线观看网站 | 无码国内精品人妻少妇 | 国产精品人人爽人人做我的可爱 | 人妻夜夜爽天天爽三区 | 国产色视频一区二区三区 | 西西人体www44rt大胆高清 | 中国女人内谢69xxxx | 国产精品.xx视频.xxtv | 亚洲欧美日韩成人高清在线一区 | 国产成人无码午夜视频在线观看 | 国精品人妻无码一区二区三区蜜柚 | 亚洲aⅴ无码成人网站国产app | 中文字幕无码av波多野吉衣 | 成年女人永久免费看片 | 装睡被陌生人摸出水好爽 | 国产精品美女久久久久av爽李琼 | 99久久精品国产一区二区蜜芽 | а√天堂www在线天堂小说 | 4hu四虎永久在线观看 | 大胆欧美熟妇xx | 久久这里只有精品视频9 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产精品理论片在线观看 | 伊人久久大香线蕉亚洲 | 国产乱码精品一品二品 | 熟女体下毛毛黑森林 | 亚洲中文字幕va福利 | а√资源新版在线天堂 | 国产午夜精品一区二区三区嫩草 | 麻豆成人精品国产免费 | 亚洲自偷精品视频自拍 | 理论片87福利理论电影 | 久久99精品国产.久久久久 | 国产日产欧产精品精品app | 日韩成人一区二区三区在线观看 | 美女毛片一区二区三区四区 | 亚洲国产欧美日韩精品一区二区三区 | 国产在线精品一区二区高清不卡 | 亚洲一区av无码专区在线观看 | 国产av无码专区亚洲awww | 4hu四虎永久在线观看 | 精品成人av一区二区三区 | 欧美怡红院免费全部视频 | 国产熟妇另类久久久久 | 国产精品毛片一区二区 | 一个人看的www免费视频在线观看 | 日韩精品无码一本二本三本色 | 国产精品美女久久久网av | 成人性做爰aaa片免费看 | 性欧美牲交在线视频 | 对白脏话肉麻粗话av | 无码人妻精品一区二区三区不卡 | √8天堂资源地址中文在线 | 人人妻人人澡人人爽欧美一区 | 女人被爽到呻吟gif动态图视看 | 久久99精品久久久久久动态图 | 欧美日韩一区二区三区自拍 | 久久婷婷五月综合色国产香蕉 | 亚洲欧美日韩综合久久久 | 在线视频网站www色 | 麻豆成人精品国产免费 | 东京热一精品无码av | 国产sm调教视频在线观看 | 久久午夜无码鲁丝片秋霞 | 十八禁真人啪啪免费网站 | 牲欲强的熟妇农村老妇女 | 亚洲中文字幕无码中字 | 亚洲精品欧美二区三区中文字幕 | 久久综合色之久久综合 | 夜精品a片一区二区三区无码白浆 | 99久久人妻精品免费一区 | 欧美人与动性行为视频 | 久久国内精品自在自线 | 麻花豆传媒剧国产免费mv在线 | 色婷婷av一区二区三区之红樱桃 | 国产电影无码午夜在线播放 | 亚洲爆乳大丰满无码专区 | 丝袜美腿亚洲一区二区 | 天天燥日日燥 | 国产一区二区三区日韩精品 | 熟女体下毛毛黑森林 | 欧美性猛交内射兽交老熟妇 | 日韩人妻系列无码专区 | 97资源共享在线视频 | 亚无码乱人伦一区二区 | www国产亚洲精品久久网站 | 中文字幕人妻无码一夲道 | 牲欲强的熟妇农村老妇女 | 美女黄网站人色视频免费国产 | 男女作爱免费网站 | 麻豆国产97在线 | 欧洲 | 性生交大片免费看l | 久久久国产一区二区三区 | 欧美人与牲动交xxxx | 国产成人久久精品流白浆 | 天堂无码人妻精品一区二区三区 | 国产精品无码永久免费888 | 激情五月综合色婷婷一区二区 | 中文字幕无码av激情不卡 | 一本久久a久久精品亚洲 | 免费播放一区二区三区 | 国产内射爽爽大片视频社区在线 | 久久天天躁狠狠躁夜夜免费观看 | 久久精品国产一区二区三区肥胖 | 欧美丰满熟妇xxxx | 亚洲a无码综合a国产av中文 | 性色欲网站人妻丰满中文久久不卡 | 国产精品a成v人在线播放 | 粉嫩少妇内射浓精videos | 丰满人妻被黑人猛烈进入 | 国产后入清纯学生妹 | 97夜夜澡人人双人人人喊 |