Started by user Matthias Mueller Obtained build-release.jenkins from git ssh://git@s-ait-p-dev0.stack.aiticon.net:7999/ac/appng-build.git [Pipeline] node Running on master in /var/lib/jenkins/workspace/appNG_Release [Pipeline] { [Pipeline] tool [Pipeline] stage [Pipeline] { (Info) [Pipeline] echo ############################################## [Pipeline] echo Preparing release 1.14.3 from branch appng-1.14.x, current snapshot is 1.14.3-SNAPSHOT, next version will be 1.15.0-SNAPSHOT [Pipeline] echo ############################################## [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Prepare Release Branch) [Pipeline] sh [appNG_Release] Running shell script + rm -rf appng [Pipeline] sh [appNG_Release] Running shell script + git clone git@github.com:appNG/appng.git Cloning into 'appng'... [Pipeline] dir Running in /var/lib/jenkins/workspace/appNG_Release/appng [Pipeline] { [Pipeline] sh [appng] Running shell script + git checkout appng-1.14.x Switched to a new branch 'appng-1.14.x' Branch appng-1.14.x set up to track remote branch appng-1.14.x from origin. [Pipeline] sh [appng] Running shell script + sed -i s/1\.14\.3-SNAPSHOT/1\.15\.0-SNAPSHOT/g README.adoc [Pipeline] sh [appng] Running shell script + sed -i s/1\.14\.2/1\.14\.3/g README.adoc [Pipeline] sh [appng] Running shell script + sed -i s/1\.14\.3-SNAPSHOT/1\.14\.3/g pom.xml appng-api/pom.xml appng-application-assembly/pom.xml appng-application-bom/pom.xml appng-application-parent/pom.xml appng-application/pom.xml appng-appngizer-jaxb/pom.xml appng-appngizer-maven-plugin/pom.xml appng-appngizer/pom.xml appng-archetype-application/pom.xml appng-cli/pom.xml appng-core/pom.xml appng-documentation/pom.xml appng-forms/pom.xml appng-formtags/pom.xml appng-mail/pom.xml appng-persistence/pom.xml appng-search/pom.xml appng-standalone/pom.xml appng-taglib/pom.xml appng-template-assembly/pom.xml appng-template-parent/pom.xml appng-testsupport/pom.xml appng-tomcat7/pom.xml appng-tomcat8/pom.xml appng-tools/pom.xml appng-xmlapi/pom.xml appng-archetype-application/src/main/resources/archetype-resources/pom.xml appng-archetype-application/readme.txt appng-documentation/src/main/asciidoc/listing/dependencies.txt [Pipeline] sh [appng] Running shell script + sed s/:current: {snapshot}/:current: {stable}/g README.adoc image::https://www.aiticon.com/assets/images/appng_logo_760px.jpg[] :snapshot: 1.15.0-SNAPSHOT :stable: 1.14.3 :current: {stable} == Welcome to appNG appNG is a *web application platform* and a *web application framework*, based on http://tomcat.apache.org/[Apache Tomcat^] and the https://spring.io[Spring Framework^]. With appNG, you can build your own applications and deploy them to the platform within minutes. appNG is very well suited to create and operate your own application platform as a service (aPaaS). == Core Features * Clear separation of concerns following the *MVC* paradigm * *Declarative UI definition* using schema-safe XML files * Writing business logic by implementing a *handful of interfaces* * Automatic *parameter-binding* and type conversion * Built-in support for *paging, filtering sorting* * Out-of-the-box support for *JPA* and http://projects.spring.io/spring-data/[Spring Data^] * Built-In *connection pooling* using https://github.com/brettwooldridge/HikariCP[HikariCP^] * Database *schema migrations* powered by https://flywaydb.org/[Flyway^] * Built-In *role based access control*, which allows using field-based access * Easily provide your own *SOAP* or *REST* based webservices * Fully supports *internationalization* (i18n) * *Easy deployment* by providing a repository mechanism * Configurable caching powered by http://www.ehcache.org/[Ehcache^] * Cluster support and *horizontal scaling* * Powerful *administration tools*, including a graphical user interface (GUI), but also a command line interface (CLI) and a REST-client * Supports the *Bean Validation API* * Supports *indexing and searching*, powered by http://lucene.apache.org/[Lucene^] * Customizable *templating* mechanism * Configurable and extendable *authentication mechanism* (local, LDAP etc.) * Provides *job scheduling* powered by http://www.quartz-scheduler.org/[Quartz^] * Provides *tooling for common tasks* like resizing images, sending emails, geo-locating, report generation etc. * Provides a large set of commonly used *libraries* such as https://commons.apache.org/[Apache Commons^] or https://github.com/FasterXML/jackson[Jackson^] * Can serve *JSP*-content that can make use of the appNG *tag library* * *Multi-tenancy* allows to separate or group applications * *Rapid protoyping* enables you to design your user interface without writing one line of Java code == Getting started === Download and run the appNG standalone Version appNG is available as a standalone version, suitable for evaluation and testing purposes. The standalone version also comes with *appNGizer*, the REST-based administration tool for appNG. The standalone version can be found here: https://appng.org/appng/builds/stable/appng-standalone-{stable}.zip Unzip the file, change into the extracted folder and run [source,subs=normal] ---- java -jar appng-standalone-{stable}.jar -i -u ---- Wait a few seconds, until the console output stops, then visit http://localhost:8080/manager in your browser. Sign-in with the username `admin` and the password `s3cr3t`. [NOTE] ==== When executing the jar for the next time, you *must* omit the parameters `-u` and `-i`, as they are only allowed on the very first run (`-u` unpacks and configures the wrapped web applications, `-i` is for installing the appNG applications and the template). ==== === Create your first appNG application Using the *appNG Maven Archetype*, you can easily create your first own application. Therefore, the following command must be used (replace `mygroupid` and `myartifactid` with the desired values): [source,subs=normal] ---- mvn archetype:generate -DgroupId=mygroupid -DartifactId=myartifactid -DarchetypeGroupId=org.appng -DarchetypeArtifactId=appng-archetype-application -DarchetypeVersion={stable} -DinteractiveMode=false ---- Next, change into the created project folder and run `mvn package`. In the target folder, a file named `myartifactid-1.0-SNAPSHOT-.zip` should have been generated. This file is the application archive. === Deploying the application The next step is to deploy the application through a local repository, e.g. the application archives are served from the local file system. During installation of the *appNG standalone* version, a local repository has been created at `/path/to/appng-standalone-{stable}/repository/`. So the first step is to copy `myartifactid-1.0-SNAPSHOT-.zip` to this location. [TIP] ==== You can also build the application archive directly in the repository folder by using the Maven option `-DoutFolder=/path/to/appng-standalone-{stable}/repository/` ==== Next, we use the *appNG CLI* to install the application and to activate it for the site `manager` (that has been created during installation). In `/path/to/appng-standalone-{stable}/appng/WEB-INF/bin`, execute the following commands: [source] ---- ./appng install-application -n myartifactid -v 1.0-SNAPSHOT -r Local ./appng activate-application -s manager -a myartifactid ---- Both commands should return without any message, meaning they where successful. [NOTE] ==== You can also use the appNG Manager or the appNGizer to install and activate an application. To see a list of available CLI commands, execute `./appng` or `./appng -h`. If you configure the appNGizer Maven Plugin for your project, you can automatically install and activate your application after the build. ==== The final step is to __reload__ the site `manager`. Therefore, login at http://localhost:8080/manager and click on the reload-icon shown next to the site in the overview. A message __"Site has been reloaded."__ should appear. After a re-login (see details below), a new navigation item named `MYAPPLICATION` should appear on the site's navigation on the left. When clicking it, you see the results of your very first appNG application. *Congratulations!* [NOTE] ==== During installation, the application's role `Admin` has been added to the appNG's built-in `Administrators` group, to which your user belongs to. Since the groups of a user are determined once during login, you need to re-login to apply the newly received permissions. For the following updates of your application, this step is therefore not necessary. ==== === What's next? You should import the Maven project into your favorite IDE. Then start browsing the code to get an idea of how an appNG application works. You should also take a look at the https://appng.org/appng/docs/{snapshot}/reference/html/developerguide.html[Developer Guide]. You may also want to check out *appNGizer* at http://localhost:8080/appNGizer. The user manual can be found here: https://appng.org/appng/docs/{snapshot}/appngizer/html/appngizer-user-manual.html == Components [width="100%",options="header"] |==================== | Name | Type | Description | https://github.com/appNG/appng[appNG^] | Web application | The appNG platform. | https://github.com/appNG/appng[appNGizer^] | Web application | Provides the appNG REST API. The appNGizer is part of the appng Git Repository. During the build a separate appNGizer WAR file is packaged. | https://github.com/appNG/appng[appng-standalone^] | Standalone version with bundled Tomcat | Includes the applications: Manager, Authentication and Scheduler and also the appNG Template | https://github.com/appNG/appng-manager[appNG Manager^] | appNG core application | Provides a web-based interface to administer appNG and to access other appNG applications. | https://github.com/appNG/appng-authentication[appNG Authentication^] | appNG core application | Provides different authentication mechanisms for appNG. | https://github.com/appNG/appng-scheduler[appNG Scheduler^] | appNG core application | Provides job scheduling services. | https://github.com/appNG/appng-template[appNG Template^] | appNG template | The classic XSLT based template, used in conjunction with the appNG Manager. |==================== NOTE: The appNG and appNGizer web applications run in Apache Tomcat, while appNG applications run on the appNG platform. appNG core applications have elevated permissions to access and control the appNG platform. appNG templates define the visual appearance of appNG applications. == Documentation [width="100%",options="header"] |==================== | Component | Type | Format |appNG |JavaDoc |https://appng.org/appng/docs/{current}/javadoc/[HTML] |appNG |Application Developer Guide |https://appng.org/appng/docs/{current}/reference/html/developerguide.html[HTML^], https://appng.org/appng/docs/{current}/reference/pdf/developerguide.pdf[PDF^] |appNGizer |Setup Guide |https://appng.org/appng/docs/{current}/appngizer/html/appngizer-setup-guide.html[HTML^], https://appng.org/appng/docs/{current}/appngizer/pdf/appngizer-setup-guide.pdf[PDF^] |appNGizer |Platform installation guide |https://appng.org/appng/docs/{current}/appngizer/html/appngizer-platform-installation-guide.html[HTML^], https://appng.org/appng/docs/{current}/appngizer/pdf/appngizer-platform-installation-guide.pdf[PDF^] |appNGizer |User Manual |https://appng.org/appng/docs/{current}/appngizer/html/appngizer-user-manual.html[HTML^], https://appng.org/appng/docs/{current}/appngizer/pdf/appngizer-user-manual.pdf[PDF^] |==================== == Download Releases [width="100%",options="header"] |==================== | Component | Version | Format |appNG |{stable} |https://appng.org/appng/builds/stable/appng-application-{stable}.war[WAR^] |appNGizer |{stable} |https://appng.org/appng/builds/stable/appng-appngizer-{stable}.war[WAR^] |Standalone |{stable} |https://appng.org/appng/builds/stable/appng-standalone-{stable}.zip[ZIP^] |==================== == Download Snapshots [width="100%",options="header"] |==================== | Component | Version | Format |appNG |{snapshot} |https://appng.org/appng/builds/snapshot/appng-application-{snapshot}.war[WAR^] |appNGizer |{snapshot} |https://appng.org/appng/builds/snapshot/appng-appngizer-{snapshot}.war[WAR^] |Standalone |{snapshot} |https://appng.org/appng/builds/snapshot/appng-standalone-{snapshot}.zip[ZIP^] |==================== WARNING: Snapshots reflect the current development status. We do not recommend to use snapshots in production and might not be able to help, if you are running cutting-edge appNG. However, if you want to take a look at the latest features, feel free to download a copy and try it out. == Getting help Please ask your question at https://stackoverflow.com/[Stack Overflow^] and make sure to add the https://stackoverflow.com/questions/tagged/appng[appng^] tag to your question. If you think you found a bug or want to propose a new feature, please create a ticket in our https://appng.org/jira/[issue tracker^]. If you require an *Enterprise Support Plan*, please contact https://www.aiticon.com[aiticon GmbH^] for further information. aiticon also offers trainings, consulting, development and hosting for appNG. == How to contribute Coming soon. == Developer Links * https://appng.org/jira/[Issue Tracker^] * https://appng.org/jenkins/[Continuous Integration^] * https://appng.org/appng/[Builds and Docs^] * https://appng.org/schema/[XSD Schemata^] * Maven Repository - Stable * Maven Repository - Snapshot * appNG Application Repository - Stable * appNG Application Repository - Snapshot == License appNG is licensed under the https://www.apache.org/licenses/LICENSE-2.0[Apache License 2.0^]. [Pipeline] sh [appng] Running shell script + git status On branch appng-1.14.x Your branch is up-to-date with 'origin/appng-1.14.x'. Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) modified: README.adoc modified: appng-api/pom.xml modified: appng-application-assembly/pom.xml modified: appng-application-bom/pom.xml modified: appng-application-parent/pom.xml modified: appng-application/pom.xml modified: appng-appngizer-jaxb/pom.xml modified: appng-appngizer-maven-plugin/pom.xml modified: appng-appngizer/pom.xml modified: appng-archetype-application/pom.xml modified: appng-archetype-application/readme.txt modified: appng-archetype-application/src/main/resources/archetype-resources/pom.xml modified: appng-cli/pom.xml modified: appng-core/pom.xml modified: appng-documentation/pom.xml modified: appng-documentation/src/main/asciidoc/listing/dependencies.txt modified: appng-forms/pom.xml modified: appng-formtags/pom.xml modified: appng-mail/pom.xml modified: appng-persistence/pom.xml modified: appng-search/pom.xml modified: appng-standalone/pom.xml modified: appng-taglib/pom.xml modified: appng-template-assembly/pom.xml modified: appng-template-parent/pom.xml modified: appng-testsupport/pom.xml modified: appng-tomcat7/pom.xml modified: appng-tomcat8/pom.xml modified: appng-tools/pom.xml modified: appng-xmlapi/pom.xml modified: pom.xml no changes added to commit (use "git add" and/or "git commit -a") [Pipeline] sh [appng] Running shell script + git commit -a -m preparing release 1.14.3 [appng-1.14.x 1af5e9f] preparing release 1.14.3 31 files changed, 49 insertions(+), 49 deletions(-) [Pipeline] } [Pipeline] // dir [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Build Release Branch) [Pipeline] dir Running in /var/lib/jenkins/workspace/appNG_Release/appng [Pipeline] { [Pipeline] sh [appng] Running shell script + /var/lib/jenkins/tools/hudson.tasks.Maven_MavenInstallation/Maven_3.5.0/bin/mvn install -Djavax.xml.accessExternalSchema=all -Dmaven.test.skip [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order: [INFO] [INFO] appNG Parent [INFO] appNG Tools [INFO] appNG Mail [INFO] appNG Forms [INFO] appng Formtags [INFO] appNG XML-API [INFO] appNG public API [INFO] appNG testsupport [INFO] appNG Persistence-Tools [INFO] appNG Search [INFO] appNG Core Library [INFO] appNG Tomcat 7 [INFO] appNG Tomcat 8 [INFO] appNG Command Line Interface [INFO] appNG Tag Library [INFO] appNG Application [INFO] appNG application BOM [INFO] appNG Documentation [INFO] appNG Template Assembly Descriptors [INFO] appNG Template Parent [INFO] appng-application-assembly [INFO] appNG application parent [INFO] Archetype - appng-archetype-application [INFO] appNGizer JAXB API [INFO] appNGizer [INFO] appNG appNGizer Maven Plugin [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Parent 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-parent --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-parent --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tools 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-tools --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-tools --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 37 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-tools --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-tools --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-tools --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-tools --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-tools --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-tools --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Mail 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-mail --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-mail --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 11 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-mail --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-mail --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-mail --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-mail --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-mail --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-mail --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Forms 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-forms --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-forms --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 12 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-forms --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-forms --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-forms --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-forms --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-forms --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-forms --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appng Formtags 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-formtags --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-formtags --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-formtags --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-formtags --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-formtags --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-formtags --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-formtags --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-formtags --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG XML-API 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] Generating source... [INFO] parsing a schema... [INFO] compiling a schema... [INFO] org/appng/xml/platform/Action.java [INFO] org/appng/xml/platform/ActionRef.java [INFO] org/appng/xml/platform/ApplicationConfig.java [INFO] org/appng/xml/platform/ApplicationReference.java [INFO] org/appng/xml/platform/ApplicationRootConfig.java [INFO] org/appng/xml/platform/Authentication.java [INFO] org/appng/xml/platform/Authentications.java [INFO] org/appng/xml/platform/Bean.java [INFO] org/appng/xml/platform/BeanOption.java [INFO] org/appng/xml/platform/Condition.java [INFO] org/appng/xml/platform/Config.java [INFO] org/appng/xml/platform/Content.java [INFO] org/appng/xml/platform/Data.java [INFO] org/appng/xml/platform/DataConfig.java [INFO] org/appng/xml/platform/Datafield.java [INFO] org/appng/xml/platform/Datasource.java [INFO] org/appng/xml/platform/DatasourceRef.java [INFO] org/appng/xml/platform/Datasources.java [INFO] org/appng/xml/platform/Digits.java [INFO] org/appng/xml/platform/Event.java [INFO] org/appng/xml/platform/Events.java [INFO] org/appng/xml/platform/FieldDef.java [INFO] org/appng/xml/platform/FieldPermissionType.java [INFO] org/appng/xml/platform/FieldPermissions.java [INFO] org/appng/xml/platform/FieldType.java [INFO] org/appng/xml/platform/FileUpload.java [INFO] org/appng/xml/platform/Future.java [INFO] org/appng/xml/platform/GetParams.java [INFO] org/appng/xml/platform/Icon.java [INFO] org/appng/xml/platform/Icontype.java [INFO] org/appng/xml/platform/ItemType.java [INFO] org/appng/xml/platform/Label.java [INFO] org/appng/xml/platform/Labels.java [INFO] org/appng/xml/platform/Link.java [INFO] org/appng/xml/platform/Linkmode.java [INFO] org/appng/xml/platform/Linkpanel.java [INFO] org/appng/xml/platform/Localization.java [INFO] org/appng/xml/platform/Max.java [INFO] org/appng/xml/platform/Message.java [INFO] org/appng/xml/platform/MessageType.java [INFO] org/appng/xml/platform/Messages.java [INFO] org/appng/xml/platform/MetaData.java [INFO] org/appng/xml/platform/Min.java [INFO] org/appng/xml/platform/Navigation.java [INFO] org/appng/xml/platform/NavigationItem.java [INFO] org/appng/xml/platform/NotNull.java [INFO] org/appng/xml/platform/ObjectFactory.java [INFO] org/appng/xml/platform/Option.java [INFO] org/appng/xml/platform/OptionGroup.java [INFO] org/appng/xml/platform/Output.java [INFO] org/appng/xml/platform/OutputFormat.java [INFO] org/appng/xml/platform/OutputType.java [INFO] org/appng/xml/platform/PageConfig.java [INFO] org/appng/xml/platform/PageDefinition.java [INFO] org/appng/xml/platform/PageReference.java [INFO] org/appng/xml/platform/Pages.java [INFO] org/appng/xml/platform/PagesReference.java [INFO] org/appng/xml/platform/PanelLocation.java [INFO] org/appng/xml/platform/Param.java [INFO] org/appng/xml/platform/ParamType.java [INFO] org/appng/xml/platform/Params.java [INFO] org/appng/xml/platform/Past.java [INFO] org/appng/xml/platform/Pattern.java [INFO] org/appng/xml/platform/Permission.java [INFO] org/appng/xml/platform/PermissionMode.java [INFO] org/appng/xml/platform/Permissions.java [INFO] org/appng/xml/platform/Platform.java [INFO] org/appng/xml/platform/PlatformConfig.java [INFO] org/appng/xml/platform/PostParams.java [INFO] org/appng/xml/platform/Result.java [INFO] org/appng/xml/platform/Resultset.java [INFO] org/appng/xml/platform/Rule.java [INFO] org/appng/xml/platform/Section.java [INFO] org/appng/xml/platform/SectionConfig.java [INFO] org/appng/xml/platform/SectionDef.java [INFO] org/appng/xml/platform/Sectionelement.java [INFO] org/appng/xml/platform/SectionelementDef.java [INFO] org/appng/xml/platform/Selection.java [INFO] org/appng/xml/platform/SelectionGroup.java [INFO] org/appng/xml/platform/SelectionType.java [INFO] org/appng/xml/platform/Session.java [INFO] org/appng/xml/platform/SessionInfo.java [INFO] org/appng/xml/platform/SessionParams.java [INFO] org/appng/xml/platform/Size.java [INFO] org/appng/xml/platform/Sort.java [INFO] org/appng/xml/platform/SortOrder.java [INFO] org/appng/xml/platform/Structure.java [INFO] org/appng/xml/platform/StructureDef.java [INFO] org/appng/xml/platform/Subject.java [INFO] org/appng/xml/platform/Template.java [INFO] org/appng/xml/platform/TextElement.java [INFO] org/appng/xml/platform/Textcontents.java [INFO] org/appng/xml/platform/Textelements.java [INFO] org/appng/xml/platform/Type.java [INFO] org/appng/xml/platform/UrlParams.java [INFO] org/appng/xml/platform/UrlSchema.java [INFO] org/appng/xml/platform/UserData.java [INFO] org/appng/xml/platform/UserInputField.java [INFO] org/appng/xml/platform/Validation.java [INFO] org/appng/xml/platform/ValidationGroups.java [INFO] org/appng/xml/platform/ValidationRule.java [INFO] org/appng/xml/platform/package-info.java [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] Generating source... [INFO] parsing a schema... [INFO] compiling a schema... [INFO] org/appng/xml/application/ApplicationInfo.java [INFO] org/appng/xml/application/Datasource.java [INFO] org/appng/xml/application/DatasourceType.java [INFO] org/appng/xml/application/Datasources.java [INFO] org/appng/xml/application/ObjectFactory.java [INFO] org/appng/xml/application/PackageInfo.java [INFO] org/appng/xml/application/Permission.java [INFO] org/appng/xml/application/PermissionRef.java [INFO] org/appng/xml/application/Permissions.java [INFO] org/appng/xml/application/Properties.java [INFO] org/appng/xml/application/Property.java [INFO] org/appng/xml/application/Role.java [INFO] org/appng/xml/application/Roles.java [INFO] org/appng/xml/application/Template.java [INFO] org/appng/xml/application/TemplateType.java [INFO] org/appng/xml/application/package-info.java [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-xmlapi --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-xmlapi --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 125 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-xmlapi --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-xmlapi --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-xmlapi --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-xmlapi --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-xmlapi --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-xmlapi --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG public API 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-api --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 6 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-api --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 164 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/model/SimpleProperty.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/model/SimpleProperty.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/model/SimpleProperty.java: Recompile with -Xlint:deprecation for details. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/support/OptionFactory.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/support/OptionFactory.java uses unchecked or unsafe operations. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/support/OptionFactory.java: Recompile with -Xlint:unchecked for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-api --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-api --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-api --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-api --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-api --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-api --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG testsupport 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-testsupport --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 3 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-testsupport --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 17 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-testsupport --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-testsupport --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-testsupport --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-testsupport --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-testsupport --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-testsupport --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Persistence-Tools 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-persistence --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-persistence --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/java/org/appng/persistence/repository/EnversSearchRepository.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/java/org/appng/persistence/repository/EnversSearchRepository.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/java/org/appng/persistence/repository/EnversSearchRepository.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-persistence --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-persistence --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-persistence --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-persistence --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-persistence --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-persistence --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Search 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-search --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-search --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 29 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-search --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-search --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-search --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-search --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-search --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-search --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Core Library 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] Generating source... [INFO] parsing a schema... [INFO] compiling a schema... [INFO] org/appng/core/xml/repository/Certification.java [INFO] org/appng/core/xml/repository/GetCertificationRequest.java [INFO] org/appng/core/xml/repository/GetCertificationResponse.java [INFO] org/appng/core/xml/repository/GetPackageRequest.java [INFO] org/appng/core/xml/repository/GetPackageResponse.java [INFO] org/appng/core/xml/repository/GetPackageVersionsRequest.java [INFO] org/appng/core/xml/repository/GetPackageVersionsResponse.java [INFO] org/appng/core/xml/repository/GetPackagesRequest.java [INFO] org/appng/core/xml/repository/GetPackagesResponse.java [INFO] org/appng/core/xml/repository/ObjectFactory.java [INFO] org/appng/core/xml/repository/Package.java [INFO] org/appng/core/xml/repository/PackageType.java [INFO] org/appng/core/xml/repository/PackageVersions.java [INFO] org/appng/core/xml/repository/Packages.java [INFO] org/appng/core/xml/repository/package-info.java [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-core --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 68 resources [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-core --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 160 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DefaultPasswordPolicy.java: Some input files use or override a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DefaultPasswordPolicy.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-core --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-core --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-core --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-core --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-core --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-core --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tomcat 7 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-tomcat7 --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-tomcat7 --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-tomcat7 --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-tomcat7 --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-tomcat7 --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-tomcat7 --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-tomcat7 --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-tomcat7 --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tomcat 8 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-tomcat8 --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-tomcat8 --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-tomcat8 --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-tomcat8 --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-tomcat8 --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-tomcat8 --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-tomcat8 --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-tomcat8 --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Command Line Interface 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-cli --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-cli --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 65 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/src/main/java/org/appng/cli/commands/heartbeat/HeartBeat.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/src/main/java/org/appng/cli/commands/heartbeat/HeartBeat.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/src/main/java/org/appng/cli/commands/heartbeat/HeartBeat.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-cli --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-cli --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-cli --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-cli --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-cli --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-cli --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tag Library 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-taglib --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-taglib --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 20 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-taglib --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-taglib --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-taglib --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-taglib --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-taglib --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-taglib --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Application 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-application --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-application --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-application --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-application --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-application --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-war-plugin:3.1.0:war (default-war) @ appng-application --- [INFO] Packaging webapp [INFO] Assembling webapp [appng-application] in [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3] [INFO] Processing war project [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/src/main/webapp/META-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3] [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/src/main/webapp/WEB-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3] [INFO] Copying webapp resources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/src/main/webapp] [INFO] Webapp assembled in [209 msecs] [INFO] Building war: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war [INFO] [INFO] --- maven-dependency-plugin:3.0.1:copy-dependencies (default) @ appng-application --- [INFO] Copying jcip-annotations-1.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jcip-annotations-1.0.jar [INFO] Copying bzip2-0.9.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/bzip2-0.9.1.jar [INFO] Copying spring-orm-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-orm-4.3.9.RELEASE.jar [INFO] Copying protobuf-java-2.5.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/protobuf-java-2.5.0.jar [INFO] Copying juniversalchardet-1.0.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/juniversalchardet-1.0.3.jar [INFO] Copying maven-scm-provider-svnexe-1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/maven-scm-provider-svnexe-1.4.jar [INFO] Copying spring-oxm-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-oxm-4.3.9.RELEASE.jar [INFO] Copying appng-formtags-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-formtags-1.14.3.jar [INFO] Copying appng-tomcat8-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-tomcat8-1.14.3.jar [INFO] Copying language-detector-0.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/language-detector-0.5.jar [INFO] Copying xml-apis-ext-1.3.04.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/xml-apis-ext-1.3.04.jar [INFO] Copying attoparser-2.0.4.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/attoparser-2.0.4.RELEASE.jar [INFO] Copying freemarker-2.3.23.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/freemarker-2.3.23.jar [INFO] Copying lucene-queries-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-queries-6.6.0.jar [INFO] Copying spring-webmvc-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-webmvc-4.3.9.RELEASE.jar [INFO] Copying mysema-commons-lang-0.2.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/mysema-commons-lang-0.2.4.jar [INFO] Copying grib-4.5.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/grib-4.5.5.jar [INFO] Copying fontbox-2.0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/fontbox-2.0.6.jar [INFO] Copying appng-persistence-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-persistence-1.14.3.jar [INFO] Copying spring-data-envers-1.1.4.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-data-envers-1.1.4.RELEASE.jar [INFO] Copying lucene-analyzers-common-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-analyzers-common-6.6.0.jar [INFO] Copying commons-pool2-2.4.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-pool2-2.4.2.jar [INFO] Copying dom4j-1.6.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/dom4j-1.6.1.jar [INFO] Copying apache-mime4j-dom-0.7.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/apache-mime4j-dom-0.7.2.jar [INFO] Copying c3p0-0.9.1.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/c3p0-0.9.1.1.jar [INFO] Copying maven-scm-api-1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/maven-scm-api-1.4.jar [INFO] Copying mail-1.4.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/mail-1.4.5.jar [INFO] Copying commons-lang-2.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-lang-2.6.jar [INFO] Copying commons-text-1.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-text-1.1.jar [INFO] Copying hibernate-jpa-2.1-api-1.0.0.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hibernate-jpa-2.1-api-1.0.0.Final.jar [INFO] Copying commons-vfs2-2.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-vfs2-2.0.jar [INFO] Copying commons-exec-1.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-exec-1.3.jar [INFO] Copying error_prone_annotations-2.0.18.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/error_prone_annotations-2.0.18.jar [INFO] Copying jboss-transaction-api_1.2_spec-1.0.1.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jboss-transaction-api_1.2_spec-1.0.1.Final.jar [INFO] Copying jackson-core-2.9.0.pr4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jackson-core-2.9.0.pr4.jar [INFO] Copying joda-time-2.9.9.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/joda-time-2.9.9.jar [INFO] Copying vorbis-java-core-0.8.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/vorbis-java-core-0.8.jar [INFO] Copying urlrewritefilter-4.0.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/urlrewritefilter-4.0.4.jar [INFO] Copying appng-tomcat7-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-tomcat7-1.14.3.jar [INFO] Copying spring-jdbc-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-jdbc-4.3.9.RELEASE.jar [INFO] Copying Saxon-HE-9.6.0-6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/Saxon-HE-9.6.0-6.jar [INFO] Copying spring-ws-core-2.4.0.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-ws-core-2.4.0.RELEASE.jar [INFO] Copying lucene-sandbox-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-sandbox-6.6.0.jar [INFO] Copying tika-parsers-1.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/tika-parsers-1.15.jar [INFO] Copying commons-fileupload-1.3.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-fileupload-1.3.3.jar [INFO] Copying spring-web-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-web-4.3.9.RELEASE.jar [INFO] Copying appng-mail-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-mail-1.14.3.jar [INFO] Copying log4j-1.2.17.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/log4j-1.2.17.jar [INFO] Copying jcommander-1.72.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jcommander-1.72.jar [INFO] Copying bcprov-jdk15on-1.54.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/bcprov-jdk15on-1.54.jar [INFO] Copying rome-utils-1.5.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/rome-utils-1.5.1.jar [INFO] Copying antlr-2.7.7.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/antlr-2.7.7.jar [INFO] Copying appng-search-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-search-1.14.3.jar [INFO] Copying pdfbox-tools-2.0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/pdfbox-tools-2.0.6.jar [INFO] Copying appng-cli-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-cli-1.14.3.jar [INFO] Copying netcdf4-4.5.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/netcdf4-4.5.5.jar [INFO] Copying asm-5.0.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/asm-5.0.4.jar [INFO] Copying appng-taglib-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-taglib-1.14.3.jar [INFO] Copying geoapi-3.0.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/geoapi-3.0.0.jar [INFO] Copying spring-expression-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-expression-4.3.9.RELEASE.jar [INFO] Copying json-20140107.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/json-20140107.jar [INFO] Copying javax.ws.rs-api-2.0.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/javax.ws.rs-api-2.0.1.jar [INFO] Copying cdm-4.5.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/cdm-4.5.5.jar [INFO] Copying httpmime-4.2.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/httpmime-4.2.6.jar [INFO] Copying jj2000-5.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jj2000-5.2.jar [INFO] Copying httpservices-4.5.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/httpservices-4.5.5.jar [INFO] Copying bsh-core-2.0b4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/bsh-core-2.0b4.jar [INFO] Copying appng-api-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-api-1.14.3.jar [INFO] Copying gson-2.2.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/gson-2.2.4.jar [INFO] Copying spring-aop-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-aop-4.3.9.RELEASE.jar [INFO] Copying cxf-rt-rs-client-3.0.12.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/cxf-rt-rs-client-3.0.12.jar [INFO] Copying boilerpipe-1.1.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/boilerpipe-1.1.0.jar [INFO] Copying lyra-0.5.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lyra-0.5.4.jar [INFO] Copying unbescape-1.1.4.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/unbescape-1.1.4.RELEASE.jar [INFO] Copying commons-configuration-1.10.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-configuration-1.10.jar [INFO] Copying jackson-databind-2.9.0.pr4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jackson-databind-2.9.0.pr4.jar [INFO] Copying hibernate-core-5.2.10.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hibernate-core-5.2.10.Final.jar [INFO] Copying commons-compress-1.14.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-compress-1.14.jar [INFO] Copying nekohtml-1.9.16.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/nekohtml-1.9.16.jar [INFO] Copying vorbis-java-tika-0.8.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/vorbis-java-tika-0.8.jar [INFO] Copying poi-scratchpad-3.16.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/poi-scratchpad-3.16.jar [INFO] Copying tagsoup-1.2.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/tagsoup-1.2.1.jar [INFO] Copying xmlbeans-2.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/xmlbeans-2.6.0.jar [INFO] Copying spring-security-web-4.2.3.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-security-web-4.2.3.RELEASE.jar [INFO] Copying commons-collections-3.2.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-collections-3.2.2.jar [INFO] Copying slf4j-api-1.7.25.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/slf4j-api-1.7.25.jar [INFO] Copying HikariCP-2.6.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/HikariCP-2.6.3.jar [INFO] Copying lucene-core-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-core-6.6.0.jar [INFO] Copying thymeleaf-spring4-3.0.6.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/thymeleaf-spring4-3.0.6.RELEASE.jar [INFO] Copying thymeleaf-3.0.6.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/thymeleaf-3.0.6.RELEASE.jar [INFO] Copying sis-referencing-0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/sis-referencing-0.6.jar [INFO] Copying commons-httpclient-3.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-httpclient-3.1.jar [INFO] Copying esapi-2.1.0.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/esapi-2.1.0.1.jar [INFO] Copying amqp-client-4.1.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/amqp-client-4.1.0.jar [INFO] Copying javassist-3.20.0-GA.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/javassist-3.20.0-GA.jar [INFO] Copying aopalliance-1.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/aopalliance-1.0.jar [INFO] Copying hibernate-commons-annotations-5.0.1.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hibernate-commons-annotations-5.0.1.Final.jar [INFO] Copying poi-ooxml-3.16.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/poi-ooxml-3.16.jar [INFO] Copying batik-ext-1.8.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/batik-ext-1.8.jar [INFO] Copying bcpkix-jdk15on-1.54.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/bcpkix-jdk15on-1.54.jar [INFO] Copying spring-context-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-context-4.3.9.RELEASE.jar [INFO] Copying plexus-utils-1.5.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/plexus-utils-1.5.6.jar [INFO] Copying jul-to-slf4j-1.7.24.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jul-to-slf4j-1.7.24.jar [INFO] Copying xom-1.2.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/xom-1.2.5.jar [INFO] Copying tika-core-1.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/tika-core-1.15.jar [INFO] Copying json-simple-1.1.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/json-simple-1.1.1.jar [INFO] Copying metadata-extractor-2.9.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/metadata-extractor-2.9.1.jar [INFO] Copying httpcore-4.4.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/httpcore-4.4.6.jar [INFO] Copying rome-1.5.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/rome-1.5.1.jar [INFO] Copying jempbox-1.8.13.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jempbox-1.8.13.jar [INFO] Copying opennlp-tools-1.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/opennlp-tools-1.6.0.jar [INFO] Copying xz-1.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/xz-1.6.jar [INFO] Copying jdom2-2.0.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jdom2-2.0.4.jar [INFO] Copying validation-api-1.1.0.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/validation-api-1.1.0.Final.jar [INFO] Copying annotations-12.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/annotations-12.0.jar [INFO] Copying lucene-facet-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-facet-6.6.0.jar [INFO] Copying regexp-1.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/regexp-1.3.jar [INFO] Copying sentiment-analysis-parser-0.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/sentiment-analysis-parser-0.1.jar [INFO] Copying httpclient-4.5.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/httpclient-4.5.3.jar [INFO] Copying jackcess-encrypt-2.1.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jackcess-encrypt-2.1.1.jar [INFO] Copying jsr305-1.3.9.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jsr305-1.3.9.jar [INFO] Copying antisamy-1.5.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/antisamy-1.5.3.jar [INFO] Copying slf4j-log4j12-1.7.25.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/slf4j-log4j12-1.7.25.jar [INFO] Copying jandex-2.0.3.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jandex-2.0.3.Final.jar [INFO] Copying jsonic-1.2.11.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jsonic-1.2.11.jar [INFO] Copying byte-buddy-1.6.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/byte-buddy-1.6.6.jar [INFO] Copying hibernate-validator-5.4.1.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hibernate-validator-5.4.1.Final.jar [INFO] Copying pdfbox-2.0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/pdfbox-2.0.6.jar [INFO] Copying sis-metadata-0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/sis-metadata-0.6.jar [INFO] Copying appng-xmlapi-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-xmlapi-1.14.3.jar [INFO] Copying commons-collections4-4.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-collections4-4.1.jar [INFO] Copying wsdl4j-1.6.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/wsdl4j-1.6.3.jar [INFO] Copying commons-codec-1.10.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-codec-1.10.jar [INFO] Copying commons-csv-1.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-csv-1.0.jar [INFO] Copying xmpcore-5.1.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/xmpcore-5.1.2.jar [INFO] Copying poi-ooxml-schemas-3.16.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/poi-ooxml-schemas-3.16.jar [INFO] Copying apache-mime4j-core-0.7.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/apache-mime4j-core-0.7.2.jar [INFO] Copying tika-langdetect-1.13.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/tika-langdetect-1.13.jar [INFO] Copying spring-tx-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-tx-4.3.9.RELEASE.jar [INFO] Copying java-libpst-0.8.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/java-libpst-0.8.1.jar [INFO] Copying spring-context-support-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-context-support-4.3.9.RELEASE.jar [INFO] Copying commons-lang3-3.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-lang3-3.6.jar [INFO] Copying batik-css-1.8.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/batik-css-1.8.jar [INFO] Copying jsoup-1.10.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jsoup-1.10.2.jar [INFO] Copying jboss-logging-3.3.0.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jboss-logging-3.3.0.Final.jar [INFO] Copying cxf-rt-frontend-jaxrs-3.0.12.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/cxf-rt-frontend-jaxrs-3.0.12.jar [INFO] Copying stax-api-1.0.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/stax-api-1.0.1.jar [INFO] Copying lucene-memory-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-memory-6.6.0.jar [INFO] Copying sis-utility-0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/sis-utility-0.6.jar [INFO] Copying jsr-275-0.9.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jsr-275-0.9.3.jar [INFO] Copying lucene-highlighter-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-highlighter-6.6.0.jar [INFO] Copying spring-xml-2.4.0.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-xml-2.4.0.RELEASE.jar [INFO] Copying maven-scm-provider-svn-commons-1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/maven-scm-provider-svn-commons-1.4.jar [INFO] Copying animal-sniffer-annotations-1.14.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/animal-sniffer-annotations-1.14.jar [INFO] Copying hsqldb-2.4.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hsqldb-2.4.0.jar [INFO] Copying classmate-1.3.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/classmate-1.3.1.jar [INFO] Copying cxf-rt-transports-http-3.0.12.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/cxf-rt-transports-http-3.0.12.jar [INFO] Copying appng-tools-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-tools-1.14.3.jar [INFO] Copying poi-3.16.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/poi-3.16.jar [INFO] Copying curvesapi-1.04.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/curvesapi-1.04.jar [INFO] Copying jcl-over-slf4j-1.7.25.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jcl-over-slf4j-1.7.25.jar [INFO] Copying querydsl-core-4.1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/querydsl-core-4.1.4.jar [INFO] Copying jdbc-perf-logger-driver-0.7.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jdbc-perf-logger-driver-0.7.3.jar [INFO] Copying jhighlight-1.0.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jhighlight-1.0.2.jar [INFO] Copying cxf-core-3.0.12.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/cxf-core-3.0.12.jar [INFO] Copying jedis-2.9.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jedis-2.9.0.jar [INFO] Copying udunits-4.5.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/udunits-4.5.5.jar [INFO] Copying lucene-queryparser-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-queryparser-6.6.0.jar [INFO] Copying woodstox-core-asl-4.4.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/woodstox-core-asl-4.4.1.jar [INFO] Copying hibernate-envers-5.2.10.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hibernate-envers-5.2.10.Final.jar [INFO] Copying spring-data-commons-1.13.4.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-data-commons-1.13.4.RELEASE.jar [INFO] Copying spring-data-jpa-1.11.4.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-data-jpa-1.11.4.RELEASE.jar [INFO] Copying sis-netcdf-0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/sis-netcdf-0.6.jar [INFO] Copying quartz-2.2.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/quartz-2.2.3.jar [INFO] Copying bcmail-jdk15on-1.54.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/bcmail-jdk15on-1.54.jar [INFO] Copying sis-storage-0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/sis-storage-0.6.jar [INFO] Copying jmimemagic-0.1.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jmimemagic-0.1.5.jar [INFO] Copying lucene-join-6.6.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/lucene-join-6.6.0.jar [INFO] Copying commons-io-2.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-io-2.5.jar [INFO] Copying ehcache-web-2.0.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/ehcache-web-2.0.4.jar [INFO] Copying querydsl-jpa-4.1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/querydsl-jpa-4.1.4.jar [INFO] Copying appng-core-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-core-1.14.3.jar [INFO] Copying j2objc-annotations-1.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/j2objc-annotations-1.1.jar [INFO] Copying aspectjrt-1.8.10.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/aspectjrt-1.8.10.jar [INFO] Copying spring-security-core-4.2.3.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-security-core-4.2.3.RELEASE.jar [INFO] Copying im4java-1.4.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/im4java-1.4.0.jar [INFO] Copying junrar-0.7.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/junrar-0.7.jar [INFO] Copying appng-forms-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-forms-1.14.3.jar [INFO] Copying commons-beanutils-core-1.8.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/commons-beanutils-core-1.8.3.jar [INFO] Copying jackson-annotations-2.9.0.pr4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jackson-annotations-2.9.0.pr4.jar [INFO] Copying pdfbox-debugger-2.0.6.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/pdfbox-debugger-2.0.6.jar [INFO] Copying xmlschema-core-2.2.1.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/xmlschema-core-2.2.1.jar [INFO] Copying javax.annotation-api-1.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/javax.annotation-api-1.2.jar [INFO] Copying guava-22.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/guava-22.0.jar [INFO] Copying spring-beans-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-beans-4.3.9.RELEASE.jar [INFO] Copying bridge-method-annotation-1.13.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/bridge-method-annotation-1.13.jar [INFO] Copying stax2-api-3.1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/stax2-api-3.1.4.jar [INFO] Copying flyway-core-4.2.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/flyway-core-4.2.0.jar [INFO] Copying ehcache-core-2.6.11.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/ehcache-core-2.6.11.jar [INFO] Copying jmatio-1.2.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jmatio-1.2.jar [INFO] Copying batik-util-1.8.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/batik-util-1.8.jar [INFO] Copying jackcess-2.1.4.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jackcess-2.1.4.jar [INFO] Copying spring-core-4.3.9.RELEASE.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/spring-core-4.3.9.RELEASE.jar [INFO] Copying hibernate-entitymanager-5.2.10.Final.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/hibernate-entitymanager-5.2.10.Final.jar [INFO] Copying jna-4.1.0.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/jna-4.1.0.jar [INFO] [INFO] --- maven-assembly-plugin:3.0.0:single (default) @ appng-application --- [INFO] Reading assembly descriptor: assembly.xml [INFO] Building zip: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-dependencies-20170728-0730.zip [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-application --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-application --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.war [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-dependencies-20170728-0730.zip to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG application BOM 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ appng-application-bom --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-bom/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Documentation 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 5 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-documentation --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-documentation --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-documentation --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-documentation --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-documentation --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.jar [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 8 resources [INFO] Copying file appng.css [INFO] Copying file images/application-processing.jpg [INFO] Copying file images/appng.png [INFO] Copying file listing/application.xml [INFO] Copying file listing/pom.xml [INFO] Copying file listing/dependencies.txt [INFO] Copying file listing/pg-employees.xml [INFO] Copying file listing/applist.txt [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/asciidoc/developerguide.adoc [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-documentation --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-documentation --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 8 resources [INFO] Copying file appng.css [INFO] Copying file images/application-processing.jpg [INFO] Copying file images/appng.png [INFO] Copying file listing/application.xml [INFO] Copying file listing/pom.xml [INFO] Copying file listing/dependencies.txt [INFO] Copying file listing/pg-employees.xml [INFO] Copying file listing/applist.txt [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/asciidoc/developerguide.adoc [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Template Assembly Descriptors 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-template-assembly --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-template-assembly --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-template-assembly --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-template-assembly --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-template-assembly --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-template-assembly --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-template-assembly --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-template-assembly --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Template Parent 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ appng-template-parent --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-parent/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appng-application-assembly 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-application-assembly --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-application-assembly --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-application-assembly --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-application-assembly --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-application-assembly --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-application-assembly --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-application-assembly --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-application-assembly --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG application parent 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ appng-application-parent --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-parent/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Archetype - appng-archetype-application 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-archetype-application --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 18 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-archetype-application --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-archetype-application --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-archetype-application --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-archetype-application --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-archetype-application --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-archetype-application --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-archetype-application --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNGizer JAXB API 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] Generating source... [INFO] parsing a schema... [INFO] compiling a schema... [INFO] org/appng/appngizer/model/xml/Application.java [INFO] org/appng/appngizer/model/xml/Applications.java [INFO] org/appng/appngizer/model/xml/Database.java [INFO] org/appng/appngizer/model/xml/Databases.java [INFO] org/appng/appngizer/model/xml/Group.java [INFO] org/appng/appngizer/model/xml/Groups.java [INFO] org/appng/appngizer/model/xml/Home.java [INFO] org/appng/appngizer/model/xml/Link.java [INFO] org/appng/appngizer/model/xml/Linkable.java [INFO] org/appng/appngizer/model/xml/Links.java [INFO] org/appng/appngizer/model/xml/Nameable.java [INFO] org/appng/appngizer/model/xml/ObjectFactory.java [INFO] org/appng/appngizer/model/xml/Package.java [INFO] org/appng/appngizer/model/xml/PackageType.java [INFO] org/appng/appngizer/model/xml/Packages.java [INFO] org/appng/appngizer/model/xml/Permission.java [INFO] org/appng/appngizer/model/xml/Permissions.java [INFO] org/appng/appngizer/model/xml/Platform.java [INFO] org/appng/appngizer/model/xml/Properties.java [INFO] org/appng/appngizer/model/xml/Property.java [INFO] org/appng/appngizer/model/xml/Repositories.java [INFO] org/appng/appngizer/model/xml/Repository.java [INFO] org/appng/appngizer/model/xml/RepositoryMode.java [INFO] org/appng/appngizer/model/xml/RepositoryType.java [INFO] org/appng/appngizer/model/xml/Role.java [INFO] org/appng/appngizer/model/xml/Roles.java [INFO] org/appng/appngizer/model/xml/SchemaVersion.java [INFO] org/appng/appngizer/model/xml/Site.java [INFO] org/appng/appngizer/model/xml/Sites.java [INFO] org/appng/appngizer/model/xml/Subject.java [INFO] org/appng/appngizer/model/xml/Subjects.java [INFO] org/appng/appngizer/model/xml/UserType.java [INFO] org/appng/appngizer/model/xml/Versions.java [INFO] org/appng/appngizer/model/xml/package-info.java [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-appngizer-jaxb --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-appngizer-jaxb --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 34 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-appngizer-jaxb --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-appngizer-jaxb --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-appngizer-jaxb --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-appngizer-jaxb --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-appngizer-jaxb --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-appngizer-jaxb --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNGizer 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-appngizer --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 46 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-appngizer --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-appngizer --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-appngizer --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-war-plugin:3.1.0:war (default-war) @ appng-appngizer --- [INFO] Packaging webapp [INFO] Assembling webapp [appng-appngizer] in [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3] [INFO] Processing war project [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/webapp/META-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3] [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/webapp/WEB-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3] [INFO] Copying webapp resources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/webapp] [INFO] Webapp assembled in [19 msecs] [INFO] Building war: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf-generate-user-manual) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-user-manual.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html-generate-user-manual) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-user-manual.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf-generate-install-platform) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-platform-installation-guide.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html-generate-install-platform) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-platform-installation-guide.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf-generate-setup-guide) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-setup-guide.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html-generate-setup-guide) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-setup-guide.adoc [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-appngizer --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-appngizer --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG appNGizer Maven Plugin 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-appngizer-maven-plugin --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 3 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/classes [INFO] [INFO] --- maven-plugin-plugin:3.5:descriptor (default-descriptor) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to read mojo source files. [INFO] java-javadoc mojo extractor found 0 mojo descriptor. [INFO] java-annotations mojo extractor found 2 mojo descriptors. [INFO] [INFO] --- maven-plugin-plugin:3.5:descriptor (mojo-descriptor) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to read mojo source files. [INFO] java-javadoc mojo extractor found 0 mojo descriptor. [INFO] java-annotations mojo extractor found 2 mojo descriptors. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-appngizer-maven-plugin --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-appngizer-maven-plugin --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-appngizer-maven-plugin --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-appngizer-maven-plugin --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar [INFO] [INFO] --- maven-plugin-plugin:3.5:addPluginArtifactMetadata (default-addPluginArtifactMetadata) @ appng-appngizer-maven-plugin --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-appngizer-maven-plugin --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-appngizer-maven-plugin --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] appNG Parent ....................................... SUCCESS [ 0.452 s] [INFO] appNG Tools ........................................ SUCCESS [ 1.585 s] [INFO] appNG Mail ......................................... SUCCESS [ 0.160 s] [INFO] appNG Forms ........................................ SUCCESS [ 0.318 s] [INFO] appng Formtags ..................................... SUCCESS [ 0.264 s] [INFO] appNG XML-API ...................................... SUCCESS [ 1.801 s] [INFO] appNG public API ................................... SUCCESS [ 1.166 s] [INFO] appNG testsupport .................................. SUCCESS [ 0.294 s] [INFO] appNG Persistence-Tools ............................ SUCCESS [ 0.323 s] [INFO] appNG Search ....................................... SUCCESS [ 0.524 s] [INFO] appNG Core Library ................................. SUCCESS [ 1.596 s] [INFO] appNG Tomcat 7 ..................................... SUCCESS [ 0.197 s] [INFO] appNG Tomcat 8 ..................................... SUCCESS [ 0.138 s] [INFO] appNG Command Line Interface ....................... SUCCESS [ 0.334 s] [INFO] appNG Tag Library .................................. SUCCESS [ 0.394 s] [INFO] appNG Application .................................. SUCCESS [ 4.206 s] [INFO] appNG application BOM .............................. SUCCESS [ 0.055 s] [INFO] appNG Documentation ................................ SUCCESS [ 24.821 s] [INFO] appNG Template Assembly Descriptors ................ SUCCESS [ 0.044 s] [INFO] appNG Template Parent .............................. SUCCESS [ 0.008 s] [INFO] appng-application-assembly ......................... SUCCESS [ 0.033 s] [INFO] appNG application parent ........................... SUCCESS [ 0.002 s] [INFO] Archetype - appng-archetype-application ............ SUCCESS [ 0.048 s] [INFO] appNGizer JAXB API ................................. SUCCESS [ 0.930 s] [INFO] appNGizer .......................................... SUCCESS [ 20.953 s] [INFO] appNG appNGizer Maven Plugin ....................... SUCCESS [ 1.064 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:02 min [INFO] Finished at: 2017-07-28T09:31:57+02:00 [INFO] Final Memory: 266M/1547M [INFO] ------------------------------------------------------------------------ [Pipeline] sh [appng] Running shell script + /var/lib/jenkins/tools/hudson.tasks.Maven_MavenInstallation/Maven_3.5.0/bin/mvn deploy -Djavax.xml.accessExternalSchema=all -DoutFolder=/srv/www/appng.org/appng/builds/stable -Pmaven-central -Pjavadocs [INFO] Scanning for projects... [INFO] Inspecting build with total of 26 modules... [INFO] Installing Nexus Staging features: [INFO] ... total of 26 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order: [INFO] [INFO] appNG Parent [INFO] appNG Tools [INFO] appNG Mail [INFO] appNG Forms [INFO] appng Formtags [INFO] appNG XML-API [INFO] appNG public API [INFO] appNG testsupport [INFO] appNG Persistence-Tools [INFO] appNG Search [INFO] appNG Core Library [INFO] appNG Tomcat 7 [INFO] appNG Tomcat 8 [INFO] appNG Command Line Interface [INFO] appNG Tag Library [INFO] appNG Application [INFO] appNG application BOM [INFO] appNG Documentation [INFO] appNG Template Assembly Descriptors [INFO] appNG Template Parent [INFO] appng-application-assembly [INFO] appNG application parent [INFO] Archetype - appng-archetype-application [INFO] appNGizer JAXB API [INFO] appNGizer [INFO] appNG appNGizer Maven Plugin [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Parent 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-parent --- [INFO] Not executing Javadoc as the project is not a Java classpath-capable package [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-parent >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-parent <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-parent --- [INFO] Loading source files for package org.appng.tools.poi... Loading source files for package org.appng.tools.image... Loading source files for package org.appng.tools.markup... Loading source files for package org.appng.tools... Loading source files for package org.appng.tools.file... Loading source files for package org.appng.tools.zipcode... Loading source files for package org.appng.tools.os... Loading source files for package org.appng.tools.locator... Loading source files for package org.appng.tools.ui... Loading source files for package org.appng.mail... Loading source files for package org.appng.mail.impl... Loading source files for package org.appng.forms... Loading source files for package org.appng.forms.impl... Loading source files for package org.appng.el... Loading source files for package org.appng.formtags... Loading source files for package org.appng.formtags.providers... Loading source files for package org.appng.xml.transformation... Loading source files for package org.appng.xml... Loading source files for package org.appng.xml.application... Loading source files for package org.appng.xml.platform... Loading source files for package org.appng.api... Loading source files for package org.appng.api.messaging... Loading source files for package org.appng.api.auth... Loading source files for package org.appng.api.search... Loading source files for package org.appng.api.model... Loading source files for package org.appng.api.support... Loading source files for package org.appng.api.support.validation... Loading source files for package org.appng.api.support.environment... Loading source files for package org.appng.api.support.field... Loading source files for package org.appng.api.observe.impl... Loading source files for package org.appng.api.observe... Loading source files for package org.appng.testsupport.validation... Loading source files for package org.appng.testsupport.persistence... Loading source files for package org.appng.testsupport... Loading source files for package org.appng.persistence.repository... Loading source files for package org.appng.persistence.dialect... Loading source files for package org.appng.search... Loading source files for package org.appng.search.searcher... Loading source files for package org.appng.search.json... Loading source files for package org.appng.search.indexer... Loading source files for package org.appng.core... Loading source files for package org.appng.core.repository... Loading source files for package org.appng.core.repository.config... Loading source files for package org.appng.core.security.signing... Loading source files for package org.appng.core.security... Loading source files for package org.appng.core.domain... Loading source files for package org.appng.core.service... Loading source files for package org.appng.core.controller... Loading source files for package org.appng.core.controller.messaging... Loading source files for package org.appng.core.controller.filter... Loading source files for package org.appng.core.controller.handler... Loading source files for package org.appng.core.model... Loading source files for package org.appng.core.xml.repository... Loading source files for package org.appng.cli... Loading source files for package org.appng.cli.commands.application... Loading source files for package org.appng.cli.commands.property... Loading source files for package org.appng.cli.commands.permission... Loading source files for package org.appng.cli.commands... Loading source files for package org.appng.cli.commands.applicationrole... Loading source files for package org.appng.cli.commands.repository... Loading source files for package org.appng.cli.commands.template... Loading source files for package org.appng.cli.commands.heartbeat... Loading source files for package org.appng.cli.commands.subject... Loading source files for package org.appng.cli.commands.group... Loading source files for package org.appng.cli.commands.site... Loading source files for package org.appng.cli.prettytable... Loading source files for package org.appng.cli.validators... Loading source files for package org.appng.cli.servlet... Loading source files for package org.appng.taglib... Loading source files for package org.appng.taglib.search... Loading source files for package org.appng.taglib.form... Loading source files for package org.appng.appngizer.model.xml... Loading source files for package org.appng.appngizer.controller... Loading source files for package org.appng.appngizer.model... Loading source files for package org.appng.maven.plugins.appngizer... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/Border.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/Border.BorderLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/Borders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/Borders.BorderBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/ColumnDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/FontBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/WorkBookHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/Captcha.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/ImageMetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/ImageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/XHTML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/XML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/RandomUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/FilePrefixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/FileSuffixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/MagicByteCheck.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/PropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/DefaultZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/GermanyZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/ZipCodeCountry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/ZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/ZipCodeValidatorFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/Command.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/Command.StreamConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/OperatingSystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/StringConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/Coordinate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/GeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/GMapGeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/Chunk.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/Pagination.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/StringNormalizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/Address.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/Attachment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/Mail.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/Mail.RecipientType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/MailException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/MailTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/AttachmentImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/DefaultTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/MailImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/FormUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/FormUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/RequestContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/XSSUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/FormUploadBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/RequestBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/el/ExpressionEvaluator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormConfirmation.FormConfirmationMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormData.FormDataMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormElement.InputTag.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormElement.InputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/LogFormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/RuleValidation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/providers/EmailProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/StyleSheetProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/Transformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/ApplicationPropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/BaseObject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/MarshallService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/MarshallService.AppNGSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/ApplicationInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/DatasourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/PackageInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/PermissionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/TemplateType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Action.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ActionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ApplicationConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ApplicationReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ApplicationRootConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Authentication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Authentications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Bean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/BeanOption.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Condition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Config.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Content.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Data.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/DataConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Datafield.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/DatasourceRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Digits.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Events.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/FieldDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/FieldPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/FieldPermissionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/FieldType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Future.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/GetParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Icon.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Icontype.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ItemType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Label.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Labels.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Linkmode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Linkpanel.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Localization.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Max.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Message.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Messages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/MessageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/MetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Min.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Navigation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/NavigationItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/NotNull.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Output.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/OutputFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/OutputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PageConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PageDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PageReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Pages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PagesReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PanelLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Param.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Params.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ParamType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Past.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Pattern.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PermissionMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PlatformConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/PostParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Resultset.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Rule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Rule.Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Section.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SectionConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SectionDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Sectionelement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SectionelementDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SelectionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SelectionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SessionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SessionParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Size.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Sort.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/SortOrder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Structure.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/StructureDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Textcontents.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/TextElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/TextElement.Xml.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Textelements.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Type.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/UrlParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/UrlSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/UserData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/UserInputField.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/Validation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ValidationGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ValidationGroups.Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/ValidationRule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ActionProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ApplicationConfigProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ApplicationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/AttachmentWebservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/BusinessException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/DataContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/DataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FieldConverter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FieldConverter.DatafieldOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FieldConverter.FieldDefOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FieldProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FieldWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FileUpload.Unit.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/FormValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/GlobalTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/GlobalXMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/InvalidConfigurationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/MessageParam.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/NotBlank.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Options.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/PageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Path.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/PathInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/PermissionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/PermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Platform.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Platform.Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ProcessingException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/RequestSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/RequestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ResultService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ScheduledJob.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Scope.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Session.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/SiteProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/SoapClient.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Taglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ValidationMessages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/ValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/VHostMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/Webservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/XMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/XPathProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/EventHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/EventRegistry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/Messaging.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/Sender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/Serializer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/AuthTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/PasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/BlockingQueueAccessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/Consumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/Document.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/DocumentEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/DocumentProducer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/Producer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Account.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/ApplicationSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Authorizable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/AuthSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/FeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Identifiable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Identifier.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Named.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/NameProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Resource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Resources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/ResourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/ReverseableComparator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/RevisionAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/SimpleProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Site.SiteState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/Versionable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ApplicationConfigProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ApplicationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ApplicationResourceHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/CallableAction.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/CallableDataSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ClassWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ConfigValidationError.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ConfigValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/DatasourceInheritanceHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/DefaultPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/DollarParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/DummyPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ElementHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/FieldProcessorImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/HashParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/HttpHeaderUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/HttpHeaderUtils.HttpResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/I18n.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/LabelSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/MessageSourceChain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionGroupFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionGroupFactory.OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionOwner.OptionOwnerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionOwner.Selector.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/OptionsImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ParameterSupportBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/PositionalXMLReader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/PropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/RequestFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/RequestSupportImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ResourceBundleMessageSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/ResultServiceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/SelectionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/SelectionFactory.Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/SiteAwareObjectInputStream.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/SiteClassLoader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/SortParamSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/XmlGenerator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/XmlGenerator.Entity.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/XSSHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/DefaultValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/FileUploadListValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/FileUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/LocalizedMessageInterpolator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/AttributeWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/DefaultEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/EnvironmentFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/EnvironmentKeys.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/field/FieldConversionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/impl/ObservableDelegate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/Observable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/Observable.Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/Observer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/AttributeValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/DateFieldDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/DifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/TextValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/WritingJsonValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/WritingJsonValidator.JsonWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/WritingXmlValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/XPathDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/ConnectionHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/ConnectionHelper.DBType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/ConnectionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/DatabaseUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/HsqlServer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/HsqlServerFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/TestDataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/TestBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/TestBase.ActionCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/TestBase.DataSourceCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/TestBase.SimpleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/TestBase.SimpleFeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/EnversSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/EnversSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/QueryDslSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/QueryDslSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/SearchQuery.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/SearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/SearchRepositoryFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/SearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/HSQLDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/MySqlTextDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/SQLServer2008Dialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/DocumentProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/SearchProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/DateAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/GermanSearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/SearchFormatter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/SearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/StandardSearcher.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Filter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/FilterConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/FilterData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/FilterItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/FilterItem.DataCounter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Json.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Page.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Part.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Result.Field.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Result.Fields.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Results.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/SearchFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/DocumentIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/FileSystemProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/GlobalIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/IndexConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/IndexConfig.ConfigEntry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/ParseTags.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/SimpleDocument.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/JMXUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/Redirect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/ApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/DatabaseConnectionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/GroupRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/PermissionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/PropertyRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/RepoRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/ResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/RoleRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/SiteApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/SiteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/SubjectRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/TemplateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/TemplateResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/ApplicationPostProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/DatasourceConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/DataSourceFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/HikariCPConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/TomcatJdbcConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/BaseConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/BaseConfig.PrivateKeyFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/BaseConfig.SigningAlgorithm.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/CertChainValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/CertTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/SignatureWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/Signer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/SignerConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/SigningException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/SigningException.ErrorType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/ValidatorConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/BCryptPasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/DefaultPasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/DigestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/DigestValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/SaltedDigest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/SaltedDigestSha1.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/Sha1PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/ApplicationImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/DatabaseConnection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/DatabaseConnection.DatabaseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/GroupImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/ObjectUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/PackageArchiveImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/PermissionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/PersistentPropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/PropertyImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/RepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/ResourceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/RoleImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/SiteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/SiteApplicationPK.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/SiteImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/SubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/TemplateResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/ValidationPatterns.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/ApplicationArchiveProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/ApplicationProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/CacheService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/CoreService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/DatabaseService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/HsqlStarter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/InitializerService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/LdapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/MigrationService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/MigrationService.MigrationStatus.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/PropertySupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/TemplateService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/AppngCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/CacheElementBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/Controller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/HttpHeaders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/PlatformStartup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/SessionListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/Tomcat7Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/Tomcat8Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/JedisBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/JedisReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/JedisSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/MulticastReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/MulticastSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/NodeEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/NodeEvent.MemoryUsage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/NodeEvent.NodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/RabbitMQBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/RabbitMQReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/RabbitMQSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/ReloadSiteEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/RequestNodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/SiteStateEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/TribesReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/TribesSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/CsrfSetupFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/JspExtensionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/MSOfficeUserAgentFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/PageCacheFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/RedirectFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/RedirectFilter.UrlRewriteConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/XSSFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/ErrorPageHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/GuiHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/JspHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/ProxyHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/RequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/RestService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/ServiceRequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/StaticContentHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/AbstractRequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/AccessibleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ApplicationContext.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ApplicationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ApplicationSubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/CacheProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/FeatureProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/InstallablePackage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/JarInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/JarInfo.JarInfoBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/PackageArchive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/PackageVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/PackageWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/PlatformProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/PlatformTransformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryCacheFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryCacheFilesystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryCacheSoap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryScheme.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RepositoryUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/RequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ResponseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ThymeleafProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ThymeleafProcessor.AppNG.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/ZipFileProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/Certification.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetCertificationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetCertificationResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetPackageRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetPackageResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetPackagesRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetPackagesResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetPackageVersionsRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/GetPackageVersionsResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/PackageVersions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/CliBootstrap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/CliCommands.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/CliCore.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/CliEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/ExecutableCliCommand.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/NoSuchRepositoryException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/NoSuchSiteException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/ActivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/BaseApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/BaseApplication.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/DeactivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/DeleteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/InstallApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/ListApplications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/CreateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/DeleteProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/ListProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/PropertyHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/UpdateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/AddPermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/ListPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/RemovePermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/CommandBatch.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/CommandList.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/CommandMain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/FileOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/AddRole.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/ListRoles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/CreateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/DeleteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/ListRepositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/DeleteTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/InstallTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/HeartBeat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/HeartBeat.HeartBeatEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/CreateSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/DeleteSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/ListSubjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/AddGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/CreateGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/DeleteGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/ListGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/CheckSiteRunning.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/CreateSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/DeleteSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/ListSites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/SetSiteActive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/PrettyTable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/TableConstants.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/TableRow.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/validators/FileExists.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/servlet/InstallListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/ApplicationAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/Attribute.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/Attribute.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/If.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/MultiSiteSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/Parameter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/ParameterOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/TagletAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/TagletProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/Searchable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/SearchPart.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Linkable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/SchemaVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/Versions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/AppNGizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/AppNGizerConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/AppNGizerServlet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/ControllerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/DatabaseController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/GroupController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/Jaxb2Marshaller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/PermissionController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/PlatformController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/PlatformPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/RepositoryController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/RoleController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/SessionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/SiteApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/SiteApplicationPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/SiteController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/SitePropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/SubjectController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/UriAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/InstallMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/UploadMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/impl/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/impl/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/impl/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/field/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/field/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/field/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/servlet/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/servlet/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/servlet/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/validators/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/validators/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/validators/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/el/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/el/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/el/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/providers/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/providers/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/providers/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/ColumnDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/Border.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/Border.BorderLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/FontBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/WorkBookHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/Borders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/class-use/Borders.BorderBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/class-use/ImageMetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/class-use/Captcha.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/class-use/ImageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/class-use/XHTML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/class-use/XML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/class-use/RandomUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/class-use/FilePrefixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/class-use/FileSuffixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/class-use/MagicByteCheck.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/class-use/PropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/class-use/ZipCodeValidatorFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/class-use/ZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/class-use/GermanyZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/class-use/DefaultZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/class-use/ZipCodeCountry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/class-use/StringConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/class-use/Command.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/class-use/Command.StreamConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/class-use/OperatingSystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/class-use/GeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/class-use/Coordinate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/class-use/GMapGeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/class-use/StringNormalizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/class-use/Pagination.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/class-use/Chunk.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/MailTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/MailException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/Address.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/Attachment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/Mail.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/class-use/Mail.RecipientType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/class-use/DefaultTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/class-use/MailImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/class-use/AttachmentImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/class-use/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/class-use/XSSUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/class-use/FormUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/class-use/FormUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/class-use/RequestContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/class-use/FormUploadBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/class-use/RequestBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/el/class-use/ExpressionEvaluator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormData.FormDataMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/RuleValidation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormElement.InputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormElement.InputTag.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormConfirmation.FormConfirmationMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/LogFormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/class-use/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/providers/class-use/EmailProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/class-use/Transformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/class-use/StyleSheetProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/class-use/BaseObject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/class-use/ApplicationPropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/class-use/MarshallService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/class-use/MarshallService.AppNGSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/ApplicationInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/PermissionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/TemplateType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/DatasourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/class-use/PackageInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Digits.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Config.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Max.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Past.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SectionConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PagesReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/UrlSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/FieldPermissionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ValidationRule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Min.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ActionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/BeanOption.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/TextElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/TextElement.Xml.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Messages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ApplicationRootConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/GetParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/DatasourceRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PlatformConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ParamType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Param.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Authentications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Sectionelement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PostParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SessionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/StructureDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Sort.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Future.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Pattern.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Output.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Linkmode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SelectionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Data.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/NotNull.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Icon.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Section.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Textcontents.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PermissionMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/UserData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Params.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PageReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Textelements.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ItemType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Bean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Datafield.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Pages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Content.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/MessageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/UrlParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SectionelementDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Authentication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Resultset.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SelectionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/UserInputField.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Validation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/OutputFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Structure.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Labels.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Rule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Rule.Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Navigation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Message.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Condition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Label.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PanelLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Events.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ApplicationConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PageDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ValidationGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ValidationGroups.Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/NavigationItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Action.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/DataConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Size.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Localization.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/FieldType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/FieldPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SessionParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Icontype.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/MetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/ApplicationReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/PageConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SortOrder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/SectionDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Linkpanel.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/Type.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/OutputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/class-use/FieldDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/RequestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/InvalidConfigurationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ScheduledJob.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/DataContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FieldWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ProcessingException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Path.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/AttachmentWebservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/SoapClient.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FieldProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/XMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ValidationMessages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ActionProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/NotBlank.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Webservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/BusinessException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/MessageParam.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/GlobalTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FormValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/PermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/XPathProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Platform.Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Platform.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ApplicationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Taglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/PermissionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/GlobalXMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/VHostMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/RequestSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/PageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/PathInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ApplicationConfigProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Scope.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ResultService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Session.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FieldConverter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FieldConverter.FieldDefOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FieldConverter.DatafieldOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/ValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/Options.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/SiteProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/FileUpload.Unit.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/class-use/DataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/Sender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/Serializer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/EventRegistry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/EventHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/class-use/Messaging.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/class-use/AuthTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/class-use/PasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/class-use/Document.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/class-use/Producer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/class-use/DocumentProducer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/class-use/BlockingQueueAccessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/class-use/DocumentEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/class-use/Consumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/NameProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Site.SiteState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/ReverseableComparator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Named.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Account.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/FeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Resource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/ResourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Authorizable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/AuthSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Identifiable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/ApplicationSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Resources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/RevisionAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Identifier.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Versionable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/SimpleProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/class-use/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/DefaultPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/MessageSourceChain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/XmlGenerator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/XmlGenerator.Entity.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionGroupFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionGroupFactory.OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/SiteAwareObjectInputStream.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ApplicationResourceHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ApplicationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ResourceBundleMessageSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/XSSHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/DollarParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ApplicationConfigProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionOwner.Selector.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionOwner.OptionOwnerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ConfigValidationError.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/CallableAction.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ElementHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/HttpHeaderUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/HttpHeaderUtils.HttpResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/SiteClassLoader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/SortParamSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/PropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/RequestFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/DummyPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/I18n.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/OptionsImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/FieldProcessorImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/RequestSupportImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/SelectionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/SelectionFactory.Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/LabelSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ParameterSupportBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ClassWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/DatasourceInheritanceHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/CallableDataSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ConfigValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/PositionalXMLReader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/ResultServiceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/class-use/HashParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/class-use/DefaultValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/class-use/FileUploadListValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/class-use/LocalizedMessageInterpolator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/class-use/FileUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/class-use/EnvironmentKeys.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/class-use/AttributeWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/class-use/DefaultEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/class-use/EnvironmentFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/field/class-use/FieldConversionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/impl/class-use/ObservableDelegate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/class-use/Observable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/class-use/Observable.Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/class-use/Observer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/DateFieldDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/TextValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/DifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/AttributeValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/XPathDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/WritingJsonValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/WritingJsonValidator.JsonWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/class-use/WritingXmlValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/DatabaseUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/HsqlServer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/ConnectionHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/ConnectionHelper.DBType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/ConnectionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/TestDataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/class-use/HsqlServerFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/class-use/TestBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/class-use/TestBase.DataSourceCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/class-use/TestBase.ActionCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/class-use/TestBase.SimpleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/class-use/TestBase.SimpleFeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/QueryDslSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/EnversSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/SearchQuery.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/QueryDslSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/SearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/SearchRepositoryFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/EnversSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/class-use/SearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/class-use/HSQLDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/class-use/MySqlTextDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/class-use/SQLServer2008Dialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/class-use/DocumentProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/class-use/SearchProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/class-use/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/class-use/GermanSearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/class-use/StandardSearcher.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/class-use/SearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/class-use/SearchFormatter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/class-use/DateAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Json.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Filter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/FilterConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Result.Fields.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Result.Field.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/FilterItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/FilterItem.DataCounter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/SearchFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/FilterData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Part.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Results.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Page.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/class-use/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/SimpleDocument.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/IndexConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/IndexConfig.ConfigEntry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/FileSystemProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/GlobalIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/DocumentIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/class-use/ParseTags.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/class-use/JMXUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/class-use/Redirect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/PropertyRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/SubjectRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/ResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/RoleRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/TemplateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/PermissionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/RepoRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/SiteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/ApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/SiteApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/GroupRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/TemplateResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/class-use/DatabaseConnectionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/class-use/TomcatJdbcConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/class-use/DatasourceConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/class-use/ApplicationPostProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/class-use/HikariCPConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/class-use/DataSourceFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/SigningException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/SigningException.ErrorType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/Signer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/SignatureWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/BaseConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/BaseConfig.PrivateKeyFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/BaseConfig.SigningAlgorithm.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/CertChainValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/SignerConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/CertTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/class-use/ValidatorConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/SaltedDigest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/BCryptPasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/Sha1PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/DefaultPasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/SaltedDigestSha1.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/DigestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/DigestValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/class-use/PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/RepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/PermissionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/SiteImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/DatabaseConnection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/DatabaseConnection.DatabaseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/GroupImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/ValidationPatterns.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/SiteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/RoleImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/ApplicationImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/PersistentPropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/SubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/PackageArchiveImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/SiteApplicationPK.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/PropertyImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/ObjectUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/TemplateResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/class-use/ResourceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/TemplateService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/ApplicationProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/HsqlStarter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/PropertySupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/CoreService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/MigrationService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/MigrationService.MigrationStatus.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/DatabaseService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/InitializerService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/LdapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/CacheService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/class-use/ApplicationArchiveProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/Tomcat8Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/Tomcat7Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/HttpHeaders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/Controller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/PlatformStartup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/AppngCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/CacheElementBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/class-use/SessionListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/MulticastSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/ReloadSiteEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/SiteStateEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/TribesSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/NodeEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/NodeEvent.MemoryUsage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/NodeEvent.NodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/JedisSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/RequestNodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/RabbitMQBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/MulticastReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/TribesReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/RabbitMQReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/RabbitMQSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/JedisBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/class-use/JedisReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/PageCacheFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/CsrfSetupFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/XSSFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/JspExtensionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/RedirectFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/RedirectFilter.UrlRewriteConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/class-use/MSOfficeUserAgentFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/RestService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/GuiHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/StaticContentHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/ServiceRequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/ProxyHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/ErrorPageHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/RequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/class-use/JspHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/PlatformProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryCacheSoap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/PackageWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/CacheProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ApplicationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ResponseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryCacheFilesystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ThymeleafProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ThymeleafProcessor.AppNG.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/PlatformTransformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ApplicationContext.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/PackageArchive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/JarInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/JarInfo.JarInfoBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/PackageVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/FeatureProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ZipFileProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/ApplicationSubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/AbstractRequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryCacheFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryScheme.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/AccessibleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/class-use/InstallablePackage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetPackageVersionsResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetPackageResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetCertificationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetPackageRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetPackagesRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/PackageVersions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetCertificationResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/Certification.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetPackageVersionsRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/GetPackagesResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/class-use/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/NoSuchSiteException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/NoSuchRepositoryException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/ExecutableCliCommand.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/CliBootstrap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/CliCommands.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/CliCore.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/class-use/CliEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/BaseApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/BaseApplication.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/InstallApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/DeactivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/ActivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/DeleteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/class-use/ListApplications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/class-use/CreateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/class-use/UpdateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/class-use/PropertyHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/class-use/DeleteProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/class-use/ListProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/class-use/AddPermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/class-use/ListPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/class-use/RemovePermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/class-use/FileOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/class-use/CommandBatch.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/class-use/CommandMain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/class-use/CommandList.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/class-use/AddRole.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/class-use/ListRoles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/class-use/DeleteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/class-use/CreateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/class-use/ListRepositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/class-use/DeleteTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/class-use/InstallTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/class-use/HeartBeat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/class-use/HeartBeat.HeartBeatEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/class-use/ListSubjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/class-use/CreateSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/class-use/DeleteSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/class-use/DeleteGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/class-use/AddGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/class-use/CreateGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/class-use/ListGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/class-use/CheckSiteRunning.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/class-use/ListSites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/class-use/CreateSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/class-use/DeleteSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/class-use/SetSiteActive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/class-use/PrettyTable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/class-use/TableConstants.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/class-use/TableRow.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/validators/class-use/FileExists.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/servlet/class-use/InstallListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/If.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/MultiSiteSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/ApplicationAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/Parameter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/TagletProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/TagletAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/ParameterOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/Attribute.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/class-use/Attribute.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/class-use/Searchable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/class-use/SearchPart.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/class-use/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/class-use/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/class-use/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/class-use/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/class-use/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/class-use/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/SchemaVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Linkable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Versions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/class-use/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/AppNGizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/Jaxb2Marshaller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/DatabaseController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/SiteApplicationPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/PlatformController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/RoleController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/SessionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/GroupController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/PlatformPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/SiteController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/SubjectController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/ControllerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/SitePropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/RepositoryController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/AppNGizerServlet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/AppNGizerConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/SiteApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/PermissionController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/class-use/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/UriAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/class-use/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/class-use/InstallMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/class-use/UploadMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/auth/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/messaging/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/model/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/observe/impl/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/search/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/environment/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/field/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/api/support/validation/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/controller/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/appngizer/model/xml/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/application/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/applicationrole/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/group/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/heartbeat/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/permission/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/property/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/repository/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/site/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/subject/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/commands/template/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/prettytable/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/servlet/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/cli/validators/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/filter/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/handler/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/controller/messaging/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/domain/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/model/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/repository/config/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/security/signing/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/service/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/core/xml/repository/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/el/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/forms/impl/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/formtags/providers/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/mail/impl/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/maven/plugins/appngizer/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/dialect/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/persistence/repository/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/indexer/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/json/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/search/searcher/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/form/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/taglib/search/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/persistence/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/testsupport/validation/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/file/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/image/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/locator/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/markup/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/os/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/poi/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/ui/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/tools/zipcode/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/application/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/platform/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/org/appng/xml/transformation/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/target/site/apidocs/help-doc.html... 2 warnings [WARNING] Javadoc Warnings [WARNING] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/RepositoryImpl.java:393: warning - Tag @see:illegal character: "123" in "{@link #getTrustedCertChain()}" [WARNING] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/RepositoryImpl.java:393: warning - Tag @see:illegal character: "64" in "{@link #getTrustedCertChain()}" [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-parent --- [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-parent --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-parent --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/target/appng-parent-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-parent --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/target/appng-parent-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tools 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-tools --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-tools --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 37 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-tools --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 16 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-tools --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 9 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-tools --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.tools.poi.WorkbookTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.471 s - in org.appng.tools.poi.WorkbookTest [INFO] Running org.appng.tools.image.DimensionTest [WARNING] Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0 s - in org.appng.tools.image.DimensionTest [INFO] Running org.appng.tools.image.ImageProcessorTest 2017-07-28 09:32:23,592 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:23,752 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:23,772 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:23,865 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:23,873 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:23,972 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:24,060 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:24,146 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org 2017-07-28 09:32:24,240 INFO [main] org.appng.tools.image.ImageProcessor: Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-05-23 http://www.imagemagick.org [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.901 s - in org.appng.tools.image.ImageProcessorTest [INFO] Running org.appng.tools.markup.XHTMLTest [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 s - in org.appng.tools.markup.XHTMLTest [INFO] Running org.appng.tools.file.MagicByteCheckTest 2017-07-28 09:32:24,368 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.001 2017-07-28 09:32:24,369 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.001 2017-07-28 09:32:24,370 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.000 2017-07-28 09:32:24,371 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.001 2017-07-28 09:32:24,374 DEBUG [main] org.appng.tools.file.MagicByteCheck: File type detected by magic byte (png) is not identical with file extension for file jpg 2017-07-28 09:32:24,374 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.002 2017-07-28 09:32:24,376 DEBUG [main] org.appng.tools.file.MagicByteCheck: File type detected by magic byte (jpg) is not identical with file extension for file gif 2017-07-28 09:32:24,376 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.001 2017-07-28 09:32:24,377 DEBUG [main] org.appng.tools.file.MagicByteCheck: File type detected by magic byte (jpg) is not identical with file extension for file png 2017-07-28 09:32:24,377 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.001 2017-07-28 09:32:24,379 DEBUG [main] org.appng.tools.file.MagicByteCheck: File type detected by magic byte (jpg) is not identical with file extension for file pdf 2017-07-28 09:32:24,379 TRACE [main] org.appng.tools.file.MagicByteCheck: 00:00:00.002 [WARNING] Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.019 s - in org.appng.tools.file.MagicByteCheckTest [INFO] Running org.appng.tools.os.CommandTest 2017-07-28 09:32:24,381 DEBUG [main] org.appng.tools.os.Command : executing: 'ls' [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 s - in org.appng.tools.os.CommandTest [INFO] Running org.appng.tools.locator.GeoLocatorTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.17 s - in org.appng.tools.locator.GeoLocatorTest [INFO] Running org.appng.tools.ui.PaginationTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 s - in org.appng.tools.ui.PaginationTest [INFO] Running org.appng.tools.ui.StringNormalizerTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 s - in org.appng.tools.ui.StringNormalizerTest [INFO] [INFO] Results: [INFO] [WARNING] Tests run: 31, Failures: 0, Errors: 0, Skipped: 2 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-tools --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-tools --- [WARNING] Error fetching link: https://github.com/FasterXML/jackson-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/FasterXML/jackson/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/FasterXML/jackson/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.slf4j.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://sourceforge.net/projects/im4java/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/arimus/jmimemagic/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.tools.poi... Loading source files for package org.appng.tools.image... Loading source files for package org.appng.tools.markup... Loading source files for package org.appng.tools... Loading source files for package org.appng.tools.file... Loading source files for package org.appng.tools.zipcode... Loading source files for package org.appng.tools.os... Loading source files for package org.appng.tools.locator... Loading source files for package org.appng.tools.ui... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/Border.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/Border.BorderLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/Borders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/Borders.BorderBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/ColumnDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/FontBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/WorkBookHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/Captcha.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/ImageMetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/ImageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/XHTML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/XML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/RandomUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/FilePrefixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/FileSuffixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/MagicByteCheck.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/PropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/DefaultZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/GermanyZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/ZipCodeCountry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/ZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/ZipCodeValidatorFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/Command.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/Command.StreamConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/OperatingSystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/StringConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/Coordinate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/GeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/GMapGeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/Chunk.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/Pagination.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/StringNormalizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/FontBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/ColumnDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/Borders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/Borders.BorderBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/WorkBookHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/Border.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/class-use/Border.BorderLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/class-use/ImageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/class-use/Captcha.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/class-use/ImageMetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/class-use/XML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/class-use/XHTML.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/class-use/RandomUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/class-use/PropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/class-use/FileSuffixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/class-use/MagicByteCheck.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/class-use/FilePrefixFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/class-use/DefaultZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/class-use/ZipCodeCountry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/class-use/ZipCodeValidatorFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/class-use/ZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/class-use/GermanyZipCodeValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/class-use/Command.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/class-use/Command.StreamConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/class-use/OperatingSystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/class-use/StringConsumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/class-use/GeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/class-use/GMapGeoLocator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/class-use/Coordinate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/class-use/Chunk.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/class-use/StringNormalizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/class-use/Pagination.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/file/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/image/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/locator/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/markup/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/os/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/poi/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/ui/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/org/appng/tools/zipcode/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-tools >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-tools <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-tools --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-tools --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-tools --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-tools --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-tools --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tools/target/appng-tools-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Mail 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-mail --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-mail --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 11 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-mail --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 3 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-mail --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 2 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-mail --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.mail.MailTest DEBUG: setDebug: JavaMail version 1.4.5 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.208 s - in org.appng.mail.MailTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-mail --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-mail --- [WARNING] Error fetching link: http://kenai.com/projects/javamail/mail/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.slf4j.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.mail... Loading source files for package org.appng.mail.impl... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/Address.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/Attachment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/Mail.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/Mail.RecipientType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/MailException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/MailTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/AttachmentImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/DefaultTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/MailImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/MailTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/Attachment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/Address.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/MailException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/Mail.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/class-use/Mail.RecipientType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/class-use/MailImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/class-use/DefaultTransport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/class-use/AttachmentImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/org/appng/mail/impl/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-mail >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-mail <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-mail --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-mail --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-mail --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-mail --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-mail --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-mail/target/appng-mail-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Forms 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-forms --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-forms --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 12 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-forms --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 3 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-forms --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 5 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-forms --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.forms.XSSUtilTest System property [org.owasp.esapi.opsteam] is not set System property [org.owasp.esapi.devteam] is not set Attempting to load ESAPI.properties via file I/O. Attempting to load ESAPI.properties as resource file via file I/O. Not found in 'org.owasp.esapi.resources' directory or file not readable: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/ESAPI.properties Not found in SystemResource Directory/resourceDirectory: .esapi/ESAPI.properties Not found in 'user.home' (/var/lib/jenkins) directory: /var/lib/jenkins/esapi/ESAPI.properties Loading ESAPI.properties via file I/O failed. Exception was: java.io.FileNotFoundException Attempting to load ESAPI.properties via the classpath. SUCCESSFULLY LOADED ESAPI.properties via the CLASSPATH from '/ (root)' using current thread context class loader! SecurityConfiguration for Validator.ConfigurationFile.MultiValued not found in ESAPI.properties. Using default: false SecurityConfiguration for Validator.ConfigurationFile not found in ESAPI.properties. Using default: validation.properties Attempting to load validation.properties via file I/O. Attempting to load validation.properties as resource file via file I/O. Not found in 'org.owasp.esapi.resources' directory or file not readable: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/validation.properties Not found in SystemResource Directory/resourceDirectory: .esapi/validation.properties Not found in 'user.home' (/var/lib/jenkins) directory: /var/lib/jenkins/esapi/validation.properties Loading validation.properties via file I/O failed. Attempting to load validation.properties via the classpath. validation.properties could not be loaded by any means. fail. Exception was: java.lang.IllegalArgumentException: Failed to load ESAPI.properties as a classloader resource. SecurityConfiguration for ESAPI.printProperties not found in ESAPI.properties. Using default: false SecurityConfiguration for Encryptor.CipherTransformation not found in ESAPI.properties. Using default: AES/CBC/PKCS5Padding SecurityConfiguration for ESAPI.Logger not found in ESAPI.properties. Using default: org.owasp.esapi.reference.JavaLogFactory SecurityConfiguration for Logger.LogApplicationName not found in ESAPI.properties. Using default: true SecurityConfiguration for Logger.LogServerIP not found in ESAPI.properties. Using default: true SecurityConfiguration for Logger.ApplicationName not found in ESAPI.properties. Using default: DefaultName SecurityConfiguration for Encoder.AllowMultipleEncoding not found in ESAPI.properties. Using default: false SecurityConfiguration for Encoder.AllowMixedEncoding not found in ESAPI.properties. Using default: false SecurityConfiguration for Encoder.AllowMultipleEncoding not found in ESAPI.properties. Using default: false SecurityConfiguration for Encoder.AllowMixedEncoding not found in ESAPI.properties. Using default: false [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.219 s - in org.appng.forms.XSSUtilTest [INFO] Running org.appng.forms.FormRequestTest 2017-07-28 09:32:41,589 DEBUG [main] org.appng.forms.impl.RequestBean: tempdir is /tmp 2017-07-28 09:32:41,590 DEBUG [main] org.appng.forms.impl.RequestBean: content type: null 2017-07-28 09:32:41,590 DEBUG [main] org.appng.forms.impl.RequestBean: requestURI: null 2017-07-28 09:32:41,590 DEBUG [main] org.appng.forms.impl.RequestBean: contextPath: null 2017-07-28 09:32:41,591 DEBUG [main] org.appng.forms.impl.RequestBean: servletPath: null 2017-07-28 09:32:41,591 DEBUG [main] org.appng.forms.impl.RequestBean: pathInfo: null 2017-07-28 09:32:41,592 DEBUG [main] org.appng.forms.impl.RequestBean: request method: GET 2017-07-28 09:32:41,595 TRACE [main] org.appng.forms.impl.RequestBean: GET parameter: foo is multi-valued 2017-07-28 09:32:41,595 TRACE [main] org.appng.forms.impl.RequestBean: GET parameter: foo = [bar, 42] 2017-07-28 09:32:41,595 TRACE [main] org.appng.forms.impl.RequestBean: parameter 'foo' is multi-valued, discarding value(s) [42] 2017-07-28 09:32:41,603 DEBUG [main] org.appng.forms.impl.RequestBean: tempdir is /tmp 2017-07-28 09:32:41,603 DEBUG [main] org.appng.forms.impl.RequestBean: content type: multipart/form-data; boundary=foobar 2017-07-28 09:32:41,604 DEBUG [main] org.appng.forms.impl.RequestBean: requestURI: null 2017-07-28 09:32:41,604 DEBUG [main] org.appng.forms.impl.RequestBean: contextPath: null 2017-07-28 09:32:41,604 DEBUG [main] org.appng.forms.impl.RequestBean: servletPath: null 2017-07-28 09:32:41,604 DEBUG [main] org.appng.forms.impl.RequestBean: pathInfo: null 2017-07-28 09:32:41,604 DEBUG [main] org.appng.forms.impl.RequestBean: request method: POST 2017-07-28 09:32:41,631 TRACE [main] org.appng.forms.impl.RequestBean: POST parameter: foo = bar 2017-07-28 09:32:41,633 TRACE [main] org.appng.forms.impl.RequestBean: POST upload parameter: /tmp/5F2ACDC183D81BEFC73E7B7482ECEAA4_44.jpg (size 10551, type: image/jpeg, original name:anonymous.jpg) 2017-07-28 09:32:41,645 DEBUG [main] org.appng.forms.impl.RequestBean: tempdir is /tmp 2017-07-28 09:32:41,646 DEBUG [main] org.appng.forms.impl.RequestBean: content type: multipart/form-data; boundary=foobar 2017-07-28 09:32:41,646 DEBUG [main] org.appng.forms.impl.RequestBean: requestURI: null 2017-07-28 09:32:41,646 DEBUG [main] org.appng.forms.impl.RequestBean: contextPath: null 2017-07-28 09:32:41,646 DEBUG [main] org.appng.forms.impl.RequestBean: servletPath: null 2017-07-28 09:32:41,646 DEBUG [main] org.appng.forms.impl.RequestBean: pathInfo: null 2017-07-28 09:32:41,646 DEBUG [main] org.appng.forms.impl.RequestBean: request method: POST 2017-07-28 09:32:41,648 TRACE [main] org.appng.forms.impl.RequestBean: POST parameter: foo = bar 2017-07-28 09:32:41,649 TRACE [main] org.appng.forms.impl.RequestBean: POST upload parameter: /tmp/5F2ACDC183D81BEFC73E7B7482ECEAA4_45.jpg (size 10551, type: image/jpeg, original name:anonymous.jpg) [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.201 s - in org.appng.forms.FormRequestTest [INFO] Running org.appng.forms.RequestTest 2017-07-28 09:32:41,651 DEBUG [main] org.appng.forms.impl.RequestBean: adding parameter foo:bar 2017-07-28 09:32:41,651 DEBUG [main] org.appng.forms.impl.RequestBean: adding parameter john:doe 2017-07-28 09:32:41,652 DEBUG [main] org.appng.forms.impl.RequestBean: adding parameter foo:bar [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.appng.forms.RequestTest [INFO] Running org.appng.forms.FormUploadTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.appng.forms.FormUploadTest [INFO] Running org.appng.el.ExpressionEvaluatorTest 2017-07-28 09:32:41,677 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,677 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,678 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,678 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,696 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a eq 5 ? 'is five' : 'is not five'} = is five [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,696 DEBUG [main] org.appng.el.ExpressionEvaluator: ${b eq 5 ? 'is five' : 'is not five'} = is not five [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,697 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a eq null ? 'is null': 'is not null'} = is not null [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,697 DEBUG [main] org.appng.el.ExpressionEvaluator: ${c eq null ? 'is null': 'is not null'} = is null [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,698 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,698 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,699 DEBUG [main] org.appng.el.ExpressionEvaluator: ${map['foo'] eq 'bar'} = true [(a = 5), (b = 6), (SESSION = {foo=5}), (map = {foo=bar})] 2017-07-28 09:32:41,699 DEBUG [main] org.appng.el.ExpressionEvaluator: ${map['foo']} = bar [(a = 5), (b = 6), (SESSION = {foo=5}), (map = {foo=bar})] 2017-07-28 09:32:41,699 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,699 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,699 DEBUG [main] org.appng.el.ExpressionEvaluator: registered function ':asList' with method 'public static java.util.List org.appng.el.ExpressionEvaluatorTest.asList(java.lang.Object[]), 2017-07-28 09:32:41,701 DEBUG [main] org.appng.el.ExpressionEvaluator: ${asList(args)} = [1, 4, 56.0] [(args = [Ljava.lang.Object;@5ccddd20), (a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,701 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,701 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,702 DEBUG [main] org.appng.el.ExpressionEvaluator: ${numbers[0] == 1} = true [(a = 5), (b = 6), (numbers = [I@1ed1993a), (SESSION = {foo=5})] 2017-07-28 09:32:41,703 DEBUG [main] org.appng.el.ExpressionEvaluator: ${numbers[0] + numbers[3]} = 5 [(a = 5), (b = 6), (numbers = [I@1ed1993a), (SESSION = {foo=5})] 2017-07-28 09:32:41,703 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,703 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,707 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.type eq 'ON'} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,708 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.type eq type} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,708 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.type eq 'OFF'} = false [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,709 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.dummies[0].type eq dummy.type} = false [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,709 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.foo eq 42} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,709 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.bar eq 'bar'} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,712 DEBUG [main] org.appng.el.ExpressionEvaluator: ${empty dummy.dummies[0].dummies} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,713 DEBUG [main] org.appng.el.ExpressionEvaluator: ${dummy.dummies[0].foo eq 23} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,713 DEBUG [main] org.appng.el.ExpressionEvaluator: registered function ':size' with method 'public static int org.appng.el.ExpressionEvaluatorTest.size(java.util.Collection), 2017-07-28 09:32:41,713 DEBUG [main] org.appng.el.ExpressionEvaluator: ${size(dummy.dummies) eq 1} = true [(dummy = foo=42, bar=null, dummies=[foo=23, bar=null, dummies=null]), (a = 5), (b = 6), (SESSION = {foo=5}), (type = ON)] 2017-07-28 09:32:41,713 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,714 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,714 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,714 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,714 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'site-id' of type 'java.lang.String' to value '' 2017-07-28 09:32:41,714 DEBUG [main] org.appng.el.ExpressionEvaluator: ${site-id eq ''} = true [(a = 5), (b = 6), (SESSION = {foo=5}), (site-id = )] true 2017-07-28 09:32:41,715 DEBUG [main] org.appng.el.ExpressionEvaluator: ${site-id} = 0 [(a = 5), (b = 6), (SESSION = {foo=5}), (site-id = )] 0 2017-07-28 09:32:41,715 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,716 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,716 DEBUG [main] org.appng.el.ExpressionEvaluator: ${c eq null} = true [(a = 5), (b = 6), (SESSION = {foo=5})] true 2017-07-28 09:32:41,716 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,716 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,717 DEBUG [main] org.appng.el.ExpressionEvaluator: ${c eq null} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,717 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a eq c} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,717 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a eq null} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,717 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,717 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.String' to value '1' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'A' of type 'java.lang.String' to value '3' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'ab' of type 'java.lang.String' to value '5' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'aB' of type 'java.lang.String' to value '6' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a_b' of type 'java.lang.String' to value '7' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a_' of type 'java.lang.String' to value '2' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'A_' of type 'java.lang.String' to value '4' 2017-07-28 09:32:41,718 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'aB_' of type 'java.lang.String' to value '8' 2017-07-28 09:32:41,718 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a} = 1 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,719 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a_} = 2 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,719 DEBUG [main] org.appng.el.ExpressionEvaluator: ${A} = 3 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,719 DEBUG [main] org.appng.el.ExpressionEvaluator: ${A_} = 4 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,719 DEBUG [main] org.appng.el.ExpressionEvaluator: ${ab} = 5 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,720 DEBUG [main] org.appng.el.ExpressionEvaluator: ${aB} = 6 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,720 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a_b} = 7 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,720 DEBUG [main] org.appng.el.ExpressionEvaluator: ${aB_} = 8 [(a = 1), (A = 3), (ab = 5), (aB = 6), (b = 6), (a_b = 7), (SESSION = {foo=5}), (a_ = 2), (A_ = 4), (aB_ = 8)] 2017-07-28 09:32:41,721 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,721 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,721 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a == b} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,722 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a < b} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,722 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a <= b} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,723 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a > b} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,724 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a >= b} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,724 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a eq b} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,724 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a ne b} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,725 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a lt b} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,725 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a gt b} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,725 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,725 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,726 DEBUG [main] org.appng.el.ExpressionEvaluator: ${uizuihm eq null} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,726 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,727 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,727 DEBUG [main] org.appng.el.ExpressionEvaluator: ${1 eq 2} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,727 DEBUG [main] org.appng.el.ExpressionEvaluator: ${1 eq 2-1} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,727 DEBUG [main] org.appng.el.ExpressionEvaluator: ${1 eq 2-1} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,728 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,728 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,728 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,728 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,728 DEBUG [main] org.appng.el.ExpressionEvaluator: registered function ':max' with method 'public static int java.lang.Math.max(int,int), 2017-07-28 09:32:41,728 DEBUG [main] org.appng.el.ExpressionEvaluator: registered function ':min' with method 'public static int java.lang.Math.min(int,int), 2017-07-28 09:32:41,729 DEBUG [main] org.appng.el.ExpressionEvaluator: registered function ':sqrt' with method 'public static double java.lang.Math.sqrt(double), 2017-07-28 09:32:41,729 DEBUG [main] org.appng.el.ExpressionEvaluator: registered function 'ait:sqrt' with method 'public static double java.lang.Math.sqrt(double), 2017-07-28 09:32:41,729 DEBUG [main] org.appng.el.ExpressionEvaluator: ${min(a,b)} = 5 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,732 DEBUG [main] org.appng.el.ExpressionEvaluator: ${max(a,b)} = 6 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,732 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a-b} = -1 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,732 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a+b} = 11 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,733 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a*b} = 30 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,734 DEBUG [main] org.appng.el.ExpressionEvaluator: ${(a*a) - (b/b)} = 24 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,734 DEBUG [main] org.appng.el.ExpressionEvaluator: ${sqrt(25)} = 5.0 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,735 DEBUG [main] org.appng.el.ExpressionEvaluator: ${ait:sqrt(36)} = 6.0 [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,735 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,735 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,735 DEBUG [main] org.appng.el.ExpressionEvaluator: ${SESSION.foo eq 5} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,736 DEBUG [main] org.appng.el.ExpressionEvaluator: ${SESSION['foo'] eq 5} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,736 DEBUG [main] org.appng.el.ExpressionEvaluator: ${SESSION.foo ne null} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,737 DEBUG [main] org.appng.el.ExpressionEvaluator: ${SESSION['bar'] eq 5} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,737 DEBUG [main] org.appng.el.ExpressionEvaluator: ${SESSION.bar eq null} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,738 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,738 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,740 DEBUG [main] org.appng.el.ExpressionEvaluator: ${a.toString() == 5} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,741 DEBUG [main] org.appng.el.ExpressionEvaluator: ${b.toString() == 5} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,741 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'a' of type 'java.lang.Integer' to value '5' 2017-07-28 09:32:41,742 TRACE [main] org.appng.el.ExpressionEvaluator: setting variable 'b' of type 'java.lang.Integer' to value '6' 2017-07-28 09:32:41,742 DEBUG [main] org.appng.el.ExpressionEvaluator: ${1 eq 2} = false [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,742 DEBUG [main] org.appng.el.ExpressionEvaluator: ${1 eq 2-1} = true [(a = 5), (b = 6), (SESSION = {foo=5})] 2017-07-28 09:32:41,743 DEBUG [main] org.appng.el.ExpressionEvaluator: ${1 eq 2-1} = true [(a = 5), (b = 6), (SESSION = {foo=5})] [INFO] Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087 s - in org.appng.el.ExpressionEvaluatorTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 25, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-forms --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-forms --- [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.slf4j.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.mockito.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://www.owasp.org/index.php/Category:OWASP_Enterprise_Security_API/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://jsoup.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.forms... Loading source files for package org.appng.forms.impl... Loading source files for package org.appng.el... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/FormUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/FormUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/RequestContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/XSSUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/FormUploadBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/RequestBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/el/ExpressionEvaluator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/el/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/el/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/el/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/class-use/RequestContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/class-use/FormUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/class-use/FormUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/class-use/XSSUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/class-use/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/class-use/RequestBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/class-use/FormUploadBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/el/class-use/ExpressionEvaluator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/el/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/org/appng/forms/impl/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-forms >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-forms <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-forms --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-forms --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-forms --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-forms --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-forms --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-forms/target/appng-forms-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appng Formtags 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-formtags --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-formtags --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-formtags --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-formtags --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 5 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-formtags --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.formtags.RuleValidationTest 2017-07-28 09:32:51,589 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,590 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,590 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,590 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,591 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,591 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,591 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,591 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,591 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,591 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,592 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,592 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,592 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,592 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,592 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,592 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,593 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,593 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,611 [main] DEBUG org.appng.el.ExpressionEvaluator - ${email('mm@aiticon.de')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,612 [main] DEBUG org.appng.el.ExpressionEvaluator - ${email('_mm@aiticon.de')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,612 [main] DEBUG org.appng.el.ExpressionEvaluator - ${email('mm@aiticon')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,613 [main] DEBUG org.appng.el.ExpressionEvaluator - ${email('@aiticon.de')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,615 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,615 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,615 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,616 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,617 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,619 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(foo,3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,619 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(foo,4)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,620 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(multifoo,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,621 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(multifoo,5)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,621 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(multibar,5)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,622 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,623 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,624 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,625 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCount(upload, 1, 2)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,625 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCount(upload, 1, 0)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,627 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCount(upload, 3, 2)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,629 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,629 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,630 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,631 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,632 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,632 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMax(upload, 3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,633 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMax(upload, 1)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,634 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMax(upload, 0)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,635 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,636 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,637 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,638 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,638 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,639 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMin(upload, 1)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,639 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMin(upload, 5)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,640 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMin(upload, 3)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,641 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,642 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,643 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,644 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,645 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,1,1)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,645 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,1,2)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,646 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,2,1)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,647 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,2,2)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,648 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,3,1)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,652 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,3,2)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,653 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,3,3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,653 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,3,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,654 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,4,3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,654 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(foobar,4,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,656 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,657 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,657 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,657 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,658 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,660 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSize(upload,'500KB','2.5MB')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,661 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSize(upload,'600KB','1.1MB')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,662 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSize(upload,'500KB','0.1MB')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,663 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,664 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,665 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,665 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileType(upload,'jpg,gif,png')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,665 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileType(upload,'tif,pdf')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,669 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,669 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,669 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,669 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,669 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,670 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,671 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,679 [main] DEBUG org.appng.el.ExpressionEvaluator - ${captcha(bar, SESSION.foobar)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,680 [main] DEBUG org.appng.el.ExpressionEvaluator - ${captcha(bar, SESSION['foobar'])} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,681 [main] DEBUG org.appng.el.ExpressionEvaluator - ${captcha(5, SESSION.foobar)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,681 [main] DEBUG org.appng.el.ExpressionEvaluator - ${captcha(5, SESSION['foobar'])} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,683 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,683 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,683 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,683 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,683 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,683 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,684 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,685 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,685 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(foo,1,3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,686 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(foo,4,5)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,686 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multifoo,1,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,687 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multifoo,1,3)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,688 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multifoo,5,7)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,688 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multibar,1,3)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,689 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multibar,5,7)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,690 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,691 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,692 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,692 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,692 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,692 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,692 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals('a','a')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,693 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals('b','b')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,693 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals('a','A')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,694 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals('a',' A')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,695 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,695 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,695 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,695 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,695 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,696 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,696 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,696 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,700 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,701 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,703 [main] DEBUG org.appng.el.ExpressionEvaluator - ${number(foo)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,703 [main] DEBUG org.appng.el.ExpressionEvaluator - ${number(bar)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,704 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,708 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,708 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,708 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,708 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,708 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,708 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,709 [main] DEBUG org.appng.el.ExpressionEvaluator - ${regExp('abc','[a-z]+')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,709 [main] DEBUG org.appng.el.ExpressionEvaluator - ${regExp('abc','[a-z]{4,}')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,711 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,711 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,711 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,712 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,713 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,713 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,713 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,713 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,714 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foo,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,714 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foo,2)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,715 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(multifoo,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,715 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(multifoo,3)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,716 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(multibar,3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,718 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,718 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,718 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,718 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,719 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,720 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,720 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,720 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,720 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(foo,3)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,721 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(foo,4)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,721 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(multifoo,4)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,722 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(multifoo,5)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,722 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(multibar,5)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,725 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,725 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,725 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,726 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,727 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,727 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,727 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,727 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,728 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMax(upload,'850KB')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,728 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMax(upload,'200KB')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,730 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,731 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,732 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMax(upload,'3.5MB')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,732 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMax(upload,'0.1MB')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,734 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,735 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,736 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMin(upload,'500KB')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,736 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMin(upload,'1100KB')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,738 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,739 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,739 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,739 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,739 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,739 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,739 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,740 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMin(upload,'0.5MB')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,740 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMin(upload,'1.1MB')} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,741 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,741 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,742 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,743 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,743 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,743 [main] DEBUG org.appng.el.ExpressionEvaluator - ${string(foo)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,743 [main] DEBUG org.appng.el.ExpressionEvaluator - ${string(bar)} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,744 [main] DEBUG org.appng.el.ExpressionEvaluator - ${string(foobar)} = false [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] 2017-07-28 09:32:51,744 [main] DEBUG org.appng.el.ExpressionEvaluator - ${string('foobar')} = true [(bar = 123), (foobar = 123.45), (multifoo = [a, b, c, d]), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (foo = foo), (SESSION = {foobar=5})] [INFO] Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.442 s - in org.appng.formtags.RuleValidationTest [INFO] Running org.appng.formtags.FormElementRuleTest 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,771 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,772 [main] DEBUG org.appng.el.ExpressionEvaluator - ${email(field)} = false [(field = abc), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,857 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,858 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,858 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,858 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,858 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,858 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size} = false [(field = abc), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,859 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,859 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,859 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,860 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(multivalued,2)} = true [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,861 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,862 [main] DEBUG org.appng.el.ExpressionEvaluator - ${size(multivalued,3)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,864 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,865 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMax(upload,'1KB')} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,866 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,866 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,867 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSizeMin(upload,'2MB')} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,869 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,870 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,870 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,870 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCount(upload,3,5)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,871 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,871 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,871 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,871 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,871 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,872 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMax(upload,1)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,874 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,875 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileCountMin(upload,5)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,876 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,877 [main] DEBUG org.appng.el.ExpressionEvaluator - ${numberFractionDigits(field,2,2)} = false [(field = 12.345), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,878 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,879 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileSize(upload,3,5)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,886 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,886 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,886 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,886 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,887 [main] DEBUG org.appng.el.ExpressionEvaluator - ${fileType(upload,'gif')} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,889 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,890 [main] DEBUG org.appng.el.ExpressionEvaluator - ${captcha(field,'field')} = false [(field = ab), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,891 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,892 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,892 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,892 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,892 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,892 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,892 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(field,3,5)} = false [(field = ab), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,893 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,894 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(field,3,5)} = false [(field = abcdef), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,909 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(field,1,2)} = true [(field = ab), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,910 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,910 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,910 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,910 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,910 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,911 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multivalued,1,2)} = true [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,912 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,913 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,913 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,913 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multivalued,3,5)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,914 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,915 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMinMax(multivalued,0,1)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,916 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,917 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,917 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals(field,'abc')} = true [(field = abc), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,918 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,919 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals(field,field)} = true [(field = abc), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,920 [main] DEBUG org.appng.el.ExpressionEvaluator - ${equals(field,'abc')} = false [(field = abcd), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,922 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,923 [main] DEBUG org.appng.el.ExpressionEvaluator - ${number(field)} = false [(field = abc), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,924 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,925 [main] DEBUG org.appng.el.ExpressionEvaluator - ${regExp(field,'[0-9]{5}')} = false [(field = 1234), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,927 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(field,3)} = false [(field = abcd), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,928 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,928 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,928 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,928 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,928 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,929 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(multivalued,3)} = true [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,930 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,931 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(multivalued,1)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,932 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,933 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,933 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(field,3)} = false [(field = ab), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,934 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(multivalued,2)} = true [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,935 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,935 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,935 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,935 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,935 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,935 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,936 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMin(multivalued,3)} = false [(upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (multivalued = [ab, cd]), (SESSION = {})] 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,941 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,942 [main] DEBUG org.appng.el.ExpressionEvaluator - ${string(field)} = false [(field = +++), (upload = [/var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Jellyfish.jpg (size 775702, type: jpg, original name:upload_1.jpg), /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/src/test/resources/images/Lighthouse.jpg (size 561276, type: jpg, original name:upload_2.jpg)]), (SESSION = {})] [INFO] Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.183 s - in org.appng.formtags.FormElementRuleTest [INFO] Running org.appng.formtags.FormElementTest 2017-07-28 09:32:51,945 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,945 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,945 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,945 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,946 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foobar,5)} = true [(foobar = 12345), (SESSION = {})] 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,951 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,952 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,952 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,952 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,952 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,952 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foobar,5)} = false [(foobar = 123456), (SESSION = {})] 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,953 [main] DEBUG org.appng.el.ExpressionEvaluator - ${email(email)} = false [(SESSION = {}), (email = foobar)] 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,955 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foobar,5)} = true [(foobar = >), (SESSION = {})] 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,957 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foobar,5)} = true [(foobar = 12345), (SESSION = {})] 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,960 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foobar,5)} = true [(foobar = 12345), (SESSION = {})] 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':string' with method 'public static boolean org.appng.formtags.RuleValidation.string(java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':email' with method 'public static boolean org.appng.formtags.RuleValidation.email(java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':equals' with method 'public static boolean org.appng.formtags.RuleValidation.equals(java.lang.String,java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':regExp' with method 'public static boolean org.appng.formtags.RuleValidation.regExp(java.lang.String,java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':number' with method 'public static boolean org.appng.formtags.RuleValidation.number(java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':numberFractionDigits' with method 'public static boolean org.appng.formtags.RuleValidation.numberFractionDigits(java.lang.String,int,int), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':size' with method 'public static boolean org.appng.formtags.RuleValidation.size(java.lang.Object,int), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMax(java.lang.Object,int), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMin(java.lang.Object,int), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':sizeMinMax' with method 'public static boolean org.appng.formtags.RuleValidation.sizeMinMax(java.lang.Object,int,int), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileType' with method 'public static boolean org.appng.formtags.RuleValidation.fileType(java.util.List,java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMin(java.util.List,java.lang.String), 2017-07-28 09:32:51,961 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSizeMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileSizeMax(java.util.List,java.lang.String), 2017-07-28 09:32:51,962 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileSize' with method 'public static boolean org.appng.formtags.RuleValidation.fileSize(java.util.List,java.lang.String,java.lang.String), 2017-07-28 09:32:51,962 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCount' with method 'public static boolean org.appng.formtags.RuleValidation.fileCount(java.util.List,int,int), 2017-07-28 09:32:51,962 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMin' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMin(java.util.List,int), 2017-07-28 09:32:51,962 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':fileCountMax' with method 'public static boolean org.appng.formtags.RuleValidation.fileCountMax(java.util.List,int), 2017-07-28 09:32:51,962 [main] DEBUG org.appng.el.ExpressionEvaluator - registered function ':captcha' with method 'public static boolean org.appng.formtags.RuleValidation.captcha(java.lang.String,java.lang.String), 2017-07-28 09:32:51,962 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sizeMax(foobar,5)} = true [(foobar = 12345), (SESSION = {})] [INFO] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 s - in org.appng.formtags.FormElementTest [INFO] Running org.appng.formtags.providers.EmailProviderTest 2017-07-28 09:32:51,979 [main] DEBUG org.appng.formtags.providers.EmailProvider - sending emails is enabled 2017-07-28 09:32:51,980 [main] DEBUG org.appng.formtags.providers.EmailProvider - sending mail: null [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 s - in org.appng.formtags.providers.EmailProviderTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 53, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-formtags --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-formtags --- [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-tools/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-forms/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-mail/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://jsoup.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.mockito.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.formtags... Loading source files for package org.appng.formtags.providers... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormConfirmation.FormConfirmationMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormData.FormDataMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormElement.InputTag.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormElement.InputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/LogFormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/RuleValidation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/providers/EmailProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/providers/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/providers/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/providers/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/RuleValidation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormElement.InputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormElement.InputTag.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormConfirmation.FormConfirmationMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/FormData.FormDataMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/class-use/LogFormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/providers/class-use/EmailProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/org/appng/formtags/providers/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-formtags >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-formtags <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-formtags --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-formtags --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-formtags --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-formtags --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-formtags --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-formtags/target/appng-formtags-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG XML-API 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-xmlapi --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-xmlapi --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 125 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-xmlapi --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 12 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-xmlapi --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 3 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-xmlapi --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.xml.transformation.StyleSheetProviderTest 2017-07-28 09:33:00,658 DEBUG [main] org.appng.xml.transformation.StyleSheetProvider: stylesheet complete 2017-07-28 09:33:00,658 DEBUG [main] org.appng.xml.transformation.StyleSheetProvider: stylesheet complete [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.45 s - in org.appng.xml.transformation.StyleSheetProviderTest [INFO] Running org.appng.xml.ApplicationPropertyConstantCreatorTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.313 s - in org.appng.xml.ApplicationPropertyConstantCreatorTest [INFO] Running org.appng.xml.MarshallServiceTest 2017-07-28 09:33:01,094 ERROR [main] org.appng.xml.MarshallService : error on line 75, column 38: cvc-complex-type.3.2.2: Attribute 'plugin' is not allowed to appear in element 'authentication'. 2017-07-28 09:33:01,094 ERROR [main] org.appng.xml.MarshallService : error on line 75, column 38: cvc-complex-type.3.2.2: Attribute 'plugin' is not allowed to appear in element 'authentication'. 2017-07-28 09:33:01,095 ERROR [main] org.appng.xml.MarshallService : error on line 78, column 20: cvc-complex-type.2.4.a: Invalid content was found starting with element 'application-url'. One of '{"http://www.appng.org/schema/platform":platform-url, "http://www.appng.org/schema/platform":base-url, "http://www.appng.org/schema/platform":current-url, "http://www.appng.org/schema/platform":output, "http://www.appng.org/schema/platform":textelements, "http://www.appng.org/schema/platform":debug}' is expected. 2017-07-28 09:33:01,095 ERROR [main] org.appng.xml.MarshallService : error on line 78, column 20: cvc-complex-type.2.4.a: Invalid content was found starting with element 'application-url'. One of '{"http://www.appng.org/schema/platform":platform-url, "http://www.appng.org/schema/platform":base-url, "http://www.appng.org/schema/platform":current-url, "http://www.appng.org/schema/platform":output, "http://www.appng.org/schema/platform":textelements, "http://www.appng.org/schema/platform":debug}' is expected. 2017-07-28 09:33:01,097 ERROR [main] org.appng.xml.MarshallService : error on line 78, column 20: unexpected element (uri:"http://www.appng.org/schema/platform", local:"application-url"). Expected elements are <{http://www.appng.org/schema/platform}platform-url>,<{http://www.appng.org/schema/platform}base-url>,<{http://www.appng.org/schema/platform}output>,<{http://www.appng.org/schema/platform}debug>,<{http://www.appng.org/schema/platform}session>,<{http://www.appng.org/schema/platform}output-format>,<{http://www.appng.org/schema/platform}textelements>,<{http://www.appng.org/schema/platform}authentications>,<{http://www.appng.org/schema/platform}current-url>,<{http://www.appng.org/schema/platform}labels> 2017-07-28 09:33:01,097 ERROR [main] org.appng.xml.MarshallService : error on line 78, column 20: unexpected element (uri:"http://www.appng.org/schema/platform", local:"application-url"). Expected elements are <{http://www.appng.org/schema/platform}platform-url>,<{http://www.appng.org/schema/platform}base-url>,<{http://www.appng.org/schema/platform}output>,<{http://www.appng.org/schema/platform}debug>,<{http://www.appng.org/schema/platform}session>,<{http://www.appng.org/schema/platform}output-format>,<{http://www.appng.org/schema/platform}textelements>,<{http://www.appng.org/schema/platform}authentications>,<{http://www.appng.org/schema/platform}current-url>,<{http://www.appng.org/schema/platform}labels> 2017-07-28 09:33:01,099 ERROR [main] org.appng.xml.MarshallService : error on line 94, column 35: cvc-complex-type.3.2.2: Attribute 'plugin' is not allowed to appear in element 'item'. 2017-07-28 09:33:01,099 ERROR [main] org.appng.xml.MarshallService : error on line 94, column 35: cvc-complex-type.3.2.2: Attribute 'plugin' is not allowed to appear in element 'item'. 2017-07-28 09:33:01,100 ERROR [main] org.appng.xml.MarshallService : error on line 100, column 82: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,100 ERROR [main] org.appng.xml.MarshallService : error on line 100, column 82: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,100 ERROR [main] org.appng.xml.MarshallService : error on line 100, column 82: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,100 ERROR [main] org.appng.xml.MarshallService : error on line 100, column 82: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,101 ERROR [main] org.appng.xml.MarshallService : error on line 103, column 95: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,101 ERROR [main] org.appng.xml.MarshallService : error on line 103, column 95: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,101 ERROR [main] org.appng.xml.MarshallService : error on line 103, column 95: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,101 ERROR [main] org.appng.xml.MarshallService : error on line 103, column 95: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,102 ERROR [main] org.appng.xml.MarshallService : error on line 106, column 78: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,102 ERROR [main] org.appng.xml.MarshallService : error on line 106, column 78: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,102 ERROR [main] org.appng.xml.MarshallService : error on line 106, column 78: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,102 ERROR [main] org.appng.xml.MarshallService : error on line 106, column 78: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,103 ERROR [main] org.appng.xml.MarshallService : error on line 109, column 77: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,103 ERROR [main] org.appng.xml.MarshallService : error on line 109, column 77: cvc-enumeration-valid: Value 'plugin' is not facet-valid with respect to enumeration '[site, sites, application, applications, anchor]'. It must be a value from the enumeration. 2017-07-28 09:33:01,103 ERROR [main] org.appng.xml.MarshallService : error on line 109, column 77: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,103 ERROR [main] org.appng.xml.MarshallService : error on line 109, column 77: cvc-attribute.3: The value 'plugin' of attribute 'type' on element 'item' is not valid with respect to its type, 'itemType'. 2017-07-28 09:33:01,104 ERROR [main] org.appng.xml.MarshallService : error on line 114, column 35: cvc-complex-type.3.2.2: Attribute 'plugin' is not allowed to appear in element 'item'. 2017-07-28 09:33:01,104 ERROR [main] org.appng.xml.MarshallService : error on line 114, column 35: cvc-complex-type.3.2.2: Attribute 'plugin' is not allowed to appear in element 'item'. 2017-07-28 09:33:01,104 ERROR [main] org.appng.xml.MarshallService : error on line 119, column 12: cvc-complex-type.2.4.a: Invalid content was found starting with element 'contents'. One of '{"http://www.appng.org/schema/platform":content}' is expected. 2017-07-28 09:33:01,104 ERROR [main] org.appng.xml.MarshallService : error on line 119, column 12: cvc-complex-type.2.4.a: Invalid content was found starting with element 'contents'. One of '{"http://www.appng.org/schema/platform":content}' is expected. 2017-07-28 09:33:01,105 ERROR [main] org.appng.xml.MarshallService : error on line 119, column 12: unexpected element (uri:"http://www.appng.org/schema/platform", local:"contents"). Expected elements are <{http://www.appng.org/schema/platform}navigation>,<{http://www.appng.org/schema/platform}subject>,<{http://www.appng.org/schema/platform}config>,<{http://www.appng.org/schema/platform}content> 2017-07-28 09:33:01,105 ERROR [main] org.appng.xml.MarshallService : error on line 119, column 12: unexpected element (uri:"http://www.appng.org/schema/platform", local:"contents"). Expected elements are <{http://www.appng.org/schema/platform}navigation>,<{http://www.appng.org/schema/platform}subject>,<{http://www.appng.org/schema/platform}config>,<{http://www.appng.org/schema/platform}content> 2017-07-28 09:33:01,107 ERROR [main] org.appng.xml.MarshallService : error on line 151, column 18: cvc-complex-type.2.4.a: Invalid content was found starting with element 'config'. One of '{"http://www.appng.org/schema/platform":params, "http://www.appng.org/schema/platform":condition, "http://www.appng.org/schema/platform":permissions}' is expected. 2017-07-28 09:33:01,107 ERROR [main] org.appng.xml.MarshallService : error on line 151, column 18: cvc-complex-type.2.4.a: Invalid content was found starting with element 'config'. One of '{"http://www.appng.org/schema/platform":params, "http://www.appng.org/schema/platform":condition, "http://www.appng.org/schema/platform":permissions}' is expected. 2017-07-28 09:33:01,114 ERROR [main] org.appng.xml.MarshallService : error on line 302, column 43: cvc-complex-type.2.4.b: The content of element 'datasource' is not complete. One of '{"http://www.appng.org/schema/platform":config}' is expected. 2017-07-28 09:33:01,114 ERROR [main] org.appng.xml.MarshallService : error on line 302, column 43: cvc-complex-type.2.4.b: The content of element 'datasource' is not complete. One of '{"http://www.appng.org/schema/platform":config}' is expected. 2017-07-28 09:33:01,118 ERROR [main] org.appng.xml.MarshallService : error on line 385, column 18: cvc-complex-type.2.4.a: Invalid content was found starting with element 'config'. One of '{"http://www.appng.org/schema/platform":params, "http://www.appng.org/schema/platform":condition, "http://www.appng.org/schema/platform":permissions}' is expected. 2017-07-28 09:33:01,118 ERROR [main] org.appng.xml.MarshallService : error on line 385, column 18: cvc-complex-type.2.4.a: Invalid content was found starting with element 'config'. One of '{"http://www.appng.org/schema/platform":params, "http://www.appng.org/schema/platform":condition, "http://www.appng.org/schema/platform":permissions}' is expected. 2017-07-28 09:33:01,120 ERROR [main] org.appng.xml.MarshallService : error on line 427, column 48: cvc-complex-type.2.4.b: The content of element 'datasource' is not complete. One of '{"http://www.appng.org/schema/platform":config}' is expected. 2017-07-28 09:33:01,120 ERROR [main] org.appng.xml.MarshallService : error on line 427, column 48: cvc-complex-type.2.4.b: The content of element 'datasource' is not complete. One of '{"http://www.appng.org/schema/platform":config}' is expected. 2017-07-28 09:33:01,122 ERROR [main] org.appng.xml.MarshallService : error on line 489, column 18: cvc-complex-type.2.4.a: Invalid content was found starting with element 'config'. One of '{"http://www.appng.org/schema/platform":params, "http://www.appng.org/schema/platform":condition, "http://www.appng.org/schema/platform":permissions}' is expected. 2017-07-28 09:33:01,122 ERROR [main] org.appng.xml.MarshallService : error on line 489, column 18: cvc-complex-type.2.4.a: Invalid content was found starting with element 'config'. One of '{"http://www.appng.org/schema/platform":params, "http://www.appng.org/schema/platform":condition, "http://www.appng.org/schema/platform":permissions}' is expected. 2017-07-28 09:33:01,358 ERROR [main] org.appng.xml.MarshallService : error on org.appng.xml.platform.Platform@5136d012: cvc-complex-type.2.4.b: The content of element 'platform' is not complete. One of '{"http://www.appng.org/schema/platform":config}' is expected. 2017-07-28 09:33:01,358 ERROR [main] org.appng.xml.MarshallService : error on org.appng.xml.platform.Platform@5136d012: cvc-complex-type.2.4.b: The content of element 'platform' is not complete. One of '{"http://www.appng.org/schema/platform":config}' is expected. [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.393 s - in org.appng.xml.MarshallServiceTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-xmlapi --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-xmlapi --- [WARNING] Error fetching link: http://www.slf4j.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.saxonica.com/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [INFO] Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/transformation/Transformer.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/transformation/StyleSheetProvider.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/transformation/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/BaseObject.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/ApplicationPropertyConstantCreator.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/MarshallService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/src/main/java/org/appng/xml/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/ObjectFactory.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/PermissionRef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Datasources.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Template.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Role.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Property.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/PackageInfo.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Permissions.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Properties.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/ApplicationInfo.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/TemplateType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Datasource.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Roles.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/DatasourceType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/Permission.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/application/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Size.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PostParams.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SessionParams.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ObjectFactory.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PanelLocation.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Validation.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Pattern.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/FieldDef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Authentications.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Params.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PagesReference.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Datasources.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Localization.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ValidationGroups.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Template.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Session.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PageReference.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Icontype.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Event.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Content.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/UserData.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Resultset.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Textelements.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/UrlParams.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/MetaData.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Message.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Events.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SortOrder.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Sort.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/GetParams.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Result.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Permissions.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ApplicationReference.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/DataConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/OutputFormat.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Datafield.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/TextElement.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/BeanOption.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Config.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Section.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Max.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PermissionMode.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Platform.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Rule.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/NotNull.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Linkpanel.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Bean.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/UserInputField.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Labels.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ValidationRule.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Output.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Textcontents.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Condition.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ApplicationConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Datasource.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SessionInfo.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/DatasourceRef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/MessageType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/StructureDef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Linkmode.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/NavigationItem.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Selection.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Link.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Structure.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ActionRef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/FieldPermissions.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Label.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ParamType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Permission.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SelectionGroup.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SectionConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Digits.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PlatformConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Pages.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Option.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ItemType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Min.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/FieldType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/FieldPermissionType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SelectionType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Past.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Authentication.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/UrlSchema.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/OutputType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/OptionGroup.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PageDefinition.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Param.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SectionDef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Data.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Subject.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Navigation.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Sectionelement.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/SectionelementDef.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/PageConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Messages.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Icon.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Type.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/FileUpload.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Future.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/ApplicationRootConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb/org/appng/xml/platform/Action.java... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/ApplicationInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/DatasourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/PackageInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/PermissionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/TemplateType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/StyleSheetProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/Transformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/ApplicationPropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/BaseObject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/MarshallService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/MarshallService.AppNGSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Action.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ActionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ApplicationConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ApplicationReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ApplicationRootConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Authentication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Authentications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Bean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/BeanOption.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Condition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Config.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Content.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Data.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/DataConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Datafield.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/DatasourceRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Digits.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Events.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/FieldDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/FieldPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/FieldPermissionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/FieldType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Future.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/GetParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Icon.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Icontype.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ItemType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Label.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Labels.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Linkmode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Linkpanel.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Localization.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Max.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Message.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Messages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/MessageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/MetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Min.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Navigation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/NavigationItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/NotNull.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Output.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/OutputFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/OutputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PageConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PageDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PageReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Pages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PagesReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PanelLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Param.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Params.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ParamType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Past.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Pattern.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PermissionMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PlatformConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/PostParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Resultset.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Rule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Rule.Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Section.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SectionConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SectionDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Sectionelement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SectionelementDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SelectionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SelectionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SessionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SessionParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Size.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Sort.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/SortOrder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Structure.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/StructureDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Textcontents.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/TextElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/TextElement.Xml.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Textelements.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Type.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/UrlParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/UrlSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/UserData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/UserInputField.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/Validation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ValidationGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ValidationGroups.Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/ValidationRule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/class-use/Transformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/class-use/StyleSheetProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/class-use/BaseObject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/class-use/ApplicationPropertyConstantCreator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/class-use/MarshallService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/class-use/MarshallService.AppNGSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/PermissionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/PackageInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/ApplicationInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/TemplateType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/DatasourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Size.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PostParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SessionParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PanelLocation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Validation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Pattern.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/FieldDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Authentications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Params.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PagesReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Datasources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Localization.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ValidationGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ValidationGroups.Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PageReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Icontype.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Content.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/UserData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Resultset.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Textelements.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/UrlParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/MetaData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Message.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Events.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SortOrder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Sort.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/GetParams.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ApplicationReference.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/DataConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/OutputFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Datafield.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/TextElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/TextElement.Xml.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/BeanOption.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Config.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Section.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Max.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PermissionMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Rule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Rule.Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/NotNull.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Linkpanel.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Bean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/UserInputField.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Labels.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ValidationRule.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Output.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Textcontents.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Condition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ApplicationConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Datasource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SessionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/DatasourceRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/MessageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/StructureDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Linkmode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/NavigationItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Structure.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ActionRef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/FieldPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Label.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ParamType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SelectionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SectionConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Digits.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PlatformConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Pages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ItemType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Min.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/FieldType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/FieldPermissionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SelectionType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Past.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Authentication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/UrlSchema.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/OutputType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PageDefinition.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Param.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SectionDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Data.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Navigation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Sectionelement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/SectionelementDef.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/PageConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Messages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Icon.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Type.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Future.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/ApplicationRootConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/class-use/Action.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/application/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/platform/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/org/appng/xml/transformation/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-xmlapi >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-xmlapi <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-xmlapi --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-xmlapi --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-xmlapi --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-xmlapi --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-xmlapi --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/appng-xmlapi-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG public API 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-api --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 6 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-api --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 164 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/model/SimpleProperty.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/model/SimpleProperty.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/model/SimpleProperty.java: Recompile with -Xlint:deprecation for details. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/support/OptionFactory.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/support/OptionFactory.java uses unchecked or unsafe operations. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/main/java/org/appng/api/support/OptionFactory.java: Recompile with -Xlint:unchecked for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-api --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 29 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-api --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 40 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/test-classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/test/java/org/appng/api/support/DatasourceInheritanceTest.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/test/java/org/appng/api/support/DatasourceInheritanceTest.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/src/test/java/org/appng/api/support/DatasourceInheritanceTest.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-api --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.api.ConfigValidatorTest 2017-07-28 09:33:10,732 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for cloneDatasource::datasource 2017-07-28 09:33:10,739 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for cloneCloneDatasource::cloneDatasource 2017-07-28 09:33:10,743 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for enhancedClone::datasource 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override title 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override description 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override permissions 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add parameter newParam 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add new field foo at position 0 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add bean option testOption 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add linkpanel with id nintendo 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override linkpanel with id foo 2017-07-28 09:33:10,747 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for overrideBeanClone::datasource 2017-07-28 09:33:10,750 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override permissions 2017-07-28 09:33:10,750 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override bean id hansolo 2017-07-28 09:33:10,751 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add bean option lucas 2017-07-28 09:33:10,751 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override linkpanel with id foo 2017-07-28 09:33:10,751 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override linkpanel with id jin 2017-07-28 09:33:10,751 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for cloneCloneCloneDatasource::cloneCloneDatasource 2017-07-28 09:33:11,073 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,081 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/linkpanel//link[@target='bar'] 2017-07-28 09:33:11,091 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/linkpanel//link[@target='/page?getParam=5&doesNotExist=7'] 2017-07-28 09:33:11,097 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/linkpanel/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,102 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/linkpanel//link[@target='/fizz'] 2017-07-28 09:33:11,106 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/linkpanel//link[@target='/fizz']/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,111 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,115 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/linkpanel//link[@target='bar'] 2017-07-28 09:33:11,120 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/linkpanel//link[@target='/page?getParam=5&doesNotExist=7'] 2017-07-28 09:33:11,123 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/linkpanel/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,128 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/linkpanel//link[@target='/fizz'] 2017-07-28 09:33:11,131 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/linkpanel//link[@target='/fizz']/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,154 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='enhancedClone']/config/permissions/permission[@ref='testPermission'] 2017-07-28 09:33:11,156 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='enhancedClone']/config/linkpanel/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,159 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='enhancedClone']/config/linkpanel//link[@target='/fizz'] 2017-07-28 09:33:11,162 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='enhancedClone']/config/linkpanel//link[@target='/fizz']/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,165 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='enhancedClone']/config/linkpanel//link[@target='hyrule'] 2017-07-28 09:33:11,168 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,170 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/linkpanel//link[@target='bar'] 2017-07-28 09:33:11,173 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/linkpanel//link[@target='/page?getParam=5&doesNotExist=7'] 2017-07-28 09:33:11,176 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/linkpanel/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,178 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/linkpanel//link[@target='/fizz'] 2017-07-28 09:33:11,181 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/linkpanel//link[@target='/fizz']/permissions/permission[@ref='doesNotExist'] 2017-07-28 09:33:11,213 INFO [main] org.appng.api.support.ConfigValidator: validated application 'application' in 149ms 2017-07-28 09:33:11,254 ERROR [main] org.appng.api.support.ConfigValidator: found errors: No found, application will not work! application.xml: Duplicate permission 'permissionA'. application.xml: Duplicate property 'propa'. application.xml: Duplicate role: User application.xml: The role 'User' references the permission 'permissionB' more than once! application.xml: The role 'User' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneCloneCloneDatasource': linkpanel 'foo' link '/page?getParam=5&doesNotExist=7' points to page 'page' and uses the unknown get-paramter(s) [doesNotExist]. Valid get-parameters are: [getParam] datasource.xml: datasource 'cloneCloneCloneDatasource': linkpanel 'foo' link 'bar' points to an invalid target, must start with '/', '${}' or '?'! datasource.xml: datasource 'cloneCloneCloneDatasource': linkpanel 'jin' link '/fizz' points to the unknown page 'fizz' datasource.xml: datasource 'cloneCloneCloneDatasource': linkpanel 'jin' link '/fizz' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneCloneCloneDatasource': linkpanel 'jin' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneCloneCloneDatasource': references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneCloneDatasource': linkpanel 'foo' link '/page?getParam=5&doesNotExist=7' points to page 'page' and uses the unknown get-paramter(s) [doesNotExist]. Valid get-parameters are: [getParam] datasource.xml: datasource 'cloneCloneDatasource': linkpanel 'foo' link 'bar' points to an invalid target, must start with '/', '${}' or '?'! datasource.xml: datasource 'cloneCloneDatasource': linkpanel 'jin' link '/fizz' points to the unknown page 'fizz' datasource.xml: datasource 'cloneCloneDatasource': linkpanel 'jin' link '/fizz' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneCloneDatasource': linkpanel 'jin' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneCloneDatasource': references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneDatasource': linkpanel 'foo' link '/page?getParam=5&doesNotExist=7' points to page 'page' and uses the unknown get-paramter(s) [doesNotExist]. Valid get-parameters are: [getParam] datasource.xml: datasource 'cloneDatasource': linkpanel 'foo' link 'bar' points to an invalid target, must start with '/', '${}' or '?'! datasource.xml: datasource 'cloneDatasource': linkpanel 'jin' link '/fizz' points to the unknown page 'fizz' datasource.xml: datasource 'cloneDatasource': linkpanel 'jin' link '/fizz' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneDatasource': linkpanel 'jin' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'cloneDatasource': references the unknown permission 'doesNotExist'. datasource.xml: datasource 'datasource', option 'id' references the unknown parameter 'doesNotExist'. Valid parameters are: [dsParam1, dsParam2] datasource.xml: datasource 'datasource': linkpanel 'foo' link '/page?getParam=5&doesNotExist=7' points to page 'page' and uses the unknown get-paramter(s) [doesNotExist]. Valid get-parameters are: [getParam] datasource.xml: datasource 'datasource': linkpanel 'foo' link 'bar' points to an invalid target, must start with '/', '${}' or '?'! datasource.xml: datasource 'datasource': linkpanel 'jin' link '/fizz' points to the unknown page 'fizz' datasource.xml: datasource 'datasource': linkpanel 'jin' link '/fizz' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'datasource': linkpanel 'jin' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'datasource': references the unknown permission 'doesNotExist'. datasource.xml: datasource 'enhancedClone': linkpanel 'jin' link '/fizz' points to the unknown page 'fizz' datasource.xml: datasource 'enhancedClone': linkpanel 'jin' link '/fizz' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'enhancedClone': linkpanel 'jin' references the unknown permission 'doesNotExist'. datasource.xml: datasource 'enhancedClone': linkpanel 'nintendo' link 'hyrule' points to an invalid target, must start with '/', '${}' or '?'! datasource.xml: datasource 'enhancedClone': references the unknown permission 'testPermission'. event.xml: action 'action', option 'id' references the unknown parameter 'doesNotExist'. Valid parameters are: [actionParam2, actionParam1] event.xml: action 'action': references the unknown permission 'doesNotExist'. event.xml: action 'action': the reference to dataSource 'datasource' (from 'datasource.xml') uses the parameter(s) [doesNotExist] which are unknown in the dataSource 'datasource'! Supported parameters are: [dsParam1, dsParam2] event.xml: action 'action2': references the unknown datasource 'doesNotExist'. page.xml: page 'page' references the unknown action 'doesNotExist' (from event 'event'). page.xml: page 'page' references the unknown datasource 'doesNotExist'. page.xml: page 'page' references the unknown event 'doesNotExist'. page.xml: page 'page' references the unknown permission 'doesNotExist'. page.xml: page 'page' the reference to action 'action' (from 'event.xml') uses the parameter(s) [actionParam3] which are unknown in the action 'action'! Supported parameters are: [actionParam2, actionParam1] page.xml: page 'page' the reference to action 'action' uses the unknown parameter(s) [doesNotExist]. Supported parameters are: [getParam, urlParam, postParam] page.xml: page 'page' the reference to dataSource 'datasource' (from 'datasource.xml') uses the parameter(s) [dsParam3] which are unknown in the dataSource 'datasource'! Supported parameters are: [dsParam1, dsParam2] page.xml: page 'page' the reference to dataSource 'datasource' uses the unknown parameter(s) [doesNotExist]. Supported parameters are: [getParam, urlParam, postParam] 2017-07-28 09:33:11,262 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneDatasource']/config/meta-data 2017-07-28 09:33:11,270 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneCloneCloneDatasource']/config/meta-data 2017-07-28 09:33:11,274 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='enhancedClone']/config/meta-data 2017-07-28 09:33:11,276 ERROR [main] org.appng.api.support.ConfigValidator: no node found for xpath: //datasource[@id='cloneDatasource']/config/meta-data [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.144 s - in org.appng.api.ConfigValidatorTest [INFO] Running org.appng.api.auth.AuthToolsTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 s - in org.appng.api.auth.AuthToolsTest [INFO] Running org.appng.api.ConsumerProducerTest waiting 10 ms waiting 20 ms waiting 30 ms waiting 40 ms waiting 50 ms waiting 60 ms waiting 70 ms waiting 80 ms waiting 90 ms no java.lang.String returned after 80 milliseconds [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.503 s - in org.appng.api.ConsumerProducerTest [INFO] Running org.appng.api.XPathProcessorTest [INFO] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.113 s - in org.appng.api.XPathProcessorTest [INFO] Running org.appng.api.DataContainerTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.081 s - in org.appng.api.DataContainerTest [INFO] Running org.appng.api.support.validation.FileUploadValidatorTest 2017-07-28 09:33:12,029 INFO [main] org.hibernate.validator.internal.util.Version: HV000001: Hibernate Validator 5.4.1.Final [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.252 s - in org.appng.api.support.validation.FileUploadValidatorTest [INFO] Running org.appng.api.support.environment.EnvironmentTest [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.106 s - in org.appng.api.support.environment.EnvironmentTest [INFO] Running org.appng.api.support.RequestSupportTest 2017-07-28 09:33:12,486 WARN [main] org.appng.api.support.field.DateFieldConverter: error in field birthDate: can not convert 'null' to type 'java.util.Date' using format 'yyyy.MM.dd' 2017-07-28 09:33:12,490 WARN [main] org.appng.api.support.field.DecimalFieldConverter: error in field savings: can not convert 'null' to type 'java.lang.Double' using format '###,###.###' 2017-07-28 09:33:12,491 WARN [main] org.appng.api.support.field.IntegerFieldConverter: error in field age: can not convert 'null' to type 'java.lang.Long' using format '#' 2017-07-28 09:33:12,495 WARN [main] org.appng.api.support.field.IntegerFieldConverter: error in field age: can not convert 'null' to type 'java.lang.Long' using format '###' [INFO] Tests run: 21, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.161 s - in org.appng.api.support.RequestSupportTest [INFO] Running org.appng.api.support.ResultServiceTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.365 s - in org.appng.api.support.ResultServiceTest [INFO] Running org.appng.api.support.LabelSupportTest [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.021 s - in org.appng.api.support.LabelSupportTest [INFO] Running org.appng.api.support.HttpHeaderUtilsTest [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.052 s - in org.appng.api.support.HttpHeaderUtilsTest [INFO] Running org.appng.api.support.CallableActionTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.04 s - in org.appng.api.support.CallableActionTest [INFO] Running org.appng.api.support.SortParamSupportTest [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 s - in org.appng.api.support.SortParamSupportTest [INFO] Running org.appng.api.support.ScopeTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 s - in org.appng.api.support.ScopeTest [INFO] Running org.appng.api.support.CallableDataSourceTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029 s - in org.appng.api.support.CallableDataSourceTest [INFO] Running org.appng.api.support.MessageSourceChainTest [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.appng.api.support.MessageSourceChainTest [INFO] Running org.appng.api.support.ValidationProviderTest [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.169 s - in org.appng.api.support.ValidationProviderTest [INFO] Running org.appng.api.support.ParameterSupportTest [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 s - in org.appng.api.support.ParameterSupportTest [INFO] Running org.appng.api.support.field.IntegerFieldConverterTest 2017-07-28 09:33:13,254 WARN [main] org.appng.api.support.field.IntegerFieldConverter: error in field object: can not convert '2247483648' to type 'java.lang.Integer' using format '#' 2017-07-28 09:33:13,259 WARN [main] org.appng.api.support.field.IntegerFieldConverter: error in field object: can not convert 'null' to type 'java.lang.Integer' using format '#' [INFO] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 s - in org.appng.api.support.field.IntegerFieldConverterTest [INFO] Running org.appng.api.support.field.ObjectFieldConverterTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s - in org.appng.api.support.field.ObjectFieldConverterTest [INFO] Running org.appng.api.support.field.ListFieldConverterTest [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 s - in org.appng.api.support.field.ListFieldConverterTest [INFO] Running org.appng.api.support.field.FileFieldConverterTest [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 s - in org.appng.api.support.field.FileFieldConverterTest [INFO] Running org.appng.api.support.field.DefaultFieldConverterTest [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.062 s - in org.appng.api.support.field.DefaultFieldConverterTest [INFO] Running org.appng.api.support.field.LinkPanelFieldHandlerTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.appng.api.support.field.LinkPanelFieldHandlerTest [INFO] Running org.appng.api.support.field.DateFieldConverterTest 2017-07-28 09:33:13,384 WARN [main] org.appng.api.support.field.DateFieldConverter: error in field object: can not convert 'null' to type 'java.util.Date' using format 'yyyy-MM-dd HH:mm:ss' [INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 s - in org.appng.api.support.field.DateFieldConverterTest [INFO] Running org.appng.api.support.field.DateFieldConverterDateTimeTest 2017-07-28 09:33:13,436 WARN [main] org.appng.api.support.field.DateFieldConverter: error in field object: can not convert 'null' to type 'org.joda.time.DateTime' using format 'yyyy-MM-dd HH:mm:ss' [INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.051 s - in org.appng.api.support.field.DateFieldConverterDateTimeTest [INFO] Running org.appng.api.support.I18nTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.appng.api.support.I18nTest [INFO] Running org.appng.api.support.OptionsImplTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.appng.api.support.OptionsImplTest [INFO] Running org.appng.api.support.PropertyHolderTest [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.appng.api.support.PropertyHolderTest [INFO] Running org.appng.api.support.ElementHelperTest [WARNING] Tests run: 14, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.046 s - in org.appng.api.support.ElementHelperTest [INFO] Running org.appng.api.support.DatasourceInheritanceTest 2017-07-28 09:33:13,499 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for cloneDatasource::datasource 2017-07-28 09:33:13,500 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for cloneCloneDatasource::cloneDatasource 2017-07-28 09:33:13,502 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for enhancedClone::datasource 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override title 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override description 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override permissions 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add parameter newParam 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add new field foo at position 0 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add bean option testOption 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add linkpanel with id nintendo 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override linkpanel with id foo 2017-07-28 09:33:13,503 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for overrideBeanClone::datasource 2017-07-28 09:33:13,504 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override permissions 2017-07-28 09:33:13,504 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override bean id hansolo 2017-07-28 09:33:13,504 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: add bean option lucas 2017-07-28 09:33:13,504 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override linkpanel with id foo 2017-07-28 09:33:13,504 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: override linkpanel with id jin 2017-07-28 09:33:13,504 INFO [main] org.appng.api.support.ApplicationConfigProviderImpl: process inheritance for cloneCloneCloneDatasource::cloneCloneDatasource [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 s - in org.appng.api.support.DatasourceInheritanceTest [INFO] Running org.appng.api.support.SelectionFactoryTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 s - in org.appng.api.support.SelectionFactoryTest [INFO] Running org.appng.api.support.OptionImplTest [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.appng.api.support.OptionImplTest [INFO] Running org.appng.api.FileUploadTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.appng.api.FileUploadTest [INFO] [INFO] Results: [INFO] [WARNING] Tests run: 219, Failures: 0, Errors: 0, Skipped: 1 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-api --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-api --- [WARNING] Error fetching link: https://appng.org/appng-forms/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-xmlapi/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-tools/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://projects.spring.io/spring-ws/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://sf.net/projects/wsdl4j/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://beanvalidation.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-formtags/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.mockito.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/validator/hibernate-validator/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://lucene.apache.org/lucene-parent/lucene-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.spring.io/spring-data/spring-data-commons/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://jsp.dev.java.net/jsp-api/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/FasterXML/jackson-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/FasterXML/jackson/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/FasterXML/jackson/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.xmlunit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.api... Loading source files for package org.appng.api.messaging... Loading source files for package org.appng.api.auth... Loading source files for package org.appng.api.search... Loading source files for package org.appng.api.model... Loading source files for package org.appng.api.support... Loading source files for package org.appng.api.support.validation... Loading source files for package org.appng.api.support.environment... Loading source files for package org.appng.api.support.field... Loading source files for package org.appng.api.observe.impl... Loading source files for package org.appng.api.observe... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ActionProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ApplicationConfigProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ApplicationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/AttachmentWebservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/BusinessException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/DataContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/DataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FieldConverter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FieldConverter.DatafieldOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FieldConverter.FieldDefOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FieldProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FieldWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FileUpload.Unit.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/FormValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/GlobalTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/GlobalXMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/InvalidConfigurationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/MessageParam.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/NotBlank.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Options.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/PageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Path.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/PathInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/PermissionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/PermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Platform.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Platform.Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ProcessingException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/RequestSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/RequestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ResultService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ScheduledJob.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Scope.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Session.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/SiteProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/SoapClient.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Taglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ValidationMessages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/ValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/VHostMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/Webservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/XMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/XPathProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/EventHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/EventRegistry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/Messaging.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/Sender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/Serializer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/AuthTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/PasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/BlockingQueueAccessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/Consumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/Document.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/DocumentEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/DocumentProducer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/Producer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Account.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/ApplicationSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Authorizable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/AuthSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/FeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Identifiable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Identifier.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Named.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/NameProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Resource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Resources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/ResourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/ReverseableComparator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/RevisionAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/SimpleProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Site.SiteState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/Versionable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ApplicationConfigProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ApplicationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ApplicationResourceHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/CallableAction.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/CallableDataSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ClassWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ConfigValidationError.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ConfigValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/DatasourceInheritanceHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/DefaultPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/DollarParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/DummyPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ElementHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/FieldProcessorImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/HashParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/HttpHeaderUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/HttpHeaderUtils.HttpResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/I18n.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/LabelSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/MessageSourceChain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionGroupFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionGroupFactory.OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionOwner.OptionOwnerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionOwner.Selector.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/OptionsImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ParameterSupportBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/PositionalXMLReader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/PropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/RequestFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/RequestSupportImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ResourceBundleMessageSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/ResultServiceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/SelectionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/SelectionFactory.Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/SiteAwareObjectInputStream.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/SiteClassLoader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/SortParamSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/XmlGenerator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/XmlGenerator.Entity.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/XSSHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/DefaultValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/FileUploadListValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/FileUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/LocalizedMessageInterpolator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/AttributeWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/DefaultEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/EnvironmentFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/EnvironmentKeys.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/field/FieldConversionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/impl/ObservableDelegate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/Observable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/Observable.Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/Observer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/impl/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/impl/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/impl/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/field/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/field/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/field/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ApplicationConfigProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FileUpload.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FileUpload.Unit.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ActionProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FormValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Scope.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/PermissionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Option.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FormProcessProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/DataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/XPathProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/RequestSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ProcessingException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FieldWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/BusinessException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/XMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/NotBlank.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/SiteProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/MessageParam.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/PathInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/InvalidConfigurationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ApplicationException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FieldProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FieldConverter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FieldConverter.FieldDefOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/FieldConverter.DatafieldOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Path.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Platform.Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Platform.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/AttachmentWebservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/GlobalTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Webservice.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/DataContainer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/SoapClient.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ValidationMessages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/GlobalXMLTaglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/PageProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Options.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ResultService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Session.Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/PermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ScheduledJob.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/RequestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/VHostMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Request.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Environment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/ParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/class-use/Taglet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/Serializer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/Receiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/Sender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/EventRegistry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/EventHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/Messaging.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/class-use/Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/class-use/PasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/class-use/AuthTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/class-use/BlockingQueueAccessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/class-use/DocumentEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/class-use/Producer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/class-use/Document.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/class-use/Consumer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/class-use/DocumentProducer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Identifiable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/AuthSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/RevisionAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/SimpleProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Resource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/FeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/ApplicationSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Versionable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Account.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Site.SiteState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Named.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/NameProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Authorizable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/ResourceType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/ReverseableComparator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Identifier.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/class-use/Resources.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionOwner.Selector.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionOwner.OptionOwnerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/MessageSourceChain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ApplicationConfigProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ParameterSupportBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionsImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ResourceBundleMessageSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/LabelSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ConfigValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/CallableDataSource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/XSSHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionGroupFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/OptionGroupFactory.OptionGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/RequestSupportImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/XmlGenerator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/XmlGenerator.Entity.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/SiteAwareObjectInputStream.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/RequestFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ResultServiceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/PositionalXMLReader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/DollarParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/SiteClassLoader.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/SelectionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/SelectionFactory.Selection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ApplicationResourceHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/HttpHeaderUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/HttpHeaderUtils.HttpResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ApplicationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/PropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ElementHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/DummyPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/SortParamSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ClassWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/CallableAction.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/I18n.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/DefaultPermissionProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/HashParameterSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/FieldProcessorImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/ConfigValidationError.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/class-use/DatasourceInheritanceHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/class-use/LocalizedMessageInterpolator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/class-use/FileUploadValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/class-use/DefaultValidationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/class-use/FileUploadListValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/class-use/EnvironmentKeys.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/class-use/EnvironmentFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/class-use/DefaultEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/class-use/AttributeWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/field/class-use/FieldConversionFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/impl/class-use/ObservableDelegate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/class-use/Observer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/class-use/Observable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/class-use/Observable.Event.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/auth/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/messaging/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/model/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/observe/impl/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/search/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/environment/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/field/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/org/appng/api/support/validation/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-api >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-api <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-api --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-api --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-api --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-api --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-api --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-api/target/appng-api-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG testsupport 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-testsupport --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 3 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-testsupport --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 17 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-testsupport --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 6 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-testsupport --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 7 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-testsupport --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.testsupport.validation.WritingJsonValidatorTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.425 s - in org.appng.testsupport.validation.WritingJsonValidatorTest [INFO] Running org.appng.testsupport.validation.DateFieldDifferenceHandlerTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.042 s - in org.appng.testsupport.validation.DateFieldDifferenceHandlerTest [INFO] Running org.appng.testsupport.validation.AttributeValueDifferenceHandlerTest [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 s - in org.appng.testsupport.validation.AttributeValueDifferenceHandlerTest [INFO] Running org.appng.testsupport.validation.TextValueDifferenceHandlerTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 s - in org.appng.testsupport.validation.TextValueDifferenceHandlerTest [INFO] Running org.appng.testsupport.validation.XPathDifferenceHandlerTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 s - in org.appng.testsupport.validation.XPathDifferenceHandlerTest [INFO] Running org.appng.testsupport.SimpleApplicationTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.181 s - in org.appng.testsupport.SimpleApplicationTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 17, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-testsupport --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-testsupport --- [WARNING] Error fetching link: https://appng.org/appng-xmlapi/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-api/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.xmlunit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hsqldb.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.mockito.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/validator/hibernate-validator/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.testsupport.validation... Loading source files for package org.appng.testsupport.persistence... Loading source files for package org.appng.testsupport... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/AttributeValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/DateFieldDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/DifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/TextValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/WritingJsonValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/WritingJsonValidator.JsonWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/WritingXmlValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/XPathDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/ConnectionHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/ConnectionHelper.DBType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/ConnectionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/DatabaseUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/HsqlServer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/HsqlServerFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/TestDataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/TestBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/TestBase.ActionCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/TestBase.DataSourceCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/TestBase.SimpleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/TestBase.SimpleFeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/TextValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/DifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/WritingJsonValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/WritingJsonValidator.JsonWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/XPathDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/DateFieldDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/WritingXmlValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/class-use/AttributeValueDifferenceHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/ConnectionHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/ConnectionHelper.DBType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/TestDataProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/HsqlServer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/ConnectionInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/DatabaseUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/class-use/HsqlServerFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/class-use/TestBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/class-use/TestBase.DataSourceCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/class-use/TestBase.ActionCall.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/class-use/TestBase.SimpleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/class-use/TestBase.SimpleFeatureProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/persistence/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/org/appng/testsupport/validation/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-testsupport >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-testsupport <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-testsupport --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-testsupport --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-testsupport --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-testsupport --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-testsupport --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-testsupport/target/appng-testsupport-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Persistence-Tools 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-persistence --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-persistence --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/java/org/appng/persistence/repository/EnversSearchRepository.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/java/org/appng/persistence/repository/EnversSearchRepository.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/src/main/java/org/appng/persistence/repository/EnversSearchRepository.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-persistence --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-persistence --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 11 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-persistence --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.persistence.repository.QueryDslSearchRepositoryTest [Server@4566e5bd]: Startup sequence initiated from main() method [Server@4566e5bd]: Could not load properties from file [Server@4566e5bd]: Using cli/default properties only [Server@4566e5bd]: Initiating startup sequence... [Server@4566e5bd]: Server socket opened successfully in 6 ms. 2017-07-28 09:33:41,184 INFO [HSQLDB Server @4566e5bd] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Checkpoint start 2017-07-28 09:33:41,185 INFO [HSQLDB Server @4566e5bd] hsqldb.db.HSQLDB5D881D80AA.ENGINE: checkpointClose start 2017-07-28 09:33:41,193 INFO [HSQLDB Server @4566e5bd] hsqldb.db.HSQLDB5D881D80AA.ENGINE: checkpointClose synched 2017-07-28 09:33:41,207 INFO [HSQLDB Server @4566e5bd] hsqldb.db.HSQLDB5D881D80AA.ENGINE: checkpointClose script done 2017-07-28 09:33:41,235 INFO [HSQLDB Server @4566e5bd] hsqldb.db.HSQLDB5D881D80AA.ENGINE: checkpointClose end 2017-07-28 09:33:41,236 INFO [HSQLDB Server @4566e5bd] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Checkpoint end - txts: 1 [Server@4566e5bd]: Database [index=0, id=0, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 384 ms. [Server@4566e5bd]: Startup sequence completed in 392 ms. [Server@4566e5bd]: 2017-07-28 09:33:41.252 HSQLDB server 2.4.0 is online on port 9001 [Server@4566e5bd]: To close normally, connect and execute SHUTDOWN SQL [Server@4566e5bd]: From command line, use [Ctrl]+[C] to abort abruptly 2017-07-28 09:33:41,458 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2a17b7b6: startup date [Fri Jul 28 09:33:41 CEST 2017]; root of context hierarchy 2017-07-28 09:33:41,861 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:41,862 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:41,882 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:42,013 INFO [main] org.hibernate.Version : HHH000412: Hibernate Core {5.2.10.Final} 2017-07-28 09:33:42,014 INFO [main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found 2017-07-28 09:33:42,057 INFO [main] org.hibernate.annotations.common.Version: HCANN000001: Hibernate Commons Annotations {5.0.1.Final} 2017-07-28 09:33:42,272 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:42,273 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:42,274 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:42,274 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:42,277 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:42,436 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:42,522 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:43,523 INFO [main] org.hibernate.validator.internal.util.Version: HV000001: Hibernate Validator 5.4.1.Final 2017-07-28 09:33:43,933 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@726aa968] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:43,935 WARN [main] org.hibernate.tool.schema.internal.ExceptionHandlerLoggedImpl: GenerationTarget encountered exception accepting command : Error executing DDL via JDBC Statement org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL via JDBC Statement at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:67) at org.hibernate.tool.schema.internal.SchemaDropperImpl.applySqlString(SchemaDropperImpl.java:375) at org.hibernate.tool.schema.internal.SchemaDropperImpl.applySqlStrings(SchemaDropperImpl.java:359) at org.hibernate.tool.schema.internal.SchemaDropperImpl.applyConstraintDropping(SchemaDropperImpl.java:331) at org.hibernate.tool.schema.internal.SchemaDropperImpl.dropFromMetadata(SchemaDropperImpl.java:230) at org.hibernate.tool.schema.internal.SchemaDropperImpl.performDrop(SchemaDropperImpl.java:154) at org.hibernate.tool.schema.internal.SchemaDropperImpl.doDrop(SchemaDropperImpl.java:126) at org.hibernate.tool.schema.internal.SchemaDropperImpl.doDrop(SchemaDropperImpl.java:112) at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:144) at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:72) at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:309) at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:452) at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:889) at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:151) at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:353) at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:370) at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:359) at org.appng.persistence.repository.RepositoryConfiguration.entityManagerFactory(RepositoryConfiguration.java:70) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.CGLIB$entityManagerFactory$2() at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94$$FastClassBySpringCGLIB$$31b4b22a.invoke() at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:358) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.entityManagerFactory() at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162) at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1173) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1067) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.obtainBeanInstanceFromFactory(ConfigurationClassEnhancer.java:389) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.entityManagerFactory() at org.appng.persistence.repository.RepositoryConfiguration.transactionManager(RepositoryConfiguration.java:54) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.CGLIB$transactionManager$1() at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94$$FastClassBySpringCGLIB$$31b4b22a.invoke() at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:358) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.transactionManager() at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162) at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1173) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1067) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:761) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:543) at org.appng.persistence.repository.QueryDslSearchRepositoryTest.setup(QueryDslSearchRepositoryTest.java:42) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: PUBLIC.ENVERSTESTENTITY_AUD at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source) at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source) at org.hsqldb.jdbc.JDBCStatement.fetchResult(Unknown Source) at org.hsqldb.jdbc.JDBCStatement.execute(Unknown Source) at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:54) ... 88 more 2017-07-28 09:33:43,939 WARN [main] org.hibernate.tool.schema.internal.ExceptionHandlerLoggedImpl: GenerationTarget encountered exception accepting command : Error executing DDL via JDBC Statement org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL via JDBC Statement at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:67) at org.hibernate.tool.schema.internal.SchemaDropperImpl.applySqlString(SchemaDropperImpl.java:375) at org.hibernate.tool.schema.internal.SchemaDropperImpl.applySqlStrings(SchemaDropperImpl.java:359) at org.hibernate.tool.schema.internal.SchemaDropperImpl.applyConstraintDropping(SchemaDropperImpl.java:331) at org.hibernate.tool.schema.internal.SchemaDropperImpl.dropFromMetadata(SchemaDropperImpl.java:230) at org.hibernate.tool.schema.internal.SchemaDropperImpl.performDrop(SchemaDropperImpl.java:154) at org.hibernate.tool.schema.internal.SchemaDropperImpl.doDrop(SchemaDropperImpl.java:126) at org.hibernate.tool.schema.internal.SchemaDropperImpl.doDrop(SchemaDropperImpl.java:112) at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:144) at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:72) at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:309) at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:452) at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:889) at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:151) at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:353) at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:370) at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:359) at org.appng.persistence.repository.RepositoryConfiguration.entityManagerFactory(RepositoryConfiguration.java:70) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.CGLIB$entityManagerFactory$2() at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94$$FastClassBySpringCGLIB$$31b4b22a.invoke() at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:358) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.entityManagerFactory() at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162) at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1173) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1067) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.obtainBeanInstanceFromFactory(ConfigurationClassEnhancer.java:389) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.entityManagerFactory() at org.appng.persistence.repository.RepositoryConfiguration.transactionManager(RepositoryConfiguration.java:54) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.CGLIB$transactionManager$1() at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94$$FastClassBySpringCGLIB$$31b4b22a.invoke() at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:358) at org.appng.persistence.repository.RepositoryConfiguration$$EnhancerBySpringCGLIB$$84b4fc94.transactionManager() at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162) at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1173) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1067) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:761) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:543) at org.appng.persistence.repository.QueryDslSearchRepositoryTest.setup(QueryDslSearchRepositoryTest.java:42) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: PUBLIC.TESTENTITY_AUD at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source) at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source) at org.hsqldb.jdbc.JDBCStatement.fetchResult(Unknown Source) at org.hsqldb.jdbc.JDBCStatement.execute(Unknown Source) at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:54) ... 88 more 2017-07-28 09:33:43,945 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@10f7c76] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:43,953 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:43,964 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:44,537 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:44,635 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@2a17b7b6: startup date [Fri Jul 28 09:33:41 CEST 2017]; root of context hierarchy 2017-07-28 09:33:44,636 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:44,792 INFO [HSQLDB Connection @3dce27e] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Database closed [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.208 s - in org.appng.persistence.repository.QueryDslSearchRepositoryTest [INFO] Running org.appng.persistence.repository.SearchQueryTest [Server@4566e5bd]: Initiating shutdown sequence... [Server@3f63a513]: Startup sequence initiated from main() method [Server@3f63a513]: Could not load properties from file [Server@3f63a513]: Using cli/default properties only [Server@3f63a513]: Initiating startup sequence... [Server@3f63a513]: Server socket opened successfully in 0 ms. [Server@3f63a513]: Database [index=0, id=1, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 64 ms. [Server@3f63a513]: Startup sequence completed in 65 ms. [Server@3f63a513]: 2017-07-28 09:33:44.965 HSQLDB server 2.4.0 is online on port 9001 [Server@3f63a513]: To close normally, connect and execute SHUTDOWN SQL [Server@3f63a513]: From command line, use [Ctrl]+[C] to abort abruptly [Server@4566e5bd]: Shutdown sequence completed in 101 ms. [Server@4566e5bd]: 2017-07-28 09:33:44.998 SHUTDOWN : System.exit() was not called 2017-07-28 09:33:45,043 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:45,056 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:45,056 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:45,057 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:45,057 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:45,057 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:45,160 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:45,174 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:45,464 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@26457986] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:45,495 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2dff7085] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:45,503 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:45,520 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:45,726 INFO [HSQLDB Connection @3d6340ee] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Database closed [Server@3f63a513]: Initiating shutdown sequence... [Server@349c4d1c]: Startup sequence initiated from main() method [Server@349c4d1c]: Could not load properties from file [Server@349c4d1c]: Using cli/default properties only [Server@349c4d1c]: Initiating startup sequence... [Server@349c4d1c]: Server socket opened successfully in 0 ms. [Server@349c4d1c]: Database [index=0, id=2, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 55 ms. [Server@349c4d1c]: Startup sequence completed in 55 ms. [Server@349c4d1c]: 2017-07-28 09:33:45.901 HSQLDB server 2.4.0 is online on port 9001 [Server@349c4d1c]: To close normally, connect and execute SHUTDOWN SQL [Server@349c4d1c]: From command line, use [Ctrl]+[C] to abort abruptly [Server@3f63a513]: Shutdown sequence completed in 100 ms. [Server@3f63a513]: 2017-07-28 09:33:45.933 SHUTDOWN : System.exit() was not called 2017-07-28 09:33:45,957 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:45,971 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:45,971 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:45,971 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:45,972 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:45,972 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:46,078 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:46,086 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:46,317 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1af677f8] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:46,335 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7a55fb81] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:46,345 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:46,355 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:46,518 INFO [HSQLDB Connection @cdc8063] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Database closed [Server@349c4d1c]: Initiating shutdown sequence... [Server@1883871b]: Startup sequence initiated from main() method [Server@1883871b]: Could not load properties from file [Server@1883871b]: Using cli/default properties only [Server@1883871b]: Initiating startup sequence... [Server@1883871b]: Server socket opened successfully in 0 ms. [Server@1883871b]: Database [index=0, id=3, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 45 ms. [Server@1883871b]: Startup sequence completed in 46 ms. [Server@1883871b]: 2017-07-28 09:33:46.669 HSQLDB server 2.4.0 is online on port 9001 [Server@1883871b]: To close normally, connect and execute SHUTDOWN SQL [Server@1883871b]: From command line, use [Ctrl]+[C] to abort abruptly [Server@349c4d1c]: Shutdown sequence completed in 100 ms. [Server@349c4d1c]: 2017-07-28 09:33:46.721 SHUTDOWN : System.exit() was not called 2017-07-28 09:33:46,737 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:46,748 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:46,748 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:46,749 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:46,749 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:46,749 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:46,852 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:46,859 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:47,073 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2513155a] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:47,091 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6313b441] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:47,096 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:47,102 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:47,262 INFO [HSQLDB Connection @3c237ee5] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Database closed [Server@22aee519]: Startup sequence initiated from main() method [Server@22aee519]: Could not load properties from file [Server@22aee519]: Using cli/default properties only [Server@1883871b]: Initiating shutdown sequence... [Server@22aee519]: Initiating startup sequence... [Server@22aee519]: Server socket opened successfully in 0 ms. [Server@22aee519]: Database [index=0, id=4, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 86 ms. [Server@22aee519]: Startup sequence completed in 86 ms. [Server@22aee519]: 2017-07-28 09:33:47.452 HSQLDB server 2.4.0 is online on port 9001 [Server@22aee519]: To close normally, connect and execute SHUTDOWN SQL [Server@22aee519]: From command line, use [Ctrl]+[C] to abort abruptly [Server@1883871b]: Shutdown sequence completed in 101 ms. [Server@1883871b]: 2017-07-28 09:33:47.466 SHUTDOWN : System.exit() was not called 2017-07-28 09:33:47,474 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:47,481 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:47,481 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:47,481 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:47,481 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:47,481 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:47,584 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:47,589 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:47,775 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3ccfac29] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:47,793 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5c41b8d8] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:47,798 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:47,806 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:47,969 INFO [HSQLDB Connection @5abffa81] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Database closed [Server@1d9af731]: Startup sequence initiated from main() method [Server@1d9af731]: Could not load properties from file [Server@1d9af731]: Using cli/default properties only [Server@22aee519]: Initiating shutdown sequence... [Server@1d9af731]: Initiating startup sequence... [Server@1d9af731]: Server socket opened successfully in 0 ms. [Server@1d9af731]: Database [index=0, id=5, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 42 ms. [Server@1d9af731]: Startup sequence completed in 42 ms. [Server@1d9af731]: 2017-07-28 09:33:48.116 HSQLDB server 2.4.0 is online on port 9001 [Server@1d9af731]: To close normally, connect and execute SHUTDOWN SQL [Server@1d9af731]: From command line, use [Ctrl]+[C] to abort abruptly [Server@22aee519]: Shutdown sequence completed in 100 ms. [Server@22aee519]: 2017-07-28 09:33:48.174 SHUTDOWN : System.exit() was not called 2017-07-28 09:33:48,181 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:48,188 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:48,188 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:48,189 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:48,189 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:48,189 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:48,292 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:48,297 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:48,470 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4bf10fe1] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:48,485 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@543d2ef3] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:48,489 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:48,494 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:48,655 INFO [HSQLDB Connection @44e54bb9] hsqldb.db.HSQLDB5D881D80AA.ENGINE: Database closed [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.859 s - in org.appng.persistence.repository.SearchQueryTest [INFO] Running org.appng.persistence.repository.EnversSearchRepositoryTest [Server@311a09b2]: Startup sequence initiated from main() method [Server@311a09b2]: Could not load properties from file [Server@311a09b2]: Using cli/default properties only [Server@1d9af731]: Initiating shutdown sequence... [Server@311a09b2]: Initiating startup sequence... [Server@311a09b2]: Server socket opened successfully in 0 ms. [Server@311a09b2]: Database [index=0, id=6, db=file:target/hsql/hsql-testdb/, alias=hsql-testdb] opened successfully in 26 ms. [Server@311a09b2]: Startup sequence completed in 27 ms. [Server@311a09b2]: 2017-07-28 09:33:48.788 HSQLDB server 2.4.0 is online on port 9001 [Server@311a09b2]: To close normally, connect and execute SHUTDOWN SQL [Server@311a09b2]: From command line, use [Ctrl]+[C] to abort abruptly [Server@1d9af731]: Shutdown sequence completed in 100 ms. [Server@1d9af731]: 2017-07-28 09:33:48.861 SHUTDOWN : System.exit() was not called 2017-07-28 09:33:48,864 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@4cacccbf: startup date [Fri Jul 28 09:33:48 CEST 2017]; root of context hierarchy 2017-07-28 09:33:48,940 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:48,940 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:48,940 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:48,947 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:48,947 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:48,947 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:48,947 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:48,947 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:49,053 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:49,059 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:49,257 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6e617c0e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:49,273 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@9a07409] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:49,278 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:49,282 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:49,374 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:49,448 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@4cacccbf: startup date [Fri Jul 28 09:33:48 CEST 2017]; root of context hierarchy 2017-07-28 09:33:49,448 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.69 s - in org.appng.persistence.repository.EnversSearchRepositoryTest [INFO] Running org.appng.persistence.repository.SearchRepositoryTest 2017-07-28 09:33:49,453 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@1c5cd2ea: startup date [Fri Jul 28 09:33:49 CEST 2017]; root of context hierarchy 2017-07-28 09:33:49,502 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:49,502 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:49,502 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:49,510 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:49,510 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:49,510 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:49,510 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:49,510 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:49,613 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:49,617 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:49,798 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1756a471] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:49,801 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2190508d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:49,804 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:49,808 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:49,858 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:49,871 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@1c5cd2ea: startup date [Fri Jul 28 09:33:49 CEST 2017]; root of context hierarchy 2017-07-28 09:33:49,872 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:49,875 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2f3c7b24: startup date [Fri Jul 28 09:33:49 CEST 2017]; root of context hierarchy 2017-07-28 09:33:49,915 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:49,916 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:49,916 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:49,921 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:49,921 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:49,921 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:49,921 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:49,921 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:50,025 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:50,031 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:50,219 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@68dbe225] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:50,222 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@145ef9e8] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:50,226 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:50,229 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:50,276 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:50,309 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@2f3c7b24: startup date [Fri Jul 28 09:33:49 CEST 2017]; root of context hierarchy 2017-07-28 09:33:50,309 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:50,312 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@5bbc033f: startup date [Fri Jul 28 09:33:50 CEST 2017]; root of context hierarchy 2017-07-28 09:33:50,352 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:50,352 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:50,352 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:50,358 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:50,358 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:50,358 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:50,358 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:50,358 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:50,461 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:50,474 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:50,672 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7f65639e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:50,675 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@673fdc28] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:50,678 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:50,682 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:50,731 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:50,743 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@5bbc033f: startup date [Fri Jul 28 09:33:50 CEST 2017]; root of context hierarchy 2017-07-28 09:33:50,744 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:50,749 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@6bf34912: startup date [Fri Jul 28 09:33:50 CEST 2017]; root of context hierarchy 2017-07-28 09:33:50,831 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:50,831 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:50,831 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:50,836 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:50,837 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:50,837 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:50,837 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:50,837 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:50,941 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:50,947 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:51,099 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@462deb2b] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:51,102 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@381c826c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:51,105 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:51,108 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:51,156 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:51,168 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@6bf34912: startup date [Fri Jul 28 09:33:50 CEST 2017]; root of context hierarchy 2017-07-28 09:33:51,169 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:51,177 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2bab1821: startup date [Fri Jul 28 09:33:51 CEST 2017]; root of context hierarchy 2017-07-28 09:33:51,211 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:51,212 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:51,212 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:51,217 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:51,217 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:51,217 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:51,217 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:51,217 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:51,320 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:51,331 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:51,498 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@155cf9f6] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:51,501 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@b7b26c6] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:51,505 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:51,509 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:51,556 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:51,567 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@2bab1821: startup date [Fri Jul 28 09:33:51 CEST 2017]; root of context hierarchy 2017-07-28 09:33:51,567 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:51,570 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@1cd4082a: startup date [Fri Jul 28 09:33:51 CEST 2017]; root of context hierarchy 2017-07-28 09:33:51,604 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:51,604 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:51,604 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:51,609 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:51,609 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:51,609 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:51,609 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:51,609 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:51,712 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:51,716 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:51,885 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2b3fd4d2] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:51,888 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3020f22] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:51,892 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:51,895 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:51,937 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:51,949 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@1cd4082a: startup date [Fri Jul 28 09:33:51 CEST 2017]; root of context hierarchy 2017-07-28 09:33:51,949 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:51,952 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2be89ba5: startup date [Fri Jul 28 09:33:51 CEST 2017]; root of context hierarchy 2017-07-28 09:33:51,985 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:51,985 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:51,985 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:51,990 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:51,990 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:51,990 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:51,991 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:51,991 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:52,094 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:52,099 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:52,270 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1ec690bd] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:52,272 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6e4d660] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:52,275 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:52,278 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:52,321 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:52,329 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@2be89ba5: startup date [Fri Jul 28 09:33:51 CEST 2017]; root of context hierarchy 2017-07-28 09:33:52,330 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:52,332 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@65018381: startup date [Fri Jul 28 09:33:52 CEST 2017]; root of context hierarchy 2017-07-28 09:33:52,365 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:52,365 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:52,365 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:52,370 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:52,370 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:52,371 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:52,371 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:52,371 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:52,474 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:52,479 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:52,652 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@635900ef] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:52,654 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@615d74e9] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:52,657 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:52,661 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:52,701 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:52,717 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@65018381: startup date [Fri Jul 28 09:33:52 CEST 2017]; root of context hierarchy 2017-07-28 09:33:52,718 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:52,720 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@71c45428: startup date [Fri Jul 28 09:33:52 CEST 2017]; root of context hierarchy 2017-07-28 09:33:52,754 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:52,754 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:52,754 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:52,759 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:52,759 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:52,760 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:52,760 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:52,760 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:52,863 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:52,870 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:53,218 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3af8f1ef] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:53,221 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7856b790] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:53,225 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:53,229 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:53,270 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:53,280 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@71c45428: startup date [Fri Jul 28 09:33:52 CEST 2017]; root of context hierarchy 2017-07-28 09:33:53,280 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:53,283 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@7ca29492: startup date [Fri Jul 28 09:33:53 CEST 2017]; root of context hierarchy 2017-07-28 09:33:53,316 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:53,316 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:53,316 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:53,321 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:53,321 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:53,321 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:53,321 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:53,321 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:53,425 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:53,430 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:53,608 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@22ef1086] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:53,610 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7b5ffde0] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:53,613 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:53,616 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:53,652 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:53,680 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7ca29492: startup date [Fri Jul 28 09:33:53 CEST 2017]; root of context hierarchy 2017-07-28 09:33:53,680 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:53,683 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@7c9cecfb: startup date [Fri Jul 28 09:33:53 CEST 2017]; root of context hierarchy 2017-07-28 09:33:53,713 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:53,713 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:53,713 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:53,718 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:53,718 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:53,718 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:53,718 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:53,718 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:53,821 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:53,825 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:53,993 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@13068335] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:53,998 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@57e6fd09] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:54,002 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:54,007 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:54,062 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:54,098 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7c9cecfb: startup date [Fri Jul 28 09:33:53 CEST 2017]; root of context hierarchy 2017-07-28 09:33:54,099 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:54,102 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a8c01ef: startup date [Fri Jul 28 09:33:54 CEST 2017]; root of context hierarchy 2017-07-28 09:33:54,136 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:54,136 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:54,136 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:54,141 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:54,141 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:54,141 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:54,141 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:54,141 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:54,249 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:54,258 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:54,428 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@253bf220] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:54,431 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5ff7631f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:54,435 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:54,439 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:54,475 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:54,507 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@7a8c01ef: startup date [Fri Jul 28 09:33:54 CEST 2017]; root of context hierarchy 2017-07-28 09:33:54,508 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:54,511 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@6fa1dc0c: startup date [Fri Jul 28 09:33:54 CEST 2017]; root of context hierarchy 2017-07-28 09:33:54,545 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:54,545 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:54,545 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:54,549 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:54,550 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:54,550 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:54,550 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:54,550 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:54,653 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:54,656 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:54,853 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4dd139e0] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:54,855 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4f63343b] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:54,860 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:54,865 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:54,911 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:54,921 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@6fa1dc0c: startup date [Fri Jul 28 09:33:54 CEST 2017]; root of context hierarchy 2017-07-28 09:33:54,922 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:54,924 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@72efba55: startup date [Fri Jul 28 09:33:54 CEST 2017]; root of context hierarchy 2017-07-28 09:33:54,959 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:54,959 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:54,960 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:54,964 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:54,964 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:54,964 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:54,964 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:54,965 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:55,069 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:55,074 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:55,239 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4abc179d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:55,241 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2fe19bda] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:55,244 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:55,247 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:55,288 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:55,301 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@72efba55: startup date [Fri Jul 28 09:33:54 CEST 2017]; root of context hierarchy 2017-07-28 09:33:55,303 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:55,305 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@14f7e21a: startup date [Fri Jul 28 09:33:55 CEST 2017]; root of context hierarchy 2017-07-28 09:33:55,336 INFO [main] org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager: Found explicit default unit with name 'hsql-testdb' in persistence.xml - overriding local default unit settings ('packagesToScan'/'mappingResources') 2017-07-28 09:33:55,336 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:55,336 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:33:55,341 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:33:55,341 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:33:55,341 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:33:55,341 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:33:55,341 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:33:55,445 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:33:55,450 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:33:55,617 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@56926ff1] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:55,619 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6ad57ee3] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:33:55,623 INFO [main] org.hibernate.tool.schema.internal.SchemaCreatorImpl: HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@75de29c0' 2017-07-28 09:33:55,627 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:33:55,668 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:33:55,676 INFO [main] org.springframework.context.annotation.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@14f7e21a: startup date [Fri Jul 28 09:33:55 CEST 2017]; root of context hierarchy 2017-07-28 09:33:55,677 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.226 s - in org.appng.persistence.repository.SearchRepositoryTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-persistence --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-persistence --- [WARNING] Error fetching link: https://github.com/sylvainlaurent/JDBC-Performance-Logger/jdbc-perf-logger-driver/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-api/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.slf4j.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://projects.spring.io/spring-data-jpa/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/SpringSource/spring-data-envers/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hsqldb.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-testsupport/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.querydsl.com/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.persistence.repository... Loading source files for package org.appng.persistence.dialect... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/EnversSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/EnversSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/QueryDslSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/QueryDslSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/SearchQuery.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/SearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/SearchRepositoryFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/SearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/HSQLDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/MySqlTextDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/SQLServer2008Dialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/SearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/EnversSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/SearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/SearchRepositoryFactoryBean.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/QueryDslSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/EnversSearchRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/QueryDslSearchRepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/class-use/SearchQuery.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/class-use/HSQLDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/class-use/MySqlTextDialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/class-use/SQLServer2008Dialect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/dialect/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/org/appng/persistence/repository/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-persistence >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-persistence <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-persistence --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-persistence --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-persistence --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-persistence --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-persistence --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-persistence/target/appng-persistence-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Search 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-search --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-search --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 29 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-search --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 13 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-search --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 3 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-search --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.search.searcher.GermanSearchTermProcessorTest 'käse' -> (*kas OR kase*) 'käse scheiben' -> (*kas OR kase*) AND (*scheib OR scheib*) 'tomaten' -> (*tomat OR tomat*) 'tomaten dosen' -> (*tomat OR tomat*) AND (*dos OR dos*) 'gemüse' -> (*gemus OR gemuse*) 'gemüse brühe' -> (*gemus OR gemuse*) AND (*bruh OR bruhe*) 'gemüse huhn' -> (*gemus OR gemuse*) AND (*huhn OR huhn*) 'dinkel' -> (*dinkel OR dinkel*) 'kassler' -> (*kassl OR kassl*) 'karotten kartoffeln rindfleisch' -> (*karott OR karott*) AND (*kartoffeln OR kartoffeln*) AND (*rindfleisch OR rindfleisch*) [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.275 s - in org.appng.search.searcher.GermanSearchTermProcessorTest [INFO] Running org.appng.search.indexer.StandardSearcherTest 2017-07-28 09:34:06,921 DEBUG [main] org.appng.search.indexer.GlobalIndexer: start indexing for site manager 2017-07-28 09:34:06,929 INFO [main] org.appng.search.indexer.FileSystemProvider: dataDir: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages 2017-07-28 09:34:06,934 DEBUG [main] org.appng.search.indexer.FileSystemProvider: indexing (1/2):/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/de/42.txt 2017-07-28 09:34:07,193 WARN [main] org.apache.tika.parser.image.ImageParser: JBIG2ImageReader not loaded. jbig2 files will be ignored 2017-07-28 09:34:07,446 TRACE [main] org.appng.search.indexer.FileSystemProvider: extraction took 514ms 2017-07-28 09:34:07,448 DEBUG [main] org.appng.search.indexer.ParseTags: parsing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/de/42.jsp 2017-07-28 09:34:07,563 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'title' 2017-07-28 09:34:07,565 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'contents' 2017-07-28 09:34:07,565 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'customfield' 2017-07-28 09:34:07,565 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'anotherCustomfield' 2017-07-28 09:34:07,568 DEBUG [main] org.appng.search.indexer.FileSystemProvider: indexing (2/2):/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/de/42.jsp 2017-07-28 09:34:07,569 TRACE [main] org.appng.search.indexer.FileSystemProvider: extraction took 122ms 2017-07-28 09:34:07,570 DEBUG [main] org.appng.search.indexer.FileSystemProvider: indexing (1/4):/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/foobar.txt 2017-07-28 09:34:07,593 TRACE [main] org.appng.search.indexer.FileSystemProvider: extraction took 23ms 2017-07-28 09:34:07,593 DEBUG [main] org.appng.search.indexer.FileSystemProvider: indexing (2/4):/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/42.txt 2017-07-28 09:34:07,609 TRACE [main] org.appng.search.indexer.FileSystemProvider: extraction took 16ms 2017-07-28 09:34:07,609 DEBUG [main] org.appng.search.indexer.ParseTags: parsing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/acme.jsp 2017-07-28 09:34:07,610 TRACE [main] org.appng.search.indexer.ParseTags: skipping appng:searchable field = title 2017-07-28 09:34:07,610 TRACE [main] org.appng.search.indexer.ParseTags: skipping appng:searchable field = content 2017-07-28 09:34:07,610 DEBUG [main] org.appng.search.indexer.FileSystemProvider: indexing (3/4):/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/acme.jsp 2017-07-28 09:34:07,610 TRACE [main] org.appng.search.indexer.FileSystemProvider: extraction took 1ms 2017-07-28 09:34:07,610 DEBUG [main] org.appng.search.indexer.ParseTags: parsing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/42.jsp 2017-07-28 09:34:07,611 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'title' 2017-07-28 09:34:07,612 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'contents' 2017-07-28 09:34:07,612 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'customfield' 2017-07-28 09:34:07,612 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'anotherCustomfield' 2017-07-28 09:34:07,612 DEBUG [main] org.appng.search.indexer.FileSystemProvider: indexing (4/4):/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/42.jsp 2017-07-28 09:34:07,613 TRACE [main] org.appng.search.indexer.FileSystemProvider: extraction took 3ms 2017-07-28 09:34:07,613 INFO [main] org.appng.search.indexer.FileSystemProvider: Indexing 6 files took 683 milliseconds 2017-07-28 09:34:07,699 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: opened IndexWriter#28343804 with Analyzer class org.apache.lucene.analysis.standard.StandardAnalyzer 2017-07-28 09:34:07,702 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: clearing index at /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index 2017-07-28 09:34:09,741 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: comitted IndexWriter#28343804 2017-07-28 09:34:09,741 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: done with DocumentProducer 'clear index' which offered 0 events (CREATE: 0, UPDATE: 0, DELETE: 0). The index now contains 0 documents (was 0 before) 2017-07-28 09:34:09,742 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: comitted IndexWriter#28343804, containing 0 documents (before: 0) directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index 2017-07-28 09:34:09,750 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed org.apache.lucene.index.IndexWriter@1b07dfc 2017-07-28 09:34:09,751 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed StandardDirectoryReader(segments:1:nrt) 2017-07-28 09:34:09,751 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed MMapDirectory@/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@53592b51 2017-07-28 09:34:09,760 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: opened IndexWriter#750740241 with Analyzer class org.apache.lucene.analysis.de.GermanAnalyzer 2017-07-28 09:34:09,839 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: creating document +id:/de/42.txt +type:txt 2017-07-28 09:34:09,840 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: [79ms] CREATE, query: +id:/de/42.txt +type:txt 2017-07-28 09:34:09,845 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: creating document +id:/de/42.jsp +type:jsp 2017-07-28 09:34:09,845 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: [5ms] CREATE, query: +id:/de/42.jsp +type:jsp 2017-07-28 09:34:11,982 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: comitted IndexWriter#750740241 2017-07-28 09:34:11,982 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: done with DocumentProducer 'index /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/de' which offered 2 events (CREATE: 2, UPDATE: 0, DELETE: 0). The index now contains 2 documents (was 0 before) 2017-07-28 09:34:11,982 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: comitted IndexWriter#750740241, containing 2 documents (before: 0) directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index 2017-07-28 09:34:11,983 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed org.apache.lucene.index.IndexWriter@2cbf6311 2017-07-28 09:34:11,984 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed StandardDirectoryReader(segments_1:3:nrt) 2017-07-28 09:34:11,984 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed MMapDirectory@/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@53592b51 2017-07-28 09:34:11,993 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: opened IndexWriter#1495182655 with Analyzer class org.apache.lucene.analysis.en.EnglishAnalyzer 2017-07-28 09:34:12,029 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: creating document +id:/en/foobar.txt +type:txt 2017-07-28 09:34:12,029 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: [10ms] CREATE, query: +id:/en/foobar.txt +type:txt 2017-07-28 09:34:12,034 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: creating document +id:/en/42.txt +type:txt 2017-07-28 09:34:12,034 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: [5ms] CREATE, query: +id:/en/42.txt +type:txt 2017-07-28 09:34:12,035 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: creating document +id:/en/acme.jsp +type:jsp 2017-07-28 09:34:12,035 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: [1ms] CREATE, query: +id:/en/acme.jsp +type:jsp 2017-07-28 09:34:12,038 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: creating document +id:/en/42.jsp +type:jsp 2017-07-28 09:34:12,039 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: [4ms] CREATE, query: +id:/en/42.jsp +type:jsp 2017-07-28 09:34:14,118 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: comitted IndexWriter#1495182655 2017-07-28 09:34:14,119 INFO [documentIndexer] org.appng.search.indexer.DocumentIndexer: done with DocumentProducer 'index /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en' which offered 4 events (CREATE: 4, UPDATE: 0, DELETE: 0). The index now contains 6 documents (was 2 before) 2017-07-28 09:34:14,119 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: comitted IndexWriter#1495182655, containing 6 documents (before: 2) directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index 2017-07-28 09:34:14,120 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed org.apache.lucene.index.IndexWriter@591ead3f 2017-07-28 09:34:14,121 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed StandardDirectoryReader(segments_2:6:nrt _0(6.6.0):c2) 2017-07-28 09:34:14,121 DEBUG [documentIndexer] org.appng.search.indexer.DocumentIndexer: closed MMapDirectory@/var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/index lockFactory=org.apache.lucene.store.NativeFSLockFactory@53592b51 2017-07-28 09:34:14,343 INFO [main] org.appng.search.searcher.StandardSearcher: 2 results returned from query: +language:de +((title:anhalt contents:anhalt) (title:anhalter* contents:anhalter*)) 2017-07-28 09:34:15,212 INFO [main] org.appng.search.searcher.StandardSearcher: 2 results returned from query: +language:en +((title:hitchhik contents:hitchhik) (title:hitchhiker* contents:hitchhiker*)) 2017-07-28 09:34:15,232 INFO [main] org.appng.search.searcher.StandardSearcher: 1 results returned from query: +language:en +((title:foo contents:foo) (title:foo* contents:foo*)) 2017-07-28 09:34:15,244 INFO [main] org.appng.search.searcher.StandardSearcher: 0 results returned from query: +language:en +((title:acm contents:acm) (title:acme* contents:acme*)) [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.612 s - in org.appng.search.indexer.StandardSearcherTest [INFO] Running org.appng.search.indexer.ParseTagsTest 2017-07-28 09:34:15,250 TRACE [main] org.appng.search.indexer.ParseTags: adding a:searchable field = 'field1' 2017-07-28 09:34:15,250 TRACE [main] org.appng.search.indexer.ParseTags: adding a:searchable field = 'field2' 2017-07-28 09:34:15,250 TRACE [main] org.appng.search.indexer.ParseTags: adding a:searchable field = 'contents' 2017-07-28 09:34:15,250 TRACE [main] org.appng.search.indexer.ParseTags: adding a:searchable field = 'field1' 2017-07-28 09:34:15,250 TRACE [main] org.appng.search.indexer.ParseTags: adding a:searchable field = 'field2' {field1=A, contents=A B D, field2=B} 2017-07-28 09:34:15,251 DEBUG [main] org.appng.search.indexer.ParseTags: parsing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pages/en/42.jsp 2017-07-28 09:34:15,252 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'title' 2017-07-28 09:34:15,253 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'contents' 2017-07-28 09:34:15,253 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'customfield' 2017-07-28 09:34:15,253 TRACE [main] org.appng.search.indexer.ParseTags: adding appNG:searchable field = 'anotherCustomfield' 2017-07-28 09:34:15,254 TRACE [main] org.appng.search.indexer.ParseTags: skipping appng:searchable field = field1 2017-07-28 09:34:15,254 TRACE [main] org.appng.search.indexer.ParseTags: skipping appng:searchable field = field2 2017-07-28 09:34:15,254 TRACE [main] org.appng.search.indexer.ParseTags: skipping appng:searchable field = {} [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 s - in org.appng.search.indexer.ParseTagsTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-search --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-search --- [WARNING] Error fetching link: https://appng.org/appng-api/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://freemarker.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://lucene.apache.org/lucene-parent/lucene-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://lucene.apache.org/lucene-parent/lucene-highlighter/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://lucene.apache.org/lucene-parent/lucene-analyzers-common/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://lucene.apache.org/lucene-parent/lucene-queryparser/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://lucene.apache.org/lucene-parent/lucene-facet/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tika.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tika.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://jsoup.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-testsupport/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.search... Loading source files for package org.appng.search.searcher... Loading source files for package org.appng.search.json... Loading source files for package org.appng.search.indexer... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/DocumentProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/SearchProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/DateAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/GermanSearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/SearchFormatter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/SearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/StandardSearcher.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Filter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/FilterConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/FilterData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/FilterItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/FilterItem.DataCounter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Json.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Page.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Part.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Result.Field.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Result.Fields.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Results.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/SearchFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/DocumentIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/FileSystemProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/GlobalIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/IndexConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/IndexConfig.ConfigEntry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/ParseTags.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/SimpleDocument.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/class-use/SearchProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/class-use/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/class-use/DocumentProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/class-use/SearchFormatter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/class-use/StandardSearcher.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/class-use/GermanSearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/class-use/SearchTermProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/class-use/DateAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Part.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Json.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/FilterData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Results.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/SearchFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/FilterConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/FilterItem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/FilterItem.DataCounter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Page.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Result.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Result.Fields.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Result.Field.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/class-use/Filter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/IndexConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/IndexConfig.ConfigEntry.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/SimpleDocument.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/FileSystemProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/DocumentIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/GlobalIndexer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/class-use/ParseTags.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/indexer/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/json/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/org/appng/search/searcher/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-search >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-search <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-search --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-search --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-search --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-search --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-search --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-search/target/appng-search-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Core Library 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-core --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 68 resources [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-core --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 160 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DefaultPasswordPolicy.java: Some input files use or override a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DefaultPasswordPolicy.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-core --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 60 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-core --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 56 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-core --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.core.application.PermissionProcessorTest 2017-07-28 09:34:24,242 INFO [main] org.appng.api.support.DefaultPermissionProcessor: subject 'null' does not belong to any group, thus has no permissions 2017-07-28 09:34:24,243 INFO [main] org.appng.api.support.DefaultPermissionProcessor: subject 'null' does not belong to any group, thus has no permissions 2017-07-28 09:34:24,244 INFO [main] org.appng.api.support.DefaultPermissionProcessor: subject 'null' does not belong to any group, thus has no permissions 2017-07-28 09:34:24,244 INFO [main] org.appng.api.support.DefaultPermissionProcessor: subject 'null' does not belong to any group, thus has no permissions 2017-07-28 09:34:24,245 INFO [main] org.appng.api.support.DefaultPermissionProcessor: subject 'null' does not belong to any group, thus has no permissions 2017-07-28 09:34:24,245 INFO [main] org.appng.api.support.DefaultPermissionProcessor: subject 'null' does not belong to any group, thus has no permissions [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.293 s - in org.appng.core.application.PermissionProcessorTest [INFO] Running org.appng.core.repository.PropertyRepositoryTest 2017-07-28 09:34:24,300 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.PropertyRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:24,300 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.PropertyRepositoryTest]: PropertyRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:24,314 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:24,324 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@445b295b, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@49e5f737, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5c671d7f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@757277dc, org.springframework.test.context.transaction.TransactionalTestExecutionListener@687e99d8, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@e4487af] 2017-07-28 09:34:24,372 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:24,770 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@37f1104d: startup date [Fri Jul 28 09:34:24 CEST 2017]; root of context hierarchy 2017-07-28 09:34:25,454 INFO [HSQLDB Server @1c3b9394] hsqldb.db.HSQLDB5D881E2D9A.ENGINE: Checkpoint start 2017-07-28 09:34:25,454 INFO [HSQLDB Server @1c3b9394] hsqldb.db.HSQLDB5D881E2D9A.ENGINE: checkpointClose start 2017-07-28 09:34:25,461 INFO [HSQLDB Server @1c3b9394] hsqldb.db.HSQLDB5D881E2D9A.ENGINE: checkpointClose synched 2017-07-28 09:34:25,476 INFO [HSQLDB Server @1c3b9394] hsqldb.db.HSQLDB5D881E2D9A.ENGINE: checkpointClose script done 2017-07-28 09:34:25,501 INFO [HSQLDB Server @1c3b9394] hsqldb.db.HSQLDB5D881E2D9A.ENGINE: checkpointClose end 2017-07-28 09:34:25,502 INFO [HSQLDB Server @1c3b9394] hsqldb.db.HSQLDB5D881E2D9A.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:25,613 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:25,739 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:25,887 INFO [main] org.hibernate.Version : HHH000412: Hibernate Core {5.2.10.Final} 2017-07-28 09:34:25,889 INFO [main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found 2017-07-28 09:34:25,949 INFO [main] org.hibernate.annotations.common.Version: HCANN000001: Hibernate Commons Annotations {5.0.1.Final} 2017-07-28 09:34:26,174 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:26,175 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:26,175 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:26,176 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:26,179 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:26,326 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:26,405 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:26,982 INFO [main] org.hibernate.validator.internal.util.Version: HV000001: Hibernate Validator 5.4.1.Final 2017-07-28 09:34:27,722 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2fe2965c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:27,733 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5dbbb292] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:27,789 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:28,238 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:29,283 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36e409e0 testClass = PropertyRepositoryTest, testInstance = org.appng.core.repository.PropertyRepositoryTest@145e958f, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@45bd4753 testClass = PropertyRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.PropertyRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@1600a8a2]; rollback [true] 2017-07-28 09:34:29,381 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@36e409e0 testClass = PropertyRepositoryTest, testInstance = org.appng.core.repository.PropertyRepositoryTest@145e958f, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@45bd4753 testClass = PropertyRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.PropertyRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:29,383 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@37f1104d: startup date [Fri Jul 28 09:34:24 CEST 2017]; root of context hierarchy 2017-07-28 09:34:29,386 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:29,387 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.141 s - in org.appng.core.repository.PropertyRepositoryTest [INFO] Running org.appng.core.repository.GroupRepositoryTest 2017-07-28 09:34:29,391 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.GroupRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:29,391 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.GroupRepositoryTest]: GroupRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:29,395 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:29,396 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@27db45f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6ec3d8e4, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1aeff8ca, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7f2c995b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@101c15ad, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6068ebb2] 2017-07-28 09:34:29,396 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:29,504 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@5a466dd: startup date [Fri Jul 28 09:34:29 CEST 2017]; root of context hierarchy 2017-07-28 09:34:29,575 INFO [HSQLDB Server @dc8b2ff] hsqldb.db.HSQLDB5D881E3DC6.ENGINE: Checkpoint start 2017-07-28 09:34:29,575 INFO [HSQLDB Server @dc8b2ff] hsqldb.db.HSQLDB5D881E3DC6.ENGINE: checkpointClose start 2017-07-28 09:34:29,583 INFO [HSQLDB Server @dc8b2ff] hsqldb.db.HSQLDB5D881E3DC6.ENGINE: checkpointClose synched 2017-07-28 09:34:29,594 INFO [HSQLDB Server @dc8b2ff] hsqldb.db.HSQLDB5D881E3DC6.ENGINE: checkpointClose script done 2017-07-28 09:34:29,614 INFO [HSQLDB Server @dc8b2ff] hsqldb.db.HSQLDB5D881E3DC6.ENGINE: checkpointClose end 2017-07-28 09:34:29,614 INFO [HSQLDB Server @dc8b2ff] hsqldb.db.HSQLDB5D881E3DC6.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:29,652 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:29,673 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:29,695 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:29,696 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:29,696 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:29,696 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:29,696 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:29,799 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:29,810 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:29,974 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@f439e0f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:29,979 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@62410e1f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:30,010 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:30,068 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:30,211 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@733bd6f3 testClass = GroupRepositoryTest, testInstance = org.appng.core.repository.GroupRepositoryTest@2e030cc1, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@126a9a77 testClass = GroupRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.GroupRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@76134251]; rollback [true] 2017-07-28 09:34:30,254 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@733bd6f3 testClass = GroupRepositoryTest, testInstance = org.appng.core.repository.GroupRepositoryTest@2e030cc1, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@126a9a77 testClass = GroupRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.GroupRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:30,255 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@5a466dd: startup date [Fri Jul 28 09:34:29 CEST 2017]; root of context hierarchy 2017-07-28 09:34:30,257 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:30,257 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.868 s - in org.appng.core.repository.GroupRepositoryTest [INFO] Running org.appng.core.repository.RoleRepositoryTest 2017-07-28 09:34:30,261 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.RoleRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:30,261 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.RoleRepositoryTest]: RoleRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:30,264 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:30,264 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@20db19ff, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5eef8a16, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1405aa6a, org.springframework.test.context.support.DirtiesContextTestExecutionListener@18c60d81, org.springframework.test.context.transaction.TransactionalTestExecutionListener@602aeb87, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@423762ae] 2017-07-28 09:34:30,265 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:30,386 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@7b58d678: startup date [Fri Jul 28 09:34:30 CEST 2017]; root of context hierarchy 2017-07-28 09:34:30,477 INFO [HSQLDB Server @53d2f0ec] hsqldb.db.HSQLDB5D881E414C.ENGINE: Checkpoint start 2017-07-28 09:34:30,478 INFO [HSQLDB Server @53d2f0ec] hsqldb.db.HSQLDB5D881E414C.ENGINE: checkpointClose start 2017-07-28 09:34:30,485 INFO [HSQLDB Server @53d2f0ec] hsqldb.db.HSQLDB5D881E414C.ENGINE: checkpointClose synched 2017-07-28 09:34:30,497 INFO [HSQLDB Server @53d2f0ec] hsqldb.db.HSQLDB5D881E414C.ENGINE: checkpointClose script done 2017-07-28 09:34:30,516 INFO [HSQLDB Server @53d2f0ec] hsqldb.db.HSQLDB5D881E414C.ENGINE: checkpointClose end 2017-07-28 09:34:30,517 INFO [HSQLDB Server @53d2f0ec] hsqldb.db.HSQLDB5D881E414C.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:30,556 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:30,596 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:30,625 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:30,625 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:30,626 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:30,626 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:30,626 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:30,746 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:30,757 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:30,952 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@17e66aed] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:30,958 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@65dd2191] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:30,988 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:31,051 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:31,194 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@751b901a testClass = RoleRepositoryTest, testInstance = org.appng.core.repository.RoleRepositoryTest@6672b0ea, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4c941d19 testClass = RoleRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.RoleRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3a6409ec]; rollback [true] 2017-07-28 09:34:31,235 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@751b901a testClass = RoleRepositoryTest, testInstance = org.appng.core.repository.RoleRepositoryTest@6672b0ea, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4c941d19 testClass = RoleRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.RoleRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:31,236 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@7b58d678: startup date [Fri Jul 28 09:34:30 CEST 2017]; root of context hierarchy 2017-07-28 09:34:31,237 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:31,237 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.978 s - in org.appng.core.repository.RoleRepositoryTest [INFO] Running org.appng.core.repository.RepositoryCacheTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.136 s - in org.appng.core.repository.RepositoryCacheTest [INFO] Running org.appng.core.repository.RepositoryTest 2017-07-28 09:34:31,380 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.RepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:31,380 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.RepositoryTest]: RepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:31,385 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:31,385 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@f451970, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4a7c8cb7, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@32675dd4, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2351255a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4f836d9, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2a4f1bc5] 2017-07-28 09:34:31,386 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:31,492 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@224e7aa5: startup date [Fri Jul 28 09:34:31 CEST 2017]; root of context hierarchy 2017-07-28 09:34:31,579 INFO [HSQLDB Server @44a1ae4e] hsqldb.db.HSQLDB5D881E4592.ENGINE: Checkpoint start 2017-07-28 09:34:31,582 INFO [HSQLDB Server @44a1ae4e] hsqldb.db.HSQLDB5D881E4592.ENGINE: checkpointClose start 2017-07-28 09:34:31,589 INFO [HSQLDB Server @44a1ae4e] hsqldb.db.HSQLDB5D881E4592.ENGINE: checkpointClose synched 2017-07-28 09:34:31,599 INFO [HSQLDB Server @44a1ae4e] hsqldb.db.HSQLDB5D881E4592.ENGINE: checkpointClose script done 2017-07-28 09:34:31,617 INFO [HSQLDB Server @44a1ae4e] hsqldb.db.HSQLDB5D881E4592.ENGINE: checkpointClose end 2017-07-28 09:34:31,617 INFO [HSQLDB Server @44a1ae4e] hsqldb.db.HSQLDB5D881E4592.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:31,643 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:31,669 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:31,705 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:31,705 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:31,706 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:31,706 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:31,706 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:31,809 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:31,822 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:31,975 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1f832df0] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:31,980 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@47184859] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:32,009 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:32,069 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:32,214 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@75707f05 testClass = RepositoryTest, testInstance = org.appng.core.repository.RepositoryTest@741f8cf, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6792aa3e testClass = RepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.RepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@138a51d5]; rollback [true] 2017-07-28 09:34:32,223 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@75707f05 testClass = RepositoryTest, testInstance = org.appng.core.repository.RepositoryTest@741f8cf, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6792aa3e testClass = RepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.RepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:32,225 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@224e7aa5: startup date [Fri Jul 28 09:34:31 CEST 2017]; root of context hierarchy 2017-07-28 09:34:32,226 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:32,226 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.848 s - in org.appng.core.repository.RepositoryTest [INFO] Running org.appng.core.repository.SubjectRepositoryTest 2017-07-28 09:34:32,230 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.SubjectRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:32,230 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.SubjectRepositoryTest]: SubjectRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:32,234 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:32,234 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@7cd6b76a, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2165b170, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@9677f54, org.springframework.test.context.support.DirtiesContextTestExecutionListener@44046b0d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@d20e900, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@14237e5] 2017-07-28 09:34:32,235 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:32,340 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@33ed6546: startup date [Fri Jul 28 09:34:32 CEST 2017]; root of context hierarchy 2017-07-28 09:34:32,447 INFO [HSQLDB Server @28ab7ffb] hsqldb.db.HSQLDB5D881E48F8.ENGINE: Checkpoint start 2017-07-28 09:34:32,448 INFO [HSQLDB Server @28ab7ffb] hsqldb.db.HSQLDB5D881E48F8.ENGINE: checkpointClose start 2017-07-28 09:34:32,522 INFO [HSQLDB Server @28ab7ffb] hsqldb.db.HSQLDB5D881E48F8.ENGINE: checkpointClose synched 2017-07-28 09:34:32,533 INFO [HSQLDB Server @28ab7ffb] hsqldb.db.HSQLDB5D881E48F8.ENGINE: checkpointClose script done 2017-07-28 09:34:32,554 INFO [HSQLDB Server @28ab7ffb] hsqldb.db.HSQLDB5D881E48F8.ENGINE: checkpointClose end 2017-07-28 09:34:32,555 INFO [HSQLDB Server @28ab7ffb] hsqldb.db.HSQLDB5D881E48F8.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:32,613 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:32,648 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:32,677 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:32,677 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:32,678 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:32,678 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:32,678 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:32,781 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:32,790 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:32,956 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@61b3de5b] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:32,961 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@12c1826] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:32,989 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:33,048 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:33,196 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@347c7b testClass = SubjectRepositoryTest, testInstance = org.appng.core.repository.SubjectRepositoryTest@126f428e, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@74efc394 testClass = SubjectRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.SubjectRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@2a62384]; rollback [true] 2017-07-28 09:34:33,233 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@347c7b testClass = SubjectRepositoryTest, testInstance = org.appng.core.repository.SubjectRepositoryTest@126f428e, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@74efc394 testClass = SubjectRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.SubjectRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:33,234 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@33ed6546: startup date [Fri Jul 28 09:34:32 CEST 2017]; root of context hierarchy 2017-07-28 09:34:33,235 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:33,235 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.008 s - in org.appng.core.repository.SubjectRepositoryTest [INFO] Running org.appng.core.repository.PermissionRepositoryTest 2017-07-28 09:34:33,239 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.PermissionRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:33,239 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.PermissionRepositoryTest]: PermissionRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:33,244 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:33,244 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@47f50549, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@43f88150, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@158bd27d, org.springframework.test.context.support.DirtiesContextTestExecutionListener@30282260, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5f18a661, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@58ed5ed3] 2017-07-28 09:34:33,245 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:33,351 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@133e7789: startup date [Fri Jul 28 09:34:33 CEST 2017]; root of context hierarchy 2017-07-28 09:34:33,467 INFO [HSQLDB Server @6f2d0d25] hsqldb.db.HSQLDB5D881E4CFA.ENGINE: Checkpoint start 2017-07-28 09:34:33,468 INFO [HSQLDB Server @6f2d0d25] hsqldb.db.HSQLDB5D881E4CFA.ENGINE: checkpointClose start 2017-07-28 09:34:33,474 INFO [HSQLDB Server @6f2d0d25] hsqldb.db.HSQLDB5D881E4CFA.ENGINE: checkpointClose synched 2017-07-28 09:34:33,485 INFO [HSQLDB Server @6f2d0d25] hsqldb.db.HSQLDB5D881E4CFA.ENGINE: checkpointClose script done 2017-07-28 09:34:33,505 INFO [HSQLDB Server @6f2d0d25] hsqldb.db.HSQLDB5D881E4CFA.ENGINE: checkpointClose end 2017-07-28 09:34:33,505 INFO [HSQLDB Server @6f2d0d25] hsqldb.db.HSQLDB5D881E4CFA.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:33,553 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:33,571 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:33,597 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:33,597 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:33,597 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:33,597 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:33,597 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:33,701 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:33,719 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:33,858 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6b0dc462] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:33,864 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3415d6e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:33,897 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:33,960 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:34,113 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@cbbc0ac testClass = PermissionRepositoryTest, testInstance = org.appng.core.repository.PermissionRepositoryTest@570fc662, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@427a4d68 testClass = PermissionRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.PermissionRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@205c0b1a]; rollback [true] 2017-07-28 09:34:34,132 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@cbbc0ac testClass = PermissionRepositoryTest, testInstance = org.appng.core.repository.PermissionRepositoryTest@570fc662, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@427a4d68 testClass = PermissionRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.PermissionRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:34,133 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@133e7789: startup date [Fri Jul 28 09:34:33 CEST 2017]; root of context hierarchy 2017-07-28 09:34:34,134 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:34,134 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.898 s - in org.appng.core.repository.PermissionRepositoryTest [INFO] Running org.appng.core.repository.SiteRepositoryTest 2017-07-28 09:34:34,137 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.SiteRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:34,137 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.SiteRepositoryTest]: SiteRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:34,141 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:34,141 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@7b1466e3, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@c9f1951, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6a4859fc, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3532f633, org.springframework.test.context.transaction.TransactionalTestExecutionListener@6d49bd08, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@19e86461] 2017-07-28 09:34:34,142 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:34,224 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@31475919: startup date [Fri Jul 28 09:34:34 CEST 2017]; root of context hierarchy 2017-07-28 09:34:34,280 INFO [HSQLDB Server @2b82254b] hsqldb.db.HSQLDB5D881E5027.ENGINE: Checkpoint start 2017-07-28 09:34:34,281 INFO [HSQLDB Server @2b82254b] hsqldb.db.HSQLDB5D881E5027.ENGINE: checkpointClose start 2017-07-28 09:34:34,289 INFO [HSQLDB Server @2b82254b] hsqldb.db.HSQLDB5D881E5027.ENGINE: checkpointClose synched 2017-07-28 09:34:34,299 INFO [HSQLDB Server @2b82254b] hsqldb.db.HSQLDB5D881E5027.ENGINE: checkpointClose script done 2017-07-28 09:34:34,319 INFO [HSQLDB Server @2b82254b] hsqldb.db.HSQLDB5D881E5027.ENGINE: checkpointClose end 2017-07-28 09:34:34,319 INFO [HSQLDB Server @2b82254b] hsqldb.db.HSQLDB5D881E5027.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:34,367 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:34,384 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:34,410 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:34,410 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:34,410 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:34,410 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:34,410 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:34,513 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:34,521 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:34,642 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1931223f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:34,647 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2f57fc23] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:34,686 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:34,763 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:34,884 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@1ecf20aa testClass = SiteRepositoryTest, testInstance = org.appng.core.repository.SiteRepositoryTest@2d3ff2e8, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@485e0996 testClass = SiteRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.SiteRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@272185e8]; rollback [true] 2017-07-28 09:34:34,914 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@1ecf20aa testClass = SiteRepositoryTest, testInstance = org.appng.core.repository.SiteRepositoryTest@2d3ff2e8, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@485e0996 testClass = SiteRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.SiteRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:34,914 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@31475919: startup date [Fri Jul 28 09:34:34 CEST 2017]; root of context hierarchy 2017-07-28 09:34:34,915 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:34,915 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.783 s - in org.appng.core.repository.SiteRepositoryTest [INFO] Running org.appng.core.repository.ResourceRepositoryTest 2017-07-28 09:34:34,921 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.core.repository.ResourceRepositoryTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:34:34,921 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.core.repository.ResourceRepositoryTest]: ResourceRepositoryTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:34:34,925 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:34,926 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@12af47f4, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@670132b9, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@33a7a5ca, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6cc1da7b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@439a0f0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6ac3ce34] 2017-07-28 09:34:34,926 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:35,014 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@6444bf53: startup date [Fri Jul 28 09:34:35 CEST 2017]; root of context hierarchy 2017-07-28 09:34:35,086 INFO [HSQLDB Server @6a3a3b93] hsqldb.db.HSQLDB5D881E534C.ENGINE: Checkpoint start 2017-07-28 09:34:35,086 INFO [HSQLDB Server @6a3a3b93] hsqldb.db.HSQLDB5D881E534C.ENGINE: checkpointClose start 2017-07-28 09:34:35,093 INFO [HSQLDB Server @6a3a3b93] hsqldb.db.HSQLDB5D881E534C.ENGINE: checkpointClose synched 2017-07-28 09:34:35,103 INFO [HSQLDB Server @6a3a3b93] hsqldb.db.HSQLDB5D881E534C.ENGINE: checkpointClose script done 2017-07-28 09:34:35,121 INFO [HSQLDB Server @6a3a3b93] hsqldb.db.HSQLDB5D881E534C.ENGINE: checkpointClose end 2017-07-28 09:34:35,121 INFO [HSQLDB Server @6a3a3b93] hsqldb.db.HSQLDB5D881E534C.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:35,162 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:35,180 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:35,203 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:35,204 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:35,204 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:35,204 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:35,204 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:35,306 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:35,317 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:35,450 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6413c144] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:35,455 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@20baa4eb] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:35,492 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:35,552 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:35,662 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@245b6b85 testClass = ResourceRepositoryTest, testInstance = org.appng.core.repository.ResourceRepositoryTest@505c675a, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@22445d8e testClass = ResourceRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.ResourceRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@527ff176]; rollback [true] 2017-07-28 09:34:35,679 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@245b6b85 testClass = ResourceRepositoryTest, testInstance = org.appng.core.repository.ResourceRepositoryTest@505c675a, testMethod = test@AbstractRepositoryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@22445d8e testClass = ResourceRepositoryTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.repository.ResourceRepositoryTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:35,680 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@6444bf53: startup date [Fri Jul 28 09:34:35 CEST 2017]; root of context hierarchy 2017-07-28 09:34:35,681 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:35,681 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.763 s - in org.appng.core.repository.ResourceRepositoryTest [INFO] Running org.appng.core.PathInfoTest [INFO] Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 s - in org.appng.core.PathInfoTest [INFO] Running org.appng.core.security.DigestValidatorTest 2017-07-28 09:34:35,717 INFO [main] org.appng.core.security.DigestValidator: Digest successfully validated. 2017-07-28 09:34:35,719 ERROR [main] org.appng.core.security.DigestValidator: Invalid date offset [millis]: 14399283, maximum is 3600000 2017-07-28 09:34:35,719 ERROR [main] org.appng.core.security.DigestValidator: Digest validation failed. 2017-07-28 09:34:35,720 INFO [main] org.appng.core.security.DigestValidator: Digest successfully validated. 2017-07-28 09:34:35,720 ERROR [main] org.appng.core.security.DigestValidator: Encrypted part does not match. Encrypted part is 229C43CBC6469C0D63B778B8A33690B6, but should be FD493F66F5A5FDD25F5356C667E0B6A1 2017-07-28 09:34:35,721 ERROR [main] org.appng.core.security.DigestValidator: Digest validation failed. [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 s - in org.appng.core.security.DigestValidatorTest [INFO] Running org.appng.core.security.signing.SignerTest 2017-07-28 09:34:35,730 INFO [main] org.appng.core.security.signing.Signer: Validating the release file against signature/certificate 'CN=Bricolage repository, OU=Release management, O=Aiticon GmbH, C=de'. 2017-07-28 09:34:35,738 INFO [main] org.appng.core.security.signing.Signer: Signing repository '/var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/zip' 2017-07-28 09:34:35,742 INFO [main] org.appng.core.security.signing.Signer: Writing release file '/var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/zip/index' 2017-07-28 09:34:35,743 INFO [main] org.appng.core.security.signing.Signer: ..adding repository attributes 2017-07-28 09:34:35,743 INFO [main] org.appng.core.security.signing.Signer: ..adding message digest of package 'demo-application-1.5.1.zip' 2017-07-28 09:34:35,743 INFO [main] org.appng.core.security.signing.Signer: ..adding message digest of package 'demo-application-1.5.2-2012-11-27-1305.zip' 2017-07-28 09:34:35,744 INFO [main] org.appng.core.security.signing.Signer: ..adding message digest of package 'demo-application-1.5.3-2013-01-13-1303.zip' 2017-07-28 09:34:35,744 INFO [main] org.appng.core.security.signing.Signer: ..adding message digest of package 'demo-application-1.5.4-2017-04-10-1046.zip' 2017-07-28 09:34:35,796 INFO [main] org.appng.core.security.signing.Signer: Validating the release file against signature/certificate 'CN=Bricolage repository, OU=Release management, O=Aiticon GmbH, C=de'. 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: Successfully validated release file. 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing repository attribute 'repoCodeName: Local' 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing repository attribute 'repoDescription: a local test repository' 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing repository attribute 'repoVersion: ' 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing package digest 'demo-application-1.5.1.zip: 65fd39da4cc20cab904c088b7ac22f41d2a3cb5feacf318728323cefe191bb7d' 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing package digest 'demo-application-1.5.2-2012-11-27-1305.zip: 2f2ba67d4a02515500492f51682992bc1e6aa9e3400cbd0ad86af31e7f2af3b9' 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing package digest 'demo-application-1.5.3-2013-01-13-1303.zip: 6481ea8230a97cf46fb521109f9aa36be2cf2a800664e64ef3d352f96ad8dbae' 2017-07-28 09:34:35,798 INFO [main] org.appng.core.security.signing.Signer: ..importing package digest 'demo-application-1.5.4-2017-04-10-1046.zip: e65fc4f41b0e6192f35a72610c00d65a2befbbd58d0337f0282581731b31b348' [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.077 s - in org.appng.core.security.signing.SignerTest [INFO] Running org.appng.core.security.BCryptPasswordHandlerTest [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.376 s - in org.appng.core.security.BCryptPasswordHandlerTest [INFO] Running org.appng.core.security.SaltedDigestTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.406 s - in org.appng.core.security.SaltedDigestTest [INFO] Running org.appng.core.security.Sha1PasswordHandlerTest [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 s - in org.appng.core.security.Sha1PasswordHandlerTest [INFO] Running org.appng.core.security.DefaultPasswordPolicyTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 s - in org.appng.core.security.DefaultPasswordPolicyTest [INFO] Running org.appng.core.domain.ValidationPatternTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.appng.core.domain.ValidationPatternTest [INFO] Running org.appng.core.domain.SiteImplTest 2017-07-28 09:34:38,637 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1198381707 for site foo with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:38,638 INFO [main] org.appng.core.Redirect : Redirecting request to /some/uri (302) 2017-07-28 09:34:38,640 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1980857516 for site foo with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:38,640 INFO [main] org.appng.core.Redirect : Redirecting request to /ws/foo/page/foo/bar#anchor (302) 2017-07-28 09:34:38,641 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1335771844 for site foo with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:38,641 INFO [main] org.appng.core.Redirect : Redirecting request to /ws/foo/page/foo/bar?tab=anchor#anchor (302) 2017-07-28 09:34:38,642 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#418549536 for site foo with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:38,642 INFO [main] org.appng.core.domain.SiteImpl: closing context for site foo [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.046 s - in org.appng.core.domain.SiteImplTest [INFO] Running org.appng.core.domain.PackageArchiveTest [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 s - in org.appng.core.domain.PackageArchiveTest [INFO] Running org.appng.core.service.TemplateServiceTest 2017-07-28 09:34:38,659 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:38,660 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@7d2410af, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5672c056, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@7c039615, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3d69bbe3, org.springframework.test.context.transaction.TransactionalTestExecutionListener@60157589, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@20a569ad] 2017-07-28 09:34:38,661 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:38,748 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@40f6e092: startup date [Fri Jul 28 09:34:38 CEST 2017]; root of context hierarchy 2017-07-28 09:34:38,824 INFO [HSQLDB Server @3fd006e8] hsqldb.db.HSQLDB5D881E61E7.ENGINE: Checkpoint start 2017-07-28 09:34:38,824 INFO [HSQLDB Server @3fd006e8] hsqldb.db.HSQLDB5D881E61E7.ENGINE: checkpointClose start 2017-07-28 09:34:38,834 INFO [HSQLDB Server @3fd006e8] hsqldb.db.HSQLDB5D881E61E7.ENGINE: checkpointClose synched 2017-07-28 09:34:38,844 INFO [HSQLDB Server @3fd006e8] hsqldb.db.HSQLDB5D881E61E7.ENGINE: checkpointClose script done 2017-07-28 09:34:38,863 INFO [HSQLDB Server @3fd006e8] hsqldb.db.HSQLDB5D881E61E7.ENGINE: checkpointClose end 2017-07-28 09:34:38,864 INFO [HSQLDB Server @3fd006e8] hsqldb.db.HSQLDB5D881E61E7.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:38,897 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:38,914 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:38,940 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:38,941 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9010/hsql-testdb] 2017-07-28 09:34:38,941 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:38,941 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:38,941 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:39,044 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:39,054 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:39,178 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@ebbe9f3] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:39,183 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@187bb01c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:39,216 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:39,262 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:39,526 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#883186074 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:39,573 INFO [main] org.appng.core.service.TemplateService: added resource assets/favicon.ico 2017-07-28 09:34:39,573 INFO [main] org.appng.core.service.TemplateService: added resource conf/platform.xml 2017-07-28 09:34:39,573 INFO [main] org.appng.core.service.TemplateService: added resource resources/dummy.txt 2017-07-28 09:34:39,575 INFO [main] org.appng.core.service.TemplateService: added resource template.xml 2017-07-28 09:34:39,575 INFO [main] org.appng.core.service.TemplateService: added resource xsl/platform.xsl 2017-07-28 09:34:39,575 INFO [main] org.appng.core.service.TemplateService: added resource xsl/utils.xsl 2017-07-28 09:34:39,578 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2136311569 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:39,583 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#465565114 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:39,591 INFO [main] org.appng.core.service.TemplateService: added resource assets/favicon.ico 2017-07-28 09:34:39,591 INFO [main] org.appng.core.service.TemplateService: added resource conf/platform.xml 2017-07-28 09:34:39,591 INFO [main] org.appng.core.service.TemplateService: added resource resources/dummy.txt 2017-07-28 09:34:39,592 INFO [main] org.appng.core.service.TemplateService: added resource template.xml 2017-07-28 09:34:39,593 INFO [main] org.appng.core.service.TemplateService: added resource xsl/platform.xsl 2017-07-28 09:34:39,593 INFO [main] org.appng.core.service.TemplateService: added resource xsl/utils.xsl 2017-07-28 09:34:39,679 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@40f6e092: startup date [Fri Jul 28 09:34:38 CEST 2017]; root of context hierarchy 2017-07-28 09:34:39,680 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:39,680 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9010/hsql-testdb] [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.029 s - in org.appng.core.service.TemplateServiceTest [INFO] Running org.appng.core.service.ApplicationArchiveProcessorTest 2017-07-28 09:34:39,698 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-null' 2017-07-28 09:34:39,698 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-null' 2017-07-28 09:34:39,700 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-null' 2017-07-28 09:34:39,700 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-null' 2017-07-28 09:34:39,700 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-null' 2017-07-28 09:34:39,700 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-null' 2017-07-28 09:34:39,700 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-null' 2017-07-28 09:34:39,701 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-null' 2017-07-28 09:34:39,701 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-null' 2017-07-28 09:34:39,701 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-null' application.xml beans.xml datasources.xml events.xml master.xml page.xml plugin.xml messages-demo.properties mssql/V1.0_script.sql mysql/V1.0_script.sql [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 s - in org.appng.core.service.ApplicationArchiveProcessorTest [INFO] Running org.appng.core.service.DatabaseServiceTest 2017-07-28 09:34:39,707 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:39,707 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@79c4580b, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@47ae88d0, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6191395, org.springframework.test.context.support.DirtiesContextTestExecutionListener@8a99989, org.springframework.test.context.transaction.TransactionalTestExecutionListener@53f68c97, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@602d7631] 2017-07-28 09:34:39,709 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:39,801 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@d325e75: startup date [Fri Jul 28 09:34:39 CEST 2017]; root of context hierarchy 2017-07-28 09:34:39,870 INFO [HSQLDB Server @32e9818b] hsqldb.db.HSQLDB5D881E65FC.ENGINE: Checkpoint start 2017-07-28 09:34:39,870 INFO [HSQLDB Server @32e9818b] hsqldb.db.HSQLDB5D881E65FC.ENGINE: checkpointClose start 2017-07-28 09:34:39,877 INFO [HSQLDB Server @32e9818b] hsqldb.db.HSQLDB5D881E65FC.ENGINE: checkpointClose synched 2017-07-28 09:34:39,887 INFO [HSQLDB Server @32e9818b] hsqldb.db.HSQLDB5D881E65FC.ENGINE: checkpointClose script done 2017-07-28 09:34:39,909 INFO [HSQLDB Server @32e9818b] hsqldb.db.HSQLDB5D881E65FC.ENGINE: checkpointClose end 2017-07-28 09:34:39,909 INFO [HSQLDB Server @32e9818b] hsqldb.db.HSQLDB5D881E65FC.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:39,951 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:39,967 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:39,994 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:39,994 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:39,995 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:39,995 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:39,995 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:40,097 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:40,104 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:40,223 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:40,273 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:40,530 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:34:40,542 INFO [main] org.flywaydb.core.internal.util.VersionPrinter: Flyway 4.2.0 by Boxfuse 2017-07-28 09:34:40,663 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:34:40,722 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Repair of failed migration in metadata table "PUBLIC"."schema_version" not necessary. No failed migration detected. 2017-07-28 09:34:40,737 INFO [main] org.flywaydb.core.internal.command.DbRepair: Successfully repaired metadata table "PUBLIC"."schema_version" (execution time 00:00.018s). 2017-07-28 09:34:40,737 INFO [main] org.flywaydb.core.internal.command.DbRepair: Manual cleanup of the remaining effects the failed migration may still be required. 2017-07-28 09:34:40,873 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.009s) 2017-07-28 09:34:41,163 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:34:41,175 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:34:41,182 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:34:41,204 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:34:41,214 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:34:41,220 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:34:41,226 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:34:41,231 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:34:41,237 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:34:41,242 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:34:41,248 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:34:41,253 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.092s). 2017-07-28 09:34:41,492 INFO [main] org.appng.core.service.DatabaseService: HSQL jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) is active. 2017-07-28 09:34:41,787 WARN [main] org.appng.core.domain.DatabaseConnection: error while connecting to jdbc:mysql://localhost:3306/appNG MYSQL (java.sql.SQLException:Access denied for user 'user'@'localhost' (using password: NO)) 2017-07-28 09:34:41,787 INFO [main] org.appng.core.service.DatabaseService: MYSQL jdbc:mysql://localhost:3306/appNG MYSQL is not working and will be deactivated. 2017-07-28 09:34:41,816 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@d325e75: startup date [Fri Jul 28 09:34:39 CEST 2017]; root of context hierarchy 2017-07-28 09:34:41,817 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:41,817 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [WARNING] Tests run: 4, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 2.119 s - in org.appng.core.service.DatabaseServiceTest [INFO] Running org.appng.core.service.InitializerServiceTest 2017-07-28 09:34:41,834 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:41,834 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@2fd2cf1f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6f54230a, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@370efa14, org.springframework.test.context.support.DirtiesContextTestExecutionListener@e9fcd1e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@378c41e5, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@798e786d] 2017-07-28 09:34:41,835 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:41,940 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@3990f312: startup date [Fri Jul 28 09:34:41 CEST 2017]; root of context hierarchy 2017-07-28 09:34:42,088 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:42,101 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:42,121 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:42,121 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9010/hsql-testdb] 2017-07-28 09:34:42,121 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:42,121 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:42,122 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:42,223 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:42,229 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:42,333 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5adba350] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:42,341 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@29a8c1fb] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:42,361 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:42,414 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:42,581 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@783e1529 testClass = InitializerServiceTest, testInstance = org.appng.core.service.InitializerServiceTest@303bbd02, testMethod = testInitPlatform@InitializerServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@8d4d58b testClass = InitializerServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.InitializerServiceTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@6448398f]; rollback [false] 2017-07-28 09:34:42,584 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#625046082 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:42,773 INFO [main] org.appng.api.messaging.Messaging: system property appng.node.id is not set, using local host name de-f2-p-appngdev0 as fallback 2017-07-28 09:34:42,773 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:34:42,773 INFO [main] org.appng.core.service.InitializerService: applications are located at /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/applications or in the database 2017-07-28 09:34:42,863 INFO [main] org.appng.core.service.InitializerService: ========================================================================================== 2017-07-28 09:34:42,878 INFO [main] org.appng.core.service.InitializerService: loading site site-1 (host-1) 2017-07-28 09:34:42,878 INFO [main] org.appng.core.service.InitializerService: loading applications for site site-1 2017-07-28 09:34:42,883 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/root/WEB-INF/cache/platform/site-1 2017-07-28 09:34:42,883 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/root/WEB-INF/cache/application/site-1 2017-07-28 09:34:42,894 INFO [main] net.sf.ehcache.pool.sizeof.filter.AnnotationSizeOfFilter: Using regular expression provided through VM argument net.sf.ehcache.pool.sizeof.ignore.pattern for IgnoreSizeOf annotation : ^.*cache\..*IgnoreSizeOf$ 2017-07-28 09:34:42,902 INFO [main] net.sf.ehcache.pool.sizeof.AgentLoader: Located valid 'tools.jar' at '/usr/lib/jvm/jdk-8-oracle-x64/jre/../lib/tools.jar' 2017-07-28 09:34:42,957 INFO [main] net.sf.ehcache.pool.sizeof.JvmInformation: Detected JVM data model settings of: 64-Bit HotSpot JVM with Compressed OOPs 2017-07-28 09:34:43,202 INFO [main] net.sf.ehcache.pool.sizeof.AgentLoader: Extracted agent jar to temporary file /tmp/ehcache-sizeof-agent265635918193319181.jar 2017-07-28 09:34:43,203 INFO [main] net.sf.ehcache.pool.sizeof.AgentLoader: Trying to load agent @ /tmp/ehcache-sizeof-agent265635918193319181.jar 2017-07-28 09:34:43,212 INFO [main] net.sf.ehcache.pool.impl.DefaultSizeOfEngine: using Agent sizeof engine 2017-07-28 09:34:43,306 INFO [main] org.appng.core.service.TemplateService: copying template from /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/test/resources/template/appng to /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/repository/site-1/www/template 2017-07-28 09:34:43,307 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1244858050 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:43,307 INFO [main] org.appng.core.service.InitializerService: SiteClassLoader#1244858050 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 2017-07-28 09:34:43,311 INFO [main] org.appng.core.service.InitializerService: starting index thread 2017-07-28 09:34:43,312 INFO [main] org.appng.core.service.InitializerService: loading site site-1 completed 2017-07-28 09:34:43,312 INFO [main] org.appng.core.service.InitializerService: ========================================================================================== 2017-07-28 09:34:43,312 ERROR [main] org.appng.core.service.InitializerService: no messaging sender available! 2017-07-28 09:34:43,324 INFO [main] org.appng.core.service.InitializerService: Current Ehcache configuration: 2017-07-28 09:34:43,398 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@783e1529 testClass = InitializerServiceTest, testInstance = org.appng.core.service.InitializerServiceTest@303bbd02, testMethod = testInitPlatform@InitializerServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@8d4d58b testClass = InitializerServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.InitializerServiceTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:43,399 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@3990f312: startup date [Fri Jul 28 09:34:41 CEST 2017]; root of context hierarchy 2017-07-28 09:34:43,400 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:43,400 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9010/hsql-testdb] [WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 1.573 s - in org.appng.core.service.InitializerServiceTest [INFO] Running org.appng.core.service.CoreServiceTest 2017-07-28 09:34:43,412 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:43,413 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@2cdaf44c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@79a52138, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@33431376, org.springframework.test.context.support.DirtiesContextTestExecutionListener@428551db, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3986b553, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@69faffba] 2017-07-28 09:34:43,414 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:43,495 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@42099950: startup date [Fri Jul 28 09:34:43 CEST 2017]; root of context hierarchy 2017-07-28 09:34:43,576 INFO [HSQLDB Server @7d425bf1] hsqldb.db.HSQLDB5D881E7474.ENGINE: Checkpoint start 2017-07-28 09:34:43,579 INFO [HSQLDB Server @7d425bf1] hsqldb.db.HSQLDB5D881E7474.ENGINE: checkpointClose start 2017-07-28 09:34:43,587 INFO [HSQLDB Server @7d425bf1] hsqldb.db.HSQLDB5D881E7474.ENGINE: checkpointClose synched 2017-07-28 09:34:43,597 INFO [HSQLDB Server @7d425bf1] hsqldb.db.HSQLDB5D881E7474.ENGINE: checkpointClose script done 2017-07-28 09:34:43,613 INFO [HSQLDB Server @7d425bf1] hsqldb.db.HSQLDB5D881E7474.ENGINE: checkpointClose end 2017-07-28 09:34:43,614 INFO [HSQLDB Server @7d425bf1] hsqldb.db.HSQLDB5D881E7474.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:43,644 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:43,659 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:43,684 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:43,684 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:43,685 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:43,685 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:43,685 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:43,795 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:43,803 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:43,916 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3b7e2f1d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:43,920 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@51da0191] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:43,941 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:43,988 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:34:44,131 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@1c87dc0d, testMethod = testAddApplicationRolesToGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:44,342 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1354302773 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,403 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1672993892 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,462 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1582789771 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,544 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@1c87dc0d, testMethod = testAddApplicationRolesToGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:44,547 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@2a7554df, testMethod = testAddGroupsToSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:44,596 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1162929239 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,619 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#956244325 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,643 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#52093647 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,813 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@2a7554df, testMethod = testAddGroupsToSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:44,817 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@58a9b1b9, testMethod = testAssignApplicationRolesToGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:44,862 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#874957069 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,888 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1239110712 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,911 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#682842559 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,929 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@58a9b1b9, testMethod = testAssignApplicationRolesToGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:44,931 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@18973d91, testMethod = testAssignApplicationToSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:44,950 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1689070505 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,963 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#940477200 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:44,976 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#572910345 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,001 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/platform/site-1/foobar 2017-07-28 09:34:45,002 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/application/site-1/foobar 2017-07-28 09:34:45,015 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@18973d91, testMethod = testAssignApplicationToSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,017 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3d8f2daa, testMethod = testAssignGroupsToSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,054 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1333784258 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,074 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1242447350 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,093 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#669219027 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,114 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3d8f2daa, testMethod = testAssignGroupsToSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,116 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@be9505d, testMethod = testCreateApplicationProperty@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,148 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1221770347 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,172 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1537631645 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,184 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1693410204 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,189 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@be9505d, testMethod = testCreateApplicationProperty@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,196 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@547dd11e, testMethod = testCreateApplicationRepository@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,214 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#44568807 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,227 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1094310128 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,237 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1549836103 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,241 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@547dd11e, testMethod = testCreateApplicationRepository@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,243 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@624bc592, testMethod = testCreateDatabaseConnection@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,259 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#234562470 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,268 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1389453324 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,276 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#334999761 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,280 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@624bc592, testMethod = testCreateDatabaseConnection@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,282 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@218b7797, testMethod = testCreateGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,299 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1537830386 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,313 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#779070453 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,323 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1644524273 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,328 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@218b7797, testMethod = testCreateGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,330 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3e187145, testMethod = testCreatePropertyForApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,348 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#751260576 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,357 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1817217316 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,364 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1797491783 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,368 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3e187145, testMethod = testCreatePropertyForApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,369 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7f7ac444, testMethod = testCreatePropertyForSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,384 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2075829197 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,392 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#454538699 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,400 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#757746912 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,404 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7f7ac444, testMethod = testCreatePropertyForSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,405 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@38dd3dd5, testMethod = testCreatePropertyForSiteAndApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,419 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2030580672 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,428 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#232258568 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,435 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#944572215 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,439 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@38dd3dd5, testMethod = testCreatePropertyForSiteAndApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,441 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@74386944, testMethod = testCreateSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,455 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1631386120 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,463 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#220538805 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,471 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#366773437 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,520 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@74386944, testMethod = testCreateSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,521 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@25b0fd0c, testMethod = testCreateSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,536 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2144973744 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,544 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1067692896 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,594 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#716901982 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,607 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1781104767 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,614 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@25b0fd0c, testMethod = testCreateSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,617 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@47fb7f9, testMethod = testDeleteApplicationRepository@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,645 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#387675565 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,657 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1540927 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,667 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1909006601 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,674 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#912557855 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,684 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@47fb7f9, testMethod = testDeleteApplicationRepository@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,686 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@f94dd0d, testMethod = testDeleteApplicationRole@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,707 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#661369942 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,717 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1568066739 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,725 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1980375517 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,732 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#838536438 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,740 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@f94dd0d, testMethod = testDeleteApplicationRole@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,741 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@1848ec86, testMethod = testDeleteApplicationRoleInvalid@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,762 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2047699790 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,771 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1722402423 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,778 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#875978158 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,785 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2061281899 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,787 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@1848ec86, testMethod = testDeleteApplicationRoleInvalid@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,789 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3f2be1a2, testMethod = testDeleteApplicationSiteActive@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [true] 2017-07-28 09:34:45,803 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1435422298 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,811 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2067899385 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,819 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2077489914 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,825 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1426914758 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,833 ERROR [main] org.appng.core.service.CoreService: Cannot delete application with ID 2: bugtracker 2017-07-28 09:34:45,834 INFO [main] org.springframework.test.context.transaction.TransactionContext: Rolled back transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3f2be1a2, testMethod = testDeleteApplicationSiteActive@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,836 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@1bf6f5bb, testMethod = testDeleteSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,849 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#275941124 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,859 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1849767197 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,868 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1308543211 for site site-3 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,876 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2062844455 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,886 INFO [main] org.appng.core.service.CoreService: starting deletion of site site-3 2017-07-28 09:34:45,893 INFO [main] org.appng.core.service.CoreService: unlinking application foobar from site site-3, status of database-connection is NO_DB_SUPPORTED 2017-07-28 09:34:45,901 INFO [main] org.appng.core.service.CoreService: deleting 0 orphaned database connections 2017-07-28 09:34:45,920 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/platform/site-3 2017-07-28 09:34:45,920 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/application/site-3 2017-07-28 09:34:45,920 INFO [main] org.appng.core.service.CoreService: done deleting site site-3 2017-07-28 09:34:45,922 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@1bf6f5bb, testMethod = testDeleteSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,924 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4fcaa4db, testMethod = testDeleteSiteWithEnvironment@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:45,937 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1205393448 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,946 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1423609899 for site site-2 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,952 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#923358362 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:45,958 INFO [main] org.appng.core.service.CoreService: starting deletion of site site-2 2017-07-28 09:34:45,960 INFO [main] org.appng.core.service.CoreService: unlinking application bugtracker from site site-2, status of database-connection is NO_DB_SUPPORTED 2017-07-28 09:34:45,964 INFO [main] org.appng.core.service.CoreService: destroying site site-2 2017-07-28 09:34:45,964 INFO [main] org.appng.core.domain.SiteImpl: closing context for site site-2 2017-07-28 09:34:45,965 INFO [main] org.appng.core.service.CoreService: destroying site site-2 complete 2017-07-28 09:34:45,969 INFO [main] org.appng.core.service.CoreService: deleting 0 orphaned database connections 2017-07-28 09:34:45,971 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/platform/site-2 2017-07-28 09:34:45,971 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/application/site-2 2017-07-28 09:34:45,971 INFO [main] org.appng.core.service.CoreService: done deleting site site-2 2017-07-28 09:34:45,988 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4fcaa4db, testMethod = testDeleteSiteWithEnvironment@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:45,990 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6f0e1b71, testMethod = testDeleteSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,005 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#926678006 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,010 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1979473740 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,014 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6f0e1b71, testMethod = testDeleteSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,016 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4a29521, testMethod = testFindApplicationByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,028 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1565507715 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,034 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#731875430 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,036 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4a29521, testMethod = testFindApplicationByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,038 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@72292f, testMethod = testGetApplicationFolder@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,050 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#291636342 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,057 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#494773649 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,058 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@72292f, testMethod = testGetApplicationFolder@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,060 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@210e8d34, testMethod = testGetApplicationProperties@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,074 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#794914364 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,080 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#976763806 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,084 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@210e8d34, testMethod = testGetApplicationProperties@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,085 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@5f1975cd, testMethod = testGetApplicationRepositories@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,097 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1402740973 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,102 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#402436442 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,106 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@5f1975cd, testMethod = testGetApplicationRepositories@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,107 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3c3eef64, testMethod = testGetApplicationRolesForApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,119 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#256639709 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,125 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1438400820 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,130 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3c3eef64, testMethod = testGetApplicationRolesForApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,131 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@738607d9, testMethod = testGetApplicationRootFolder@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,143 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#922148393 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,149 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1622889416 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,150 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@738607d9, testMethod = testGetApplicationRootFolder@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,151 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4f72b9db, testMethod = testGetGroupByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,163 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#595060797 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,169 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1420625128 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,171 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4f72b9db, testMethod = testGetGroupByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,173 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@19d0dc74, testMethod = testGetGroups@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,185 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1284722247 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,191 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1384118912 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,193 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@19d0dc74, testMethod = testGetGroups@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,195 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@478dc67c, testMethod = testGetPropertiesIntegerInteger@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,208 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#961180473 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,214 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#799331384 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,217 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@478dc67c, testMethod = testGetPropertiesIntegerInteger@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,218 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7c588c8a, testMethod = testGetPropertiesStringString@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,231 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#666333549 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,236 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1783796349 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,240 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7c588c8a, testMethod = testGetPropertiesStringString@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,241 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@125c6004, testMethod = testGetSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,253 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#295080070 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,258 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1080685417 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,264 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@125c6004, testMethod = testGetSite@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,265 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@59c550bd, testMethod = testGetSiteByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,278 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1438376914 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,283 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1086711690 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,290 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@59c550bd, testMethod = testGetSiteByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,291 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@5d6877cb, testMethod = testGetSiteIds@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,303 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1561465622 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,308 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1463074004 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,310 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@5d6877cb, testMethod = testGetSiteIds@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,311 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@567b5001, testMethod = testGetSites@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,324 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1880508564 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,329 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1772165228 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,332 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@567b5001, testMethod = testGetSites@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,333 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7d32d6af, testMethod = testGetSubjectByEmail@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,345 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#47525741 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,350 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2123578406 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,355 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7d32d6af, testMethod = testGetSubjectByEmail@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,356 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@69ff5aca, testMethod = testGetSubjectById@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,368 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1814413487 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,373 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#676911437 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,375 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@69ff5aca, testMethod = testGetSubjectById@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,377 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@23163234, testMethod = testGetSubjectByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,389 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#270404056 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,394 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1951455915 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,396 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@23163234, testMethod = testGetSubjectByName@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,398 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6d73c7e1, testMethod = testGetSubjects@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,410 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#610845553 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,415 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#184710968 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,418 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6d73c7e1, testMethod = testGetSubjects@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,420 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7b3c0d0c, testMethod = testInitSitePropertiesSiteImpl@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,432 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#303685553 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,437 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#15127269 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,445 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7b3c0d0c, testMethod = testInitSitePropertiesSiteImpl@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,447 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@25cf63c6, testMethod = testLdapLogin@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,458 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#849455807 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,464 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#123786424 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,477 INFO [main] org.appng.core.service.LdapService: LDAP operation failed on host 'ldap::' with user 'EXAMPLE\subject-2'(javax.naming.InvalidNameException: Invalid name: :) 2017-07-28 09:34:46,478 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@25cf63c6, testMethod = testLdapLogin@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,480 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4643b082, testMethod = testLdapLoginGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,492 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1187047003 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,497 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1118618235 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,506 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4643b082, testMethod = testLdapLoginGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:46,507 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6a616446, testMethod = testLogin@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:46,519 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1398399632 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:46,526 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1067961474 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:47,350 INFO [main] org.appng.core.service.CoreService: successfully logged in user 'subject-3' 2017-07-28 09:34:47,351 INFO [main] org.appng.core.service.CoreService: 'null' logged out 2017-07-28 09:34:47,354 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6a616446, testMethod = testLogin@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:47,355 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6e90f8f, testMethod = testLoginDigest@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:47,371 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#738169886 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:47,378 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1178323183 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:47,385 INFO [main] org.appng.core.security.DigestValidator: Digest successfully validated. 2017-07-28 09:34:47,385 INFO [main] org.appng.core.service.CoreService: successfully logged in user 'subject-3' 2017-07-28 09:34:47,385 INFO [main] org.appng.core.service.CoreService: 'null' logged out 2017-07-28 09:34:47,386 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6e90f8f, testMethod = testLoginDigest@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:47,388 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7051e679, testMethod = testLoginGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:47,405 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1525163776 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:47,418 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#14386442 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:48,169 INFO [main] org.appng.core.service.CoreService: successfully logged in user 'johndoe' 2017-07-28 09:34:48,171 INFO [main] org.appng.core.service.CoreService: 'null' logged out 2017-07-28 09:34:48,173 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7051e679, testMethod = testLoginGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:48,174 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3f4d4652, testMethod = testLoginPrincipal@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:48,203 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1375509734 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:48,212 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1899753459 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:48,221 INFO [main] org.appng.core.service.CoreService: user subject-2 found 2017-07-28 09:34:48,221 INFO [main] org.appng.core.service.CoreService: successfully logged in user 'subject-2' 2017-07-28 09:34:48,222 INFO [main] org.appng.core.service.CoreService: 'null' logged out 2017-07-28 09:34:48,223 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@3f4d4652, testMethod = testLoginPrincipal@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:48,225 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@704e7490, testMethod = testLoginPrincipalWithGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:48,240 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#115076357 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:48,247 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#57747982 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:48,250 INFO [main] org.appng.core.service.CoreService: Subject authentication failed. Trying to authenticate based on LDAP group membership. 2017-07-28 09:34:48,252 INFO [main] org.appng.core.service.CoreService: user 'null' belongs to group 'subject-1' 2017-07-28 09:34:48,255 INFO [main] org.appng.core.service.CoreService: User "null" successfully authenticated. 2017-07-28 09:34:48,255 INFO [main] org.appng.core.service.CoreService: successfully logged in user 'null' 2017-07-28 09:34:48,255 INFO [main] org.appng.core.service.CoreService: 'null' logged out 2017-07-28 09:34:48,256 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@704e7490, testMethod = testLoginPrincipalWithGroup@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:48,258 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@a1d0722, testMethod = testMigratePassword@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:48,272 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1404913868 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:48,278 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1123500948 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,112 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@a1d0722, testMethod = testMigratePassword@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:49,114 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6c808b47, testMethod = testProvideApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:49,129 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1654801430 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,135 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#823465287 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,137 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.2' from repository file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/zip 2017-07-28 09:34:49,156 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.2 2017-07-28 09:34:49,172 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:34:49,174 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:34:49,175 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:34:49,184 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:34:49,185 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:34:49,186 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:34:49,186 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:34:49,189 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:34:49,189 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:34:49,207 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,207 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,208 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,208 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,208 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,208 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,209 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,209 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,209 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,209 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.2' 2017-07-28 09:34:49,209 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.2 to target/ROOT/applications/demo-application 2017-07-28 09:34:49,216 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:34:49,217 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:34:49,218 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:34:49,220 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:34:49,236 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@6c808b47, testMethod = testProvideApplication@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:49,238 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7c554fe8, testMethod = testProvideApplicationUpdate@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:49,261 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1871159793 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,266 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#857485467 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,295 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/platform/site-1/demo-application 2017-07-28 09:34:49,295 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/ROOT/WEB-INF/cache/application/site-1/demo-application 2017-07-28 09:34:49,298 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/zip 2017-07-28 09:34:49,315 INFO [main] org.appng.core.service.CoreService: updating application demo-application-1.5.3 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,318 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,319 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,319 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:34:49,319 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/ROOT/applications/demo-application 2017-07-28 09:34:49,337 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:34:49,340 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:34:49,341 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:34:49,342 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:34:49,344 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:34:49,345 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:34:49,349 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:34:49,349 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:34:49,369 INFO [main] org.appng.core.service.CoreService: loading properties for application 'demo-application' of site 'site-1' 2017-07-28 09:34:49,370 INFO [main] org.appng.core.service.CoreService: loading properties for application demo-application 2017-07-28 09:34:49,374 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@7c554fe8, testMethod = testProvideApplicationUpdate@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:49,375 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@75644d58, testMethod = testProvideApplicationUpdateDelete@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:49,390 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#502818363 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,396 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#213471988 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,507 INFO [main] org.appng.core.service.CoreService: unlinking application demo-application from site site-1, status of database-connection is NO_DB_SUPPORTED 2017-07-28 09:34:49,533 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@75644d58, testMethod = testProvideApplicationUpdateDelete@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:49,535 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@85513b3, testMethod = testProvideApplicationWithAdminRole@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:49,553 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2019128739 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,559 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1840203058 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,562 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.4' from repository file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/test-classes/zip 2017-07-28 09:34:49,579 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.4 2017-07-28 09:34:49,592 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:34:49,593 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:34:49,594 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:34:49,594 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:34:49,597 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:34:49,598 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:34:49,599 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:34:49,599 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:34:49,603 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:34:49,604 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:34:49,604 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:34:49,605 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:34:49,605 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:34:49,629 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,629 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,630 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.4' 2017-07-28 09:34:49,631 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.4 to target/ROOT/applications/demo-application 2017-07-28 09:34:49,638 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:34:49,639 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:34:49,640 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:34:49,642 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:34:49,643 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:34:49,645 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:34:49,650 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@85513b3, testMethod = testProvideApplicationWithAdminRole@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:49,652 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4c86efff, testMethod = testReloadRepository@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:49,664 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#83073619 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,669 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#91221942 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,671 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@4c86efff, testMethod = testReloadRepository@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:49,673 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@48b36b5d, testMethod = testResetPassword@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:49,684 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2053990056 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:49,689 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1786153760 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,512 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@48b36b5d, testMethod = testResetPassword@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:50,514 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@786e3f66, testMethod = testRestoreSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:50,524 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#513585334 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,528 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1185157522 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,531 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@786e3f66, testMethod = testRestoreSubject@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:50,532 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@2a55e40b, testMethod = testSaveProperties@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:50,541 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#616186877 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,545 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1010695746 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,547 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@2a55e40b, testMethod = testSaveProperties@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:50,548 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@263fd708, testMethod = testSaveProperty@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:50,556 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1784197445 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,560 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#671761665 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,561 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@263fd708, testMethod = testSaveProperty@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:50,562 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@2b73e956, testMethod = testUnlinkApplicationFromSiteIntegerString@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:50,571 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2060806744 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,574 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#729929196 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,576 INFO [main] org.appng.core.service.CoreService: unlinking application manager from site site-1, status of database-connection is NO_DB_SUPPORTED 2017-07-28 09:34:50,578 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@2b73e956, testMethod = testUnlinkApplicationFromSiteIntegerString@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:50,579 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@46a78476, testMethod = testUpdatePassword@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64099331]; rollback [false] 2017-07-28 09:34:50,586 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1487989462 for site site-1 with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:50,591 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#85720247 for site example with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:51,266 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@194d90ea testClass = CoreServiceTest, testInstance = org.appng.core.service.CoreServiceTest@46a78476, testMethod = testUpdatePassword@CoreServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1ffb6ee8 testClass = CoreServiceTest, locations = '{classpath:platformContext.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.core.service.TestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:34:51,267 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@42099950: startup date [Fri Jul 28 09:34:43 CEST 2017]; root of context hierarchy 2017-07-28 09:34:51,267 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:51,268 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [WARNING] Tests run: 79, Failures: 0, Errors: 0, Skipped: 20, Time elapsed: 7.866 s - in org.appng.core.service.CoreServiceTest [INFO] Running org.appng.core.service.LdapServiceTest 2017-07-28 09:34:51,331 INFO [main] org.appng.core.service.LdapService: LDAP operation failed on host 'ldap:localhost:389' with user 'EXAMPLE\username'(javax.naming.NamingException: wrong password) [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.058 s - in org.appng.core.service.LdapServiceTest [INFO] Running org.appng.core.controller.RequestUtilTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 s - in org.appng.core.controller.RequestUtilTest [INFO] Running org.appng.core.controller.PlatformProcessorTest 2017-07-28 09:34:51,359 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#72092230 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:51,370 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1318607200 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:51,806 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1655297511 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:51,811 ERROR [main] org.appng.core.model.PlatformProcessor: error while processing java.lang.NullPointerException at org.appng.core.model.PlatformProcessor.getPlatform(PlatformProcessor.java:72) at org.appng.core.model.AbstractRequestProcessor.processPlatform(AbstractRequestProcessor.java:114) at org.appng.core.model.PlatformProcessor.processWithTemplate(PlatformProcessor.java:87) at org.appng.core.controller.PlatformProcessorTest.testTransformError(PlatformProcessorTest.java:136) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:34:51,814 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1622543651 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.491 s - in org.appng.core.controller.PlatformProcessorTest [INFO] Running org.appng.core.controller.messaging.MessagingTest 2017-07-28 09:34:51,847 INFO [main] org.appng.core.controller.messaging.MulticastReceiver: received message from localhost: org.appng.core.controller.messaging.MessagingTest - Origin: appng.node2 - Site: example.com 2017-07-28 09:34:51,847 INFO [main] org.appng.core.controller.messaging.MulticastReceiver: about to execute org.appng.core.controller.messaging.MessagingTest - Origin: appng.node2 - Site: example.com received from localhost 2017-07-28 09:34:51,848 INFO [main] org.appng.core.controller.messaging.MulticastReceiver: received message from localhost: org.appng.core.controller.messaging.MessagingTest - Origin: appng.node2 - Site: localhost 2017-07-28 09:34:51,848 INFO [main] org.appng.core.controller.messaging.MulticastReceiver: about to execute org.appng.core.controller.messaging.MessagingTest - Origin: appng.node2 - Site: localhost received from localhost [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 s - in org.appng.core.controller.messaging.MessagingTest [INFO] Running org.appng.core.controller.filter.RedirectFilterTest 2017-07-28 09:34:51,862 INFO [main] org.springframework.mock.web.MockServletContext: org.tuckey.web.filters.urlrewrite.UrlRewriteFilter INFO: conf reload check set to 5000s 2017-07-28 09:34:51,886 INFO [main] org.springframework.mock.web.MockServletContext: org.tuckey.web.filters.urlrewrite.UrlRewriteFilter INFO: loaded (conf ok) 2017-07-28 09:34:51,900 INFO [main] org.springframework.mock.web.MockServletContext: org.tuckey.web.filters.urlrewrite.UrlRewriteFilter INFO: loaded (conf ok) [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.056 s - in org.appng.core.controller.filter.RedirectFilterTest [INFO] Running org.appng.core.controller.filter.JspExtensionFilterTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.021 s - in org.appng.core.controller.filter.JspExtensionFilterTest [INFO] Running org.appng.core.controller.PlatformStartupTest 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: Launching appNG, the Next Generation Application Platform ... 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: - - ---- ----------------------------------------- -------- - - 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: ____ _______ _____ .---,,--,-^²²^-,. 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: .,--^^²´´ `^^²´´ `²^-.-²´´ ``²---´ dSb. db ,dS$P² < 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: ,-´_.dSS$§§§§$Sb. .dS$§§§§§$Sb. : .dS$§§§§$SSb. : $§4b.$$ l$´ ss ; 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: ,/ .dS$SP²^^^²4$§§$ $§§$P²^^^²4S$$b.`4$$P²^^^²4S§$b. 4$`4b$P `4S$SP | 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: ! .$§SP° $§§$ $§§$´ `4S§$.`4$´ `4S§$. .-----^²------´ 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: ; [$§$l $§§$ $§§$ l$§$] l$ l$§$] ! 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: l.`S$Sb. $§§$ $§§$ ,dS$S´ d$ ,dS$S´ ; 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: \ `4S$Sbsaaasd$§§$ $§§$ssaaasdS$SP´,d$$ssaaasdS$SP´ l 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: \_ ``4SS$§§§§§§§$ $§§§§§§§$SSP´´ $§§§§§§§$SSP´´_.^ 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: `----,_,.____,. $$$$ ___.___,^ $$$$ ___.,--^ 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: _ _ ______ ____ ! $§§$ ! ____ _ ! $$$$ | ________ _______ ____ _ _ 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: | $$$$ ; l $$$$ ; 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: `--,.-^´ `--,.-^´ 2017-07-28 09:34:51,946 INFO [main] org.appng.core.controller.PlatformStartup: 2017-07-28 09:34:51,948 INFO [main] org.appng.core.service.HsqlStarter: starting HSQL Server 2.4.0 at /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/WEB-INF/database/appng on port 9050 2017-07-28 09:34:51,970 INFO [HSQLDB Server @65a3edc8] hsqldb.db.HSQLDB5D881E9541.ENGINE: Checkpoint start 2017-07-28 09:34:51,970 INFO [HSQLDB Server @65a3edc8] hsqldb.db.HSQLDB5D881E9541.ENGINE: checkpointClose start 2017-07-28 09:34:51,977 INFO [HSQLDB Server @65a3edc8] hsqldb.db.HSQLDB5D881E9541.ENGINE: checkpointClose synched 2017-07-28 09:34:51,988 INFO [HSQLDB Server @65a3edc8] hsqldb.db.HSQLDB5D881E9541.ENGINE: checkpointClose script done 2017-07-28 09:34:52,007 INFO [HSQLDB Server @65a3edc8] hsqldb.db.HSQLDB5D881E9541.ENGINE: checkpointClose end 2017-07-28 09:34:52,007 INFO [HSQLDB Server @65a3edc8] hsqldb.db.HSQLDB5D881E9541.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:52,155 INFO [main] org.appng.core.service.MigrationService: connected to jdbc:hsqldb:hsql://localhost:9050/appng (HSQL Database Engine 2.4.0) 2017-07-28 09:34:52,258 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9050/appng (HSQL Database Engine 2.4) 2017-07-28 09:34:52,263 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Repair of failed migration in metadata table "PUBLIC"."schema_version" not necessary. No failed migration detected. 2017-07-28 09:34:52,272 INFO [main] org.flywaydb.core.internal.command.DbRepair: Successfully repaired metadata table "PUBLIC"."schema_version" (execution time 00:00.009s). 2017-07-28 09:34:52,272 INFO [main] org.flywaydb.core.internal.command.DbRepair: Manual cleanup of the remaining effects the failed migration may still be required. 2017-07-28 09:34:52,391 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.005s) 2017-07-28 09:34:52,401 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:34:52,414 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:34:52,418 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:34:52,443 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:34:52,455 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:34:52,459 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:34:52,463 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:34:52,466 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:34:52,478 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:34:52,482 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:34:52,485 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:34:52,489 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.088s). 2017-07-28 09:34:52,489 INFO [main] org.appng.core.controller.PlatformStartup: Platform connection: HSQL jdbc:hsqldb:hsql://localhost:9050/appng 2017-07-28 09:34:52,489 INFO [main] org.appng.core.controller.PlatformStartup: appNG null started in 543 ms. 2017-07-28 09:34:52,489 INFO [main] org.appng.core.controller.PlatformStartup: ==================================================================================================== 2017-07-28 09:34:57,491 INFO [main] org.appng.core.controller.PlatformStartup: appNG stopped. 2017-07-28 09:34:57,492 INFO [main] org.appng.core.controller.PlatformStartup: ==================================================================================================== [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.565 s - in org.appng.core.controller.PlatformStartupTest [INFO] Running org.appng.core.controller.SessionListenerTest 2017-07-28 09:34:57,563 INFO [main] org.appng.core.controller.SessionListener: Session created: ZUS383883OTOTOLSKKL (created: 2017-07-28 09:34:57) 2017-07-28 09:34:57,565 INFO [main] org.appng.core.controller.SessionListener: Session created: ERTERTZGFHFGHGFH234 (created: 2017-07-28 09:34:57) 2017-07-28 09:34:57,566 INFO [main] org.appng.core.controller.SessionListener: Session destroyed: ZUS383883OTOTOLSKKL (created: 2017-07-28 09:34:57, accessed: 2017-07-28 09:34:57, requests: 1, domain: http://localhost:8080, user-agent: null) 2017-07-28 09:34:57,567 INFO [main] org.appng.core.controller.SessionListener: Session created: ZUS383883OTOTOLSKKL (created: 2017-07-28 09:34:57) [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.073 s - in org.appng.core.controller.SessionListenerTest [INFO] Running org.appng.core.controller.ApplicationContextTest 2017-07-28 09:34:57,576 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:57,576 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@5806adeb, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@41af157b, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1e65f2d9, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6a27c2e8, org.springframework.test.context.transaction.TransactionalTestExecutionListener@72353b2, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@3e9e9ae0] 2017-07-28 09:34:57,578 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [applications/application1/beans.xml] 2017-07-28 09:34:57,601 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [org/appng/testsupport/application-testcontext.xml] 2017-07-28 09:34:57,608 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [org/appng/testsupport/application-testcontext-jpa.xml] 2017-07-28 09:34:57,616 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@f5c44d0: startup date [Fri Jul 28 09:34:57 CEST 2017]; root of context hierarchy 2017-07-28 09:34:57,716 INFO [HSQLDB Server @3a6b5638] hsqldb.db.HSQLDB5D881EABB4.ENGINE: Checkpoint start 2017-07-28 09:34:57,717 INFO [HSQLDB Server @3a6b5638] hsqldb.db.HSQLDB5D881EABB4.ENGINE: checkpointClose start 2017-07-28 09:34:57,724 INFO [HSQLDB Server @3a6b5638] hsqldb.db.HSQLDB5D881EABB4.ENGINE: checkpointClose synched 2017-07-28 09:34:57,734 INFO [HSQLDB Server @3a6b5638] hsqldb.db.HSQLDB5D881EABB4.ENGINE: checkpointClose script done 2017-07-28 09:34:57,755 INFO [HSQLDB Server @3a6b5638] hsqldb.db.HSQLDB5D881EABB4.ENGINE: checkpointClose end 2017-07-28 09:34:57,756 INFO [HSQLDB Server @3a6b5638] hsqldb.db.HSQLDB5D881EABB4.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:34:57,829 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'default' 2017-07-28 09:34:57,831 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: default ...] 2017-07-28 09:34:57,963 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:57,971 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:58,232 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'default' 2017-07-28 09:34:58,649 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@f5c44d0: startup date [Fri Jul 28 09:34:57 CEST 2017]; root of context hierarchy 2017-07-28 09:34:58,649 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'default' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.189 s - in org.appng.core.controller.ApplicationContextTest [INFO] Running org.appng.core.controller.handler.GuiHandlerTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 s - in org.appng.core.controller.handler.GuiHandlerTest [INFO] Running org.appng.core.controller.handler.ServiceRequestHandlerTest 2017-07-28 09:34:58,786 ERROR [main] org.appng.core.controller.handler.ServiceRequestHandler: error while processing service-request /services/foo/bar?jin=fizz java.io.IOException: no such site: foo at org.appng.core.controller.handler.ServiceRequestHandler.handle(ServiceRequestHandler.java:166) at org.appng.core.controller.handler.ServiceRequestHandlerTest.testError(ServiceRequestHandlerTest.java:264) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:34:58,797 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@743e63ce: startup date [Fri Jul 28 09:34:58 CEST 2017]; root of context hierarchy 2017-07-28 09:34:59,013 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/add/{a}/{b}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public org.springframework.http.ResponseEntity org.appng.core.controller.handler.ServiceRequestHandlerTest$FoobarRest.add(java.lang.Integer,java.lang.Integer) 2017-07-28 09:34:59,042 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.context.support.GenericApplicationContext@743e63ce: startup date [Fri Jul 28 09:34:58 CEST 2017]; root of context hierarchy [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.431 s - in org.appng.core.controller.handler.ServiceRequestHandlerTest [INFO] Running org.appng.core.controller.ControllerTest 2017-07-28 09:34:59,207 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,209 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1312810575 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,229 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,230 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1693783990 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,233 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,234 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1183175465 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,235 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,236 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#762191039 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,243 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,244 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#705770404 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,245 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,246 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#578416865 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,248 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,249 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#301313606 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,250 INFO [main] org.appng.core.Redirect : Redirecting request to /de/index (301) 2017-07-28 09:34:59,251 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,251 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1079206049 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,256 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,257 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#31200250 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,258 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,259 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1376333760 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,261 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,262 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#9244689 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,263 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,264 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1068760966 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,265 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,266 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#325961517 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,267 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,268 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1341043251 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,269 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,270 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#2197967 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,271 INFO [main] org.appng.core.Redirect : Redirecting request /de to /de/index (301) 2017-07-28 09:34:59,272 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,273 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#711273423 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,275 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,276 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1903063707 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,279 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,280 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#575952096 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,283 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,284 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#812127353 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,286 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,287 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#177687315 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,288 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,289 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#920801866 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created 2017-07-28 09:34:59,291 INFO [main] org.appng.core.controller.Controller: Controller created 2017-07-28 09:34:59,292 INFO [main] org.appng.api.support.SiteClassLoader: SiteClassLoader#1121452005 for site manager with parent sun.misc.Launcher$AppClassLoader#1252169911 created [INFO] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095 s - in org.appng.core.controller.ControllerTest [INFO] Running org.appng.core.controller.RedirectTest 2017-07-28 09:34:59,296 INFO [main] org.appng.core.Redirect : Redirecting request to /targeturl (301) 2017-07-28 09:34:59,297 INFO [main] org.appng.core.Redirect : Redirecting request to targeturl (302) 2017-07-28 09:34:59,297 INFO [main] org.appng.core.Redirect : Redirecting request to http://www.example.com (301) [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 s - in org.appng.core.controller.RedirectTest [INFO] Running org.appng.core.model.PlatformTransformerTest 2017-07-28 09:34:59,303 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:34:59,303 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6a2ef6ce, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5420851d, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1ae9ce0a, org.springframework.test.context.support.DirtiesContextTestExecutionListener@32e4ad7a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2f61a56e, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7f39d5f2] 2017-07-28 09:34:59,304 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [platformContext.xml] 2017-07-28 09:34:59,410 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@2b74cd81: startup date [Fri Jul 28 09:34:59 CEST 2017]; root of context hierarchy 2017-07-28 09:34:59,562 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:59,578 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: hsql-testdb ...] 2017-07-28 09:34:59,605 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:34:59,606 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:34:59,606 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:34:59,606 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:34:59,606 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:34:59,708 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:34:59,714 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:34:59,850 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@637bc108] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:59,858 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4b8832f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:34:59,877 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:34:59,939 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:00,206 ERROR [main] org.appng.core.model.PlatformTransformer: An empty sequence is not allowed as the value of variable $foo ; SystemID: ; Line#: 6; Column#: -1 net.sf.saxon.trans.XPathException: An empty sequence is not allowed as the value of variable $foo at net.sf.saxon.expr.Expression.typeError(Expression.java:1123) at net.sf.saxon.expr.CardinalityChecker.evaluateItem(CardinalityChecker.java:282) at net.sf.saxon.expr.AtomicSequenceConverter.evaluateItem(AtomicSequenceConverter.java:275) at net.sf.saxon.expr.AtomicSequenceConverter.evaluateItem(AtomicSequenceConverter.java:30) at net.sf.saxon.expr.Expression.evaluateAsString(Expression.java:524) at net.sf.saxon.expr.instruct.SimpleNodeConstructor.processLeavingTail(SimpleNodeConstructor.java:216) at net.sf.saxon.expr.instruct.ValueOf.processLeavingTail(ValueOf.java:280) at net.sf.saxon.expr.instruct.Template.applyLeavingTail(Template.java:336) at net.sf.saxon.trans.Mode.applyTemplates(Mode.java:1124) at net.sf.saxon.Controller.transformDocument(Controller.java:2106) at net.sf.saxon.Controller.transform(Controller.java:1705) at net.sf.saxon.s9api.XsltTransformer.transform(XsltTransformer.java:547) at net.sf.saxon.jaxp.TransformerImpl.transform(TransformerImpl.java:177) at org.appng.core.model.PlatformTransformer.transform(PlatformTransformer.java:323) at org.appng.core.model.PlatformTransformer.transform(PlatformTransformer.java:212) at org.appng.core.model.PlatformTransformerTest.runErrornousTest(PlatformTransformerTest.java:154) at org.appng.core.model.PlatformTransformerTest.testRuntimeError(PlatformTransformerTest.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:35:00,207 INFO [main] org.appng.core.model.PlatformTransformer: writing debug files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/debug with prefix 1930974547- 2017-07-28 09:35:00,222 WARN [main] org.appng.xml.transformation.StyleSheetProvider: [platform.xsl] stylesheet 'src/test/resources/template/appng:utils.xsl' is already defined, contents will be overridden! 2017-07-28 09:35:00,231 ERROR [main] org.appng.core.model.PlatformTransformer: Element xsl:tmplate must not appear directly within xsl:stylesheet ; SystemID: ; Line#: 5; Column#: 25 net.sf.saxon.trans.XPathException: Element xsl:tmplate must not appear directly within xsl:stylesheet at net.sf.saxon.style.StyleElement.compileError(StyleElement.java:2165) at net.sf.saxon.style.XSLPackage.validate(XSLPackage.java:182) at net.sf.saxon.style.StylesheetPackage.preprocess(StylesheetPackage.java:441) at net.sf.saxon.style.Compilation.compilePackage(Compilation.java:180) at net.sf.saxon.style.Compilation.compileSingletonPackage(Compilation.java:94) at net.sf.saxon.s9api.XsltCompiler.compile(XsltCompiler.java:543) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTemplates(SaxonTransformerFactory.java:152) at org.appng.core.model.PlatformTransformer.transform(PlatformTransformer.java:190) at org.appng.core.model.PlatformTransformerTest.runErrornousTest(PlatformTransformerTest.java:154) at org.appng.core.model.PlatformTransformerTest.testCompileError(PlatformTransformerTest.java:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:35:00,232 ERROR [main] org.appng.core.model.PlatformTransformer: Element xsl:tmplate must not appear directly within xsl:stylesheet ; SystemID: ; Line#: 5; Column#: 25 net.sf.saxon.trans.XPathException: Element xsl:tmplate must not appear directly within xsl:stylesheet at net.sf.saxon.style.StyleElement.compileError(StyleElement.java:2165) at net.sf.saxon.style.XSLPackage.validate(XSLPackage.java:182) at net.sf.saxon.style.StylesheetPackage.preprocess(StylesheetPackage.java:442) at net.sf.saxon.style.Compilation.compilePackage(Compilation.java:180) at net.sf.saxon.style.Compilation.compileSingletonPackage(Compilation.java:94) at net.sf.saxon.s9api.XsltCompiler.compile(XsltCompiler.java:543) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTemplates(SaxonTransformerFactory.java:152) at org.appng.core.model.PlatformTransformer.transform(PlatformTransformer.java:190) at org.appng.core.model.PlatformTransformerTest.runErrornousTest(PlatformTransformerTest.java:154) at org.appng.core.model.PlatformTransformerTest.testCompileError(PlatformTransformerTest.java:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:35:00,233 ERROR [main] org.appng.core.model.PlatformTransformer: Unknown XSLT element: tmplate ; SystemID: ; Line#: 5; Column#: 25 net.sf.saxon.trans.XPathException: Unknown XSLT element: tmplate at net.sf.saxon.style.StyleNodeFactory.makeElementNode(StyleNodeFactory.java:283) at net.sf.saxon.tree.linked.LinkedTreeBuilder.startContent(LinkedTreeBuilder.java:251) at net.sf.saxon.style.UseWhenFilter.startContent(UseWhenFilter.java:449) at net.sf.saxon.event.StartTagBuffer.startContent(StartTagBuffer.java:233) at net.sf.saxon.event.ProxyReceiver.startContent(ProxyReceiver.java:178) at net.sf.saxon.event.ProxyReceiver.startContent(ProxyReceiver.java:178) at net.sf.saxon.event.ReceivingContentHandler.startElement(ReceivingContentHandler.java:356) at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:509) at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:374) at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2784) at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:602) at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:112) at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:505) at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:841) at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:770) at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:141) at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1213) at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:643) at net.sf.saxon.event.Sender.sendSAXSource(Sender.java:440) at net.sf.saxon.event.Sender.send(Sender.java:171) at net.sf.saxon.style.StylesheetModule.loadStylesheetModule(StylesheetModule.java:128) at net.sf.saxon.style.Compilation.compilePackage(Compilation.java:131) at net.sf.saxon.style.Compilation.compileSingletonPackage(Compilation.java:94) at net.sf.saxon.s9api.XsltCompiler.compile(XsltCompiler.java:543) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTemplates(SaxonTransformerFactory.java:152) at org.appng.core.model.PlatformTransformer.transform(PlatformTransformer.java:190) at org.appng.core.model.PlatformTransformerTest.runErrornousTest(PlatformTransformerTest.java:154) at org.appng.core.model.PlatformTransformerTest.testCompileError(PlatformTransformerTest.java:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:35:00,234 INFO [main] org.appng.core.model.PlatformTransformer: writing debug files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/debug with prefix 442803541- 2017-07-28 09:35:00,241 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@2b74cd81: startup date [Fri Jul 28 09:34:59 CEST 2017]; root of context hierarchy 2017-07-28 09:35:00,242 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'hsql-testdb' 2017-07-28 09:35:00,242 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.945 s - in org.appng.core.model.PlatformTransformerTest [INFO] Running org.appng.core.model.ApplicationProviderTest 2017-07-28 09:35:00,249 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:00,249 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@56c2813e, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@59e4e3a6, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5e6c3555, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6d41d760, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2fc87087, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@514f4f0b] 2017-07-28 09:35:00,250 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [applications/application1/beans.xml] 2017-07-28 09:35:00,268 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [org/appng/testsupport/application-testcontext.xml] 2017-07-28 09:35:00,274 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [org/appng/testsupport/application-testcontext-jpa.xml] 2017-07-28 09:35:00,280 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@6e360eea: startup date [Fri Jul 28 09:35:00 CEST 2017]; root of context hierarchy 2017-07-28 09:35:00,428 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'default' 2017-07-28 09:35:00,429 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: default ...] 2017-07-28 09:35:00,550 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:00,554 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:00,583 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'default' 2017-07-28 09:35:00,818 ERROR [main] org.appng.core.model.ApplicationProvider: [localhost:demo-application] error while building structure for page 'entity' org.appng.api.ProcessingException: error performing action 'update' of event 'events', ID: 1834561892 at org.appng.api.support.CallableAction.execute(CallableAction.java:387) at org.appng.api.support.CallableAction.perform(CallableAction.java:287) at org.appng.core.model.ActionElement.perform(ActionElement.java:69) at org.appng.core.model.ApplicationProvider.getActionSectionElement(ApplicationProvider.java:530) at org.appng.core.model.ApplicationProvider.access$000(ApplicationProvider.java:126) at org.appng.core.model.ApplicationProvider$2.perform(ApplicationProvider.java:422) at org.appng.core.model.ApplicationProvider.doMonitored(ApplicationProvider.java:465) at org.appng.core.model.ApplicationProvider.addElements(ApplicationProvider.java:430) at org.appng.core.model.ApplicationProvider.buildStructure(ApplicationProvider.java:351) at org.appng.core.model.ApplicationProvider.process(ApplicationProvider.java:280) at org.appng.core.model.ApplicationProviderTest.runTest(ApplicationProviderTest.java:282) at org.appng.core.model.ApplicationProviderTest.testUpdateException(ApplicationProviderTest.java:183) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) Caused by: org.appng.api.ApplicationException: adfsf at org.appng.testapplication.TestEntities.perform(TestEntities.java:71) at org.appng.testapplication.TestEntities.perform(TestEntities.java:35) at org.appng.api.support.CallableAction.execute(CallableAction.java:368) ... 42 more 2017-07-28 09:35:00,926 ERROR [main] org.appng.core.model.ApplicationProvider: [localhost:demo-application] error while building structure for page 'entity' org.appng.api.ProcessingException: error retrieving datasource 'entity', ID: 340545487 at org.appng.api.support.CallableDataSource.perform(CallableDataSource.java:238) at org.appng.api.support.CallableAction.retrieveData(CallableAction.java:215) at org.appng.api.support.CallableAction.perform(CallableAction.java:285) at org.appng.core.model.ActionElement.perform(ActionElement.java:69) at org.appng.core.model.ApplicationProvider.getActionSectionElement(ApplicationProvider.java:530) at org.appng.core.model.ApplicationProvider.access$000(ApplicationProvider.java:126) at org.appng.core.model.ApplicationProvider$2.perform(ApplicationProvider.java:422) at org.appng.core.model.ApplicationProvider.doMonitored(ApplicationProvider.java:465) at org.appng.core.model.ApplicationProvider.addElements(ApplicationProvider.java:430) at org.appng.core.model.ApplicationProvider.buildStructure(ApplicationProvider.java:351) at org.appng.core.model.ApplicationProvider.process(ApplicationProvider.java:280) at org.appng.core.model.ApplicationProviderTest.runTest(ApplicationProviderTest.java:282) at org.appng.core.model.ApplicationProviderTest.testUpdateExceptionDataSource(ApplicationProviderTest.java:173) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) Caused by: org.appng.api.ApplicationException: adfsf at org.appng.testapplication.TestEntities.getData(TestEntities.java:45) at org.appng.api.support.CallableDataSource.perform(CallableDataSource.java:199) ... 43 more 2017-07-28 09:35:01,063 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@6e360eea: startup date [Fri Jul 28 09:35:00 CEST 2017]; root of context hierarchy 2017-07-28 09:35:01,063 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'default' [INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.82 s - in org.appng.core.model.ApplicationProviderTest [INFO] Running org.appng.core.model.JarInfoBuilderTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.appng.core.model.JarInfoBuilderTest [INFO] Running org.appng.core.model.PageParameterProcessorTest 2017-07-28 09:35:01,086 INFO [main] org.appng.core.model.PageParameterProcessor: retrieved new value for url-param 'hash' from session: 'hashFromSession' [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.036 s - in org.appng.core.model.PageParameterProcessorTest [INFO] Running org.appng.core.model.OutputFormatAndTypeTest [INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 s - in org.appng.core.model.OutputFormatAndTypeTest [INFO] Running org.appng.core.model.CacheProviderTest 2017-07-28 09:35:01,119 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/WEB-INF/cache/platform/appNG 2017-07-28 09:35:01,119 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/WEB-INF/cache/application/appNG 2017-07-28 09:35:01,121 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/WEB-INF/cache/platform/appNG/foobar 2017-07-28 09:35:01,121 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/WEB-INF/cache/application/appNG/foobar [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 s - in org.appng.core.model.CacheProviderTest [INFO] [INFO] Results: [INFO] [WARNING] Tests run: 243, Failures: 0, Errors: 0, Skipped: 23 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-core --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-core --- [WARNING] Error fetching link: https://appng.org/appng-forms/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-mail/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.tuckey.org/urlrewrite/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://projects.spring.io/spring-ws/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-api/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-persistence/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-xmlapi/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-search/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://freemarker.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.saxonica.com/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.slf4j.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.quartz-scheduler.org/quartz/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://flywaydb.org/flyway-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hsqldb.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://jsp.dev.java.net/jsp-api/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.mockito.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://dev.mysql.com/doc/connector-j/en/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-testsupport/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/validator/hibernate-validator/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://hibernate.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/brettwooldridge/HikariCP/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/Microsoft/mssql-jdbc/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://ehcache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://ehcache.org/ehcache-web-parent/ehcache-web/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.rabbitmq.com/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://github.com/jhalterman/lyra/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://spring.io/spring-security/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://spring.io/spring-security/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/xetorthio/jedis/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.thymeleaf.org/apidocs/package-list. Ignored it. [INFO] Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/Redirect.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/PermissionRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/RoleRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/SiteRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/RepoRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/TemplateResourceRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/ApplicationRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/DatabaseConnectionRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/ResourceRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/TemplateRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/SiteApplicationRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/GroupRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/config/HikariCPConfigurer.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/config/DataSourceFactory.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/config/ApplicationPostProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/config/TomcatJdbcConfigurer.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/config/DatasourceConfigurer.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/config/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/SubjectRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/repository/PropertyRepository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/JMXUtils.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/CertTools.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/SigningException.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/SignerConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/Signer.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/SignatureWrapper.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/CertChainValidator.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/ValidatorConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/BaseConfig.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/signing/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/BCryptPasswordHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/Sha1PasswordHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DefaultPasswordPolicy.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/SaltedDigest.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/PasswordHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DigestValidator.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/DigestUtil.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/SaltedDigestSha1.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/security/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/ObjectUtils.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/DatabaseConnection.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/SiteImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/PropertyImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/ResourceImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/Template.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/SiteApplication.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/PermissionImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/SiteApplicationPK.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/GroupImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/ValidationPatterns.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/PersistentPropertyHolder.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/PackageArchiveImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/ApplicationImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/SubjectImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/TemplateResource.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/RoleImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/RepositoryImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/LdapService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/HsqlStarter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/ApplicationProperties.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/CoreService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/DatabaseService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/PropertySupport.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/TemplateService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/MigrationService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/CacheService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/ApplicationArchiveProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/service/InitializerService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/PlatformStartup.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/Session.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/AppngCache.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/ReloadSiteEvent.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/RabbitMQBase.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/TribesSender.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/MulticastReceiver.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/NodeEvent.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/RabbitMQReceiver.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/MessageHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/MulticastSender.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/SiteStateEvent.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/JedisSender.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/RabbitMQSender.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/JedisBase.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/TribesReceiver.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/JedisReceiver.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/messaging/RequestNodeState.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/Controller.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/JspExtensionFilter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/PageCacheFilter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/ResponseWrapper.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/XSSFilter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/CsrfSetupFilter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/RedirectFilter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/MSOfficeUserAgentFilter.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/filter/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/CacheElementBase.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/ProxyHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/StaticContentHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/SoapService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/ErrorPageHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/JspHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/RequestHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/ServiceRequestHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/RestService.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/handler/GuiHandler.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/SessionListener.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/HttpHeaders.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/controller/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/CacheProvider.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/PageParameterProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/PackageVersion.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryMode.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/NavigationBuilder.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryCacheSoap.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ApplicationSubjectImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/FeatureProviderImpl.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RequestProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/PlatformProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryCacheFactory.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ZipFileProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/Repository.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryScheme.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/JarInfo.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/InstallablePackage.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ThymeleafProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/AbstractRequestProcessor.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ActionElement.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ApplicationProvider.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ApplicationContext.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/PackageArchive.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryCacheBase.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/PlatformTransformer.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/PackageWrapper.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/AccessibleApplication.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/DataSourceElement.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryCache.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/package-info.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryUtils.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/ResponseType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/model/RepositoryCacheFilesystem.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetPackagesResponse.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/Packages.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/ObjectFactory.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetPackageResponse.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetCertificationResponse.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/PackageType.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetPackagesRequest.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetPackageVersionsResponse.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/Certification.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/PackageVersions.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/Package.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetPackageRequest.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetPackageVersionsRequest.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/GetCertificationRequest.java... Loading source file /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb/org/appng/core/xml/repository/package-info.java... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/CsrfSetupFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/JspExtensionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/MSOfficeUserAgentFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/PageCacheFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/RedirectFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/RedirectFilter.UrlRewriteConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/XSSFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/BCryptPasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/DefaultPasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/DigestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/DigestValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/SaltedDigest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/SaltedDigestSha1.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/Sha1PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/ApplicationImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/DatabaseConnection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/DatabaseConnection.DatabaseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/GroupImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/ObjectUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/PackageArchiveImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/PermissionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/PersistentPropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/PropertyImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/RepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/ResourceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/RoleImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/SiteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/SiteApplicationPK.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/SiteImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/SubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/TemplateResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/ValidationPatterns.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/ApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/DatabaseConnectionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/GroupRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/PermissionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/PropertyRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/RepoRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/ResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/RoleRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/SiteApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/SiteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/SubjectRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/TemplateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/TemplateResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/Certification.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetCertificationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetCertificationResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetPackageRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetPackageResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetPackagesRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetPackagesResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetPackageVersionsRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/GetPackageVersionsResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/PackageVersions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/BaseConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/BaseConfig.PrivateKeyFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/BaseConfig.SigningAlgorithm.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/CertChainValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/CertTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/SignatureWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/Signer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/SignerConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/SigningException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/SigningException.ErrorType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/ValidatorConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/ApplicationArchiveProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/ApplicationProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/CacheService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/CoreService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/DatabaseService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/HsqlStarter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/InitializerService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/LdapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/MigrationService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/MigrationService.MigrationStatus.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/PropertySupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/TemplateService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/JedisBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/JedisReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/JedisSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/MulticastReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/MulticastSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/NodeEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/NodeEvent.MemoryUsage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/NodeEvent.NodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/RabbitMQBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/RabbitMQReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/RabbitMQSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/ReloadSiteEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/RequestNodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/SiteStateEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/TribesReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/TribesSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/ErrorPageHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/GuiHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/JspHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/ProxyHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/RequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/RestService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/ServiceRequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/StaticContentHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/AbstractRequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/AccessibleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ApplicationContext.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ApplicationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ApplicationSubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/CacheProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/FeatureProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/InstallablePackage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/JarInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/JarInfo.JarInfoBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/PackageArchive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/PackageVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/PackageWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/PlatformProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/PlatformTransformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryCacheFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryCacheFilesystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryCacheSoap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryScheme.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RepositoryUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/RequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ResponseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ThymeleafProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ThymeleafProcessor.AppNG.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/ZipFileProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/JMXUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/Redirect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/AppngCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/CacheElementBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/Controller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/HttpHeaders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/PlatformStartup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/SessionListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/ApplicationPostProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/DatasourceConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/DataSourceFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/HikariCPConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/TomcatJdbcConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/class-use/Redirect.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/PermissionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/RoleRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/SiteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/RepoRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/TemplateResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/ApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/DatabaseConnectionRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/ResourceRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/TemplateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/SiteApplicationRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/GroupRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/class-use/HikariCPConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/class-use/DataSourceFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/class-use/ApplicationPostProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/class-use/TomcatJdbcConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/class-use/DatasourceConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/SubjectRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/class-use/PropertyRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/class-use/JMXUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/CertTools.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/SigningException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/SigningException.ErrorType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/SignerConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/Signer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/SignatureWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/CertChainValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/ValidatorConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/BaseConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/BaseConfig.PrivateKeyFormat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/class-use/BaseConfig.SigningAlgorithm.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/BCryptPasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/Sha1PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/DefaultPasswordPolicy.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/SaltedDigest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/PasswordHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/DigestValidator.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/DigestUtil.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/class-use/SaltedDigestSha1.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/ObjectUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/DatabaseConnection.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/DatabaseConnection.DatabaseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/SiteImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/PropertyImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/ResourceImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/Template.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/SiteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/PermissionImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/SiteApplicationPK.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/GroupImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/ValidationPatterns.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/PersistentPropertyHolder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/PackageArchiveImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/ApplicationImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/SubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/TemplateResource.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/RoleImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/class-use/RepositoryImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/LdapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/HsqlStarter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/ApplicationProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/CoreService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/DatabaseService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/PropertySupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/TemplateService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/MigrationService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/MigrationService.MigrationStatus.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/CacheService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/ApplicationArchiveProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/class-use/InitializerService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/PlatformStartup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/Session.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/AppngCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/ReloadSiteEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/RabbitMQBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/TribesSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/MulticastReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/NodeEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/NodeEvent.MemoryUsage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/NodeEvent.NodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/RabbitMQReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/MulticastSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/SiteStateEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/JedisSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/RabbitMQSender.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/JedisBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/TribesReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/JedisReceiver.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/class-use/RequestNodeState.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/Controller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/JspExtensionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/PageCacheFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/XSSFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/CsrfSetupFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/RedirectFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/RedirectFilter.UrlRewriteConfig.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/class-use/MSOfficeUserAgentFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/CacheElementBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/ProxyHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/StaticContentHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/SoapService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/ErrorPageHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/JspHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/RequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/ServiceRequestHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/RestService.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/class-use/GuiHandler.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/SessionListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/class-use/HttpHeaders.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/CacheProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/PackageVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryCacheSoap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ApplicationSubjectImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/FeatureProviderImpl.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/PlatformProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryCacheFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ZipFileProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryScheme.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/JarInfo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/JarInfo.JarInfoBuilder.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/InstallablePackage.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ThymeleafProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ThymeleafProcessor.AppNG.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/AbstractRequestProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ApplicationProvider.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ApplicationContext.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/PackageArchive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/PlatformTransformer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/PackageWrapper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/AccessibleApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryCache.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryUtils.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/ResponseType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/class-use/RepositoryCacheFilesystem.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetPackagesResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetPackageResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetCertificationResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetPackagesRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetPackageVersionsResponse.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/Certification.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/PackageVersions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetPackageRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetPackageVersionsRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/class-use/GetCertificationRequest.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/filter/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/handler/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/controller/messaging/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/domain/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/model/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/repository/config/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/security/signing/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/service/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/org/appng/core/xml/repository/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/apidocs/help-doc.html... 2 warnings [WARNING] Javadoc Warnings [WARNING] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/RepositoryImpl.java:393: warning - Tag @see:illegal character: "123" in "{@link #getTrustedCertChain()}" [WARNING] /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/src/main/java/org/appng/core/domain/RepositoryImpl.java:393: warning - Tag @see:illegal character: "64" in "{@link #getTrustedCertChain()}" [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-core >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-core <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-core --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-core --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-core --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-core --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-core --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/appng-core-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tomcat 7 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-tomcat7 --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-tomcat7 --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-tomcat7 --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-tomcat7 --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-tomcat7 --- [INFO] No tests to run. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-tomcat7 --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-tomcat7 --- [WARNING] Error fetching link: https://appng.org/appng-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.core.controller... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/org/appng/core/controller/Tomcat7Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/org/appng/core/controller/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/org/appng/core/controller/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/org/appng/core/controller/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/org/appng/core/controller/class-use/Tomcat7Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/org/appng/core/controller/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-tomcat7 >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-tomcat7 <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-tomcat7 --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-tomcat7 --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-tomcat7 --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-tomcat7 --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-tomcat7 --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat7/target/appng-tomcat7-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tomcat 8 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-tomcat8 --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-tomcat8 --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-tomcat8 --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-tomcat8 --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-tomcat8 --- [INFO] No tests to run. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-tomcat8 --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-tomcat8 --- [WARNING] Error fetching link: https://appng.org/appng-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.core.controller... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/org/appng/core/controller/Tomcat8Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/org/appng/core/controller/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/org/appng/core/controller/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/org/appng/core/controller/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/org/appng/core/controller/class-use/Tomcat8Support.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/org/appng/core/controller/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-tomcat8 >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-tomcat8 <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-tomcat8 --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-tomcat8 --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-tomcat8 --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-tomcat8 --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-tomcat8 --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-tomcat8/target/appng-tomcat8-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Command Line Interface 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-cli --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-cli --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 65 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/classes [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/src/main/java/org/appng/cli/commands/heartbeat/HeartBeat.java: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/src/main/java/org/appng/cli/commands/heartbeat/HeartBeat.java uses or overrides a deprecated API. [INFO] /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/src/main/java/org/appng/cli/commands/heartbeat/HeartBeat.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-cli --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 10 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-cli --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 34 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-cli --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.cli.commands.application.CommandListApplicationsTest 2017-07-28 09:35:33,077 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:33,093 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@49e202ad, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@1c72da34, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6b0c2d26, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3d3fcdb0, org.springframework.test.context.transaction.TransactionalTestExecutionListener@641147d0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6e38921c] 2017-07-28 09:35:33,194 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:33,665 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@44a664f2: startup date [Fri Jul 28 09:35:33 CEST 2017]; root of context hierarchy 2017-07-28 09:35:34,303 INFO [HSQLDB Server @6e950bcf] hsqldb.db.HSQLDB5D881F3A8A.ENGINE: Checkpoint start 2017-07-28 09:35:34,304 INFO [HSQLDB Server @6e950bcf] hsqldb.db.HSQLDB5D881F3A8A.ENGINE: checkpointClose start 2017-07-28 09:35:34,311 INFO [HSQLDB Server @6e950bcf] hsqldb.db.HSQLDB5D881F3A8A.ENGINE: checkpointClose synched 2017-07-28 09:35:34,325 INFO [HSQLDB Server @6e950bcf] hsqldb.db.HSQLDB5D881F3A8A.ENGINE: checkpointClose script done 2017-07-28 09:35:34,347 INFO [HSQLDB Server @6e950bcf] hsqldb.db.HSQLDB5D881F3A8A.ENGINE: checkpointClose end 2017-07-28 09:35:34,347 INFO [HSQLDB Server @6e950bcf] hsqldb.db.HSQLDB5D881F3A8A.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:35:34,417 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:34,485 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:34,727 INFO [main] org.hibernate.Version : HHH000412: Hibernate Core {5.2.10.Final} 2017-07-28 09:35:34,729 INFO [main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found 2017-07-28 09:35:34,785 INFO [main] org.hibernate.annotations.common.Version: HCANN000001: Hibernate Commons Annotations {5.0.1.Final} 2017-07-28 09:35:34,962 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:34,963 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:34,964 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:34,964 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:34,967 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:35,116 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:35,198 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:35,816 INFO [main] org.hibernate.validator.internal.util.Version: HV000001: Hibernate Validator 5.4.1.Final 2017-07-28 09:35:36,433 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7d0100ea] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:36,524 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@40c06358] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:36,600 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:37,076 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:37,983 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@44384b4a testClass = CommandListApplicationsTest, testInstance = org.appng.cli.commands.application.CommandListApplicationsTest@5cc3e49b, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@12e5d3e1 testClass = CommandListApplicationsTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@35563e4c]; rollback [false] 2017-07-28 09:35:38,261 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@44384b4a testClass = CommandListApplicationsTest, testInstance = org.appng.cli.commands.application.CommandListApplicationsTest@5cc3e49b, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@12e5d3e1 testClass = CommandListApplicationsTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:38,264 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@44a664f2: startup date [Fri Jul 28 09:35:33 CEST 2017]; root of context hierarchy 2017-07-28 09:35:38,267 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:38,267 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.396 s - in org.appng.cli.commands.application.CommandListApplicationsTest [INFO] Running org.appng.cli.commands.application.CommandListApplicationsForSiteTest 2017-07-28 09:35:38,276 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:38,276 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@74ce7fdf, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@1f26b992, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2f60cbf2, org.springframework.test.context.support.DirtiesContextTestExecutionListener@631bc9f4, org.springframework.test.context.transaction.TransactionalTestExecutionListener@642c72cf, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@4e6cbdf1] 2017-07-28 09:35:38,277 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:38,413 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@67fac095: startup date [Fri Jul 28 09:35:38 CEST 2017]; root of context hierarchy 2017-07-28 09:35:38,609 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:38,636 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:38,676 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:38,677 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:38,677 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:38,677 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:38,677 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:38,780 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:38,800 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:38,983 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6bfbab1c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:39,005 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@349aeec4] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:39,037 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:39,110 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:39,281 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@21ab919c testClass = CommandListApplicationsForSiteTest, testInstance = org.appng.cli.commands.application.CommandListApplicationsForSiteTest@5edd9b4f, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@17c34e62 testClass = CommandListApplicationsForSiteTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@17e2835c]; rollback [false] 2017-07-28 09:35:39,517 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@21ab919c testClass = CommandListApplicationsForSiteTest, testInstance = org.appng.cli.commands.application.CommandListApplicationsForSiteTest@5edd9b4f, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@17c34e62 testClass = CommandListApplicationsForSiteTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:39,518 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@67fac095: startup date [Fri Jul 28 09:35:38 CEST 2017]; root of context hierarchy 2017-07-28 09:35:39,519 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:39,520 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.251 s - in org.appng.cli.commands.application.CommandListApplicationsForSiteTest [INFO] Running org.appng.cli.commands.application.CommandInstallApplicationTest 2017-07-28 09:35:39,527 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:39,527 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@3f71ae7f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5b32e0b1, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@d1d85d0, org.springframework.test.context.support.DirtiesContextTestExecutionListener@115a7e51, org.springframework.test.context.transaction.TransactionalTestExecutionListener@23ea3853, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6f1163f7] 2017-07-28 09:35:39,528 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:39,633 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@e4348c0: startup date [Fri Jul 28 09:35:39 CEST 2017]; root of context hierarchy 2017-07-28 09:35:39,790 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:39,807 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:39,832 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:39,832 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:39,832 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:39,833 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:39,833 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:39,935 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:39,947 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:40,114 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5ce0f50a] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:40,131 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@c3a1d7f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:40,165 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:40,246 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:40,407 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@78e34499 testClass = CommandInstallApplicationTest, testInstance = org.appng.cli.commands.application.CommandInstallApplicationTest@5776a9f8, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@70f0c352 testClass = CommandInstallApplicationTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@56017274]; rollback [false] 2017-07-28 09:35:40,518 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.4' from repository file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/test-classes/localrepo/ 2017-07-28 09:35:40,637 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.4 2017-07-28 09:35:40,656 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:35:40,660 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:35:40,661 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:35:40,662 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:35:40,675 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:35:40,678 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:35:40,681 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:35:40,681 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:35:40,685 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:35:40,689 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:35:40,689 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:35:40,692 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:35:40,692 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:35:40,725 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,725 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,727 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,727 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.4' 2017-07-28 09:35:40,729 INFO [main] org.appng.core.service.CoreService: creating resource(s) for database-based application demo-application - 1.5.4 2017-07-28 09:35:40,729 INFO [main] org.appng.core.service.CoreService: saving applicationresource application.xml 2017-07-28 09:35:40,746 INFO [main] org.appng.core.service.CoreService: saving applicationresource beans.xml 2017-07-28 09:35:40,758 INFO [main] org.appng.core.service.CoreService: saving applicationresource datasources.xml 2017-07-28 09:35:40,769 INFO [main] org.appng.core.service.CoreService: saving applicationresource events.xml 2017-07-28 09:35:40,782 INFO [main] org.appng.core.service.CoreService: saving applicationresource master.xml 2017-07-28 09:35:40,793 INFO [main] org.appng.core.service.CoreService: saving applicationresource page.xml 2017-07-28 09:35:40,804 INFO [main] org.appng.core.service.CoreService: saving applicationresource plugin.xml 2017-07-28 09:35:40,815 INFO [main] org.appng.core.service.CoreService: saving applicationresource messages-demo.properties 2017-07-28 09:35:40,818 INFO [main] org.appng.core.service.CoreService: saving applicationresource mssql/V1.0_script.sql 2017-07-28 09:35:40,828 INFO [main] org.appng.core.service.CoreService: saving applicationresource mysql/V1.0_script.sql 2017-07-28 09:35:40,855 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:35:40,857 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:35:40,859 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:35:40,862 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:35:40,864 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:35:40,867 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:35:40,881 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@78e34499 testClass = CommandInstallApplicationTest, testInstance = org.appng.cli.commands.application.CommandInstallApplicationTest@5776a9f8, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@70f0c352 testClass = CommandInstallApplicationTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:40,882 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@e4348c0: startup date [Fri Jul 28 09:35:39 CEST 2017]; root of context hierarchy 2017-07-28 09:35:40,884 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:40,884 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.363 s - in org.appng.cli.commands.application.CommandInstallApplicationTest [INFO] Running org.appng.cli.commands.property.CommandUpdatePropertyTest 2017-07-28 09:35:40,891 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:40,891 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@18174bd9, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3af6d7a7, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@18711946, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2b8b5d9e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@9e092b5, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@52737c1] 2017-07-28 09:35:40,892 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:40,988 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@158cb50a: startup date [Fri Jul 28 09:35:40 CEST 2017]; root of context hierarchy 2017-07-28 09:35:41,140 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:41,154 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:41,172 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:41,172 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:41,173 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:41,173 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:41,173 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:41,275 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:41,281 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:41,408 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@ece769a] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:41,420 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7baf7a9d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:41,444 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:41,490 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:41,628 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@2f29046b testClass = CommandUpdatePropertyTest, testInstance = org.appng.cli.commands.property.CommandUpdatePropertyTest@2a1fce44, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@348d1a5e testClass = CommandUpdatePropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@1e0bae92]; rollback [false] 2017-07-28 09:35:41,675 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@2f29046b testClass = CommandUpdatePropertyTest, testInstance = org.appng.cli.commands.property.CommandUpdatePropertyTest@2a1fce44, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@348d1a5e testClass = CommandUpdatePropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:41,676 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@158cb50a: startup date [Fri Jul 28 09:35:40 CEST 2017]; root of context hierarchy 2017-07-28 09:35:41,677 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:41,678 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.799 s - in org.appng.cli.commands.property.CommandUpdatePropertyTest [INFO] Running org.appng.cli.commands.property.CommandListPropertiesTest 2017-07-28 09:35:41,692 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:41,692 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@630a647c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@1dcfbad1, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@19e5e846, org.springframework.test.context.support.DirtiesContextTestExecutionListener@12418d3f, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2258228f, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@42210d27] 2017-07-28 09:35:41,693 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:41,785 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@74307afd: startup date [Fri Jul 28 09:35:41 CEST 2017]; root of context hierarchy 2017-07-28 09:35:41,936 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:41,950 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:41,968 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:41,969 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:41,969 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:41,969 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:41,969 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:42,071 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:42,076 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:42,195 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6a7eef27] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:42,205 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1ab6a093] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:42,228 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:42,288 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:42,427 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@41d1bcbd, testMethod = testChangedValuesFilter@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64001530]; rollback [false] 2017-07-28 09:35:42,463 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@41d1bcbd, testMethod = testChangedValuesFilter@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:42,465 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@40eb85e9, testMethod = testChangedValues@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64001530]; rollback [false] 2017-07-28 09:35:42,483 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@40eb85e9, testMethod = testChangedValues@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:42,484 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@23110196, testMethod = testFilter@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64001530]; rollback [false] 2017-07-28 09:35:42,492 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@23110196, testMethod = testFilter@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:42,494 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@1b136640, testMethod = testValues@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64001530]; rollback [false] 2017-07-28 09:35:42,501 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@1b136640, testMethod = testValues@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:42,503 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@139f1db4, testMethod = testSiteProperties@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64001530]; rollback [false] 2017-07-28 09:35:42,579 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@139f1db4, testMethod = testSiteProperties@CommandListPropertiesTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:42,580 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@39ee039d, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@64001530]; rollback [false] 2017-07-28 09:35:42,590 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@36cc6055 testClass = CommandListPropertiesTest, testInstance = org.appng.cli.commands.property.CommandListPropertiesTest@39ee039d, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@e18848d testClass = CommandListPropertiesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:42,590 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@74307afd: startup date [Fri Jul 28 09:35:41 CEST 2017]; root of context hierarchy 2017-07-28 09:35:42,591 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:42,592 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.906 s - in org.appng.cli.commands.property.CommandListPropertiesTest [INFO] Running org.appng.cli.commands.property.CommandCreateClobPropertyTest 2017-07-28 09:35:42,598 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:42,598 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@14c5d220, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@11f415e4, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@27af14bd, org.springframework.test.context.support.DirtiesContextTestExecutionListener@38f0de07, org.springframework.test.context.transaction.TransactionalTestExecutionListener@21e5feb, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@33742179] 2017-07-28 09:35:42,599 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:42,693 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@6ca1c156: startup date [Fri Jul 28 09:35:42 CEST 2017]; root of context hierarchy 2017-07-28 09:35:42,845 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:42,864 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:42,889 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:42,889 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:42,890 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:42,890 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:42,890 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:43,001 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:43,011 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:43,155 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@7e3f4f0] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:43,165 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@664c47f2] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:43,188 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:43,297 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:43,426 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@2e66340 testClass = CommandCreateClobPropertyTest, testInstance = org.appng.cli.commands.property.CommandCreateClobPropertyTest@52478bf5, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@79200f8 testClass = CommandCreateClobPropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@26f6ed79]; rollback [false] 2017-07-28 09:35:43,551 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@2e66340 testClass = CommandCreateClobPropertyTest, testInstance = org.appng.cli.commands.property.CommandCreateClobPropertyTest@52478bf5, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@79200f8 testClass = CommandCreateClobPropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:43,552 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@6ca1c156: startup date [Fri Jul 28 09:35:42 CEST 2017]; root of context hierarchy 2017-07-28 09:35:43,553 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:43,553 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.961 s - in org.appng.cli.commands.property.CommandCreateClobPropertyTest [INFO] Running org.appng.cli.commands.property.CommandUpdateClobPropertyTest 2017-07-28 09:35:43,561 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:43,562 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@fcaf12a, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@57927f4f, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@e937569, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7094f0ae, org.springframework.test.context.transaction.TransactionalTestExecutionListener@280f0c37, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6c23667e] 2017-07-28 09:35:43,562 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:43,655 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@790e6eae: startup date [Fri Jul 28 09:35:43 CEST 2017]; root of context hierarchy 2017-07-28 09:35:43,804 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:43,821 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:43,844 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:43,844 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:43,844 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:43,844 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:43,845 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:43,947 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:43,954 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:44,073 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4d500865] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:44,081 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@fcdad9a] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:44,100 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:44,140 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:44,266 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@45ef4dcb testClass = CommandUpdateClobPropertyTest, testInstance = org.appng.cli.commands.property.CommandUpdateClobPropertyTest@54557dd8, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@40889699 testClass = CommandUpdateClobPropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@203f929]; rollback [false] 2017-07-28 09:35:44,369 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@45ef4dcb testClass = CommandUpdateClobPropertyTest, testInstance = org.appng.cli.commands.property.CommandUpdateClobPropertyTest@54557dd8, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@40889699 testClass = CommandUpdateClobPropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:44,370 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@790e6eae: startup date [Fri Jul 28 09:35:43 CEST 2017]; root of context hierarchy 2017-07-28 09:35:44,370 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:44,371 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.817 s - in org.appng.cli.commands.property.CommandUpdateClobPropertyTest [INFO] Running org.appng.cli.commands.property.CommandCreatePropertyTest 2017-07-28 09:35:44,380 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:44,380 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@2c46c908, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7ebda858, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@43462cef, org.springframework.test.context.support.DirtiesContextTestExecutionListener@13e8149a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@9fc9166, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@1a100769] 2017-07-28 09:35:44,381 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:44,467 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@68437190: startup date [Fri Jul 28 09:35:44 CEST 2017]; root of context hierarchy 2017-07-28 09:35:44,617 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:44,631 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:44,648 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:44,648 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:44,649 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:44,649 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:44,649 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:44,751 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:44,755 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:44,853 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@425fdf53] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:44,860 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@589b445d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:44,878 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:44,918 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:45,048 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@3d330fe6 testClass = CommandCreatePropertyTest, testInstance = org.appng.cli.commands.property.CommandCreatePropertyTest@d0e155c, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@43ebc9b5 testClass = CommandCreatePropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3c00c7ab]; rollback [false] 2017-07-28 09:35:45,079 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@3d330fe6 testClass = CommandCreatePropertyTest, testInstance = org.appng.cli.commands.property.CommandCreatePropertyTest@d0e155c, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@43ebc9b5 testClass = CommandCreatePropertyTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:45,080 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@68437190: startup date [Fri Jul 28 09:35:44 CEST 2017]; root of context hierarchy 2017-07-28 09:35:45,081 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:45,081 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.709 s - in org.appng.cli.commands.property.CommandCreatePropertyTest [INFO] Running org.appng.cli.commands.permission.AddPermissionTest 2017-07-28 09:35:45,086 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:45,087 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@a4664f3, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@134a4911, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@42a3abe9, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1e0fd2ac, org.springframework.test.context.transaction.TransactionalTestExecutionListener@27d74c62, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@66949b48] 2017-07-28 09:35:45,087 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:45,157 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@39379890: startup date [Fri Jul 28 09:35:45 CEST 2017]; root of context hierarchy 2017-07-28 09:35:45,298 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:45,310 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:45,327 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:45,327 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:45,327 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:45,327 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:45,327 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:45,429 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:45,435 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:45,531 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@9ed1f3f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:45,536 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4a256169] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:45,551 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:45,658 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:45,753 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@1f018baf testClass = AddPermissionTest, testInstance = org.appng.cli.commands.permission.AddPermissionTest@67d30d56, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4a241c5d testClass = AddPermissionTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@a8a1822]; rollback [false] 2017-07-28 09:35:45,790 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@1f018baf testClass = AddPermissionTest, testInstance = org.appng.cli.commands.permission.AddPermissionTest@67d30d56, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4a241c5d testClass = AddPermissionTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:45,791 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@39379890: startup date [Fri Jul 28 09:35:45 CEST 2017]; root of context hierarchy 2017-07-28 09:35:45,791 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:45,792 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.71 s - in org.appng.cli.commands.permission.AddPermissionTest [INFO] Running org.appng.cli.commands.permission.RemovePermissionTest 2017-07-28 09:35:45,796 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:45,797 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6cbad7b3, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@33587cb8, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@4184aa78, org.springframework.test.context.support.DirtiesContextTestExecutionListener@27320a39, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1d8f4623, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6d425496] 2017-07-28 09:35:45,797 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:45,866 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@9f1f42c: startup date [Fri Jul 28 09:35:45 CEST 2017]; root of context hierarchy 2017-07-28 09:35:46,012 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:46,023 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:46,039 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:46,039 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:46,039 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:46,039 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:46,039 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:46,141 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:46,151 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:46,239 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5bf42283] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:46,245 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5145512c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:46,261 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:46,310 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:46,415 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@152bb1ee testClass = RemovePermissionTest, testInstance = org.appng.cli.commands.permission.RemovePermissionTest@5ad0a620, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@644053d3 testClass = RemovePermissionTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@494e9f73]; rollback [false] 2017-07-28 09:35:46,458 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@152bb1ee testClass = RemovePermissionTest, testInstance = org.appng.cli.commands.permission.RemovePermissionTest@5ad0a620, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@644053d3 testClass = RemovePermissionTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:46,459 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@9f1f42c: startup date [Fri Jul 28 09:35:45 CEST 2017]; root of context hierarchy 2017-07-28 09:35:46,460 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:46,460 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.667 s - in org.appng.cli.commands.permission.RemovePermissionTest [INFO] Running org.appng.cli.commands.permission.ListPermissionTest 2017-07-28 09:35:46,466 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:46,466 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4ac9dc56, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3ff0cbf1, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@44a065f7, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4c560e50, org.springframework.test.context.transaction.TransactionalTestExecutionListener@487950e0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@71efa55d] 2017-07-28 09:35:46,466 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:46,536 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@3627e94a: startup date [Fri Jul 28 09:35:46 CEST 2017]; root of context hierarchy 2017-07-28 09:35:46,674 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:46,683 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:46,696 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:46,696 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:46,696 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:46,696 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:46,697 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:46,799 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:46,805 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:46,897 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6bb35b0e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:46,903 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2b96dc3e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:46,921 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:46,962 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:47,087 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@2af0e376 testClass = ListPermissionTest, testInstance = org.appng.cli.commands.permission.ListPermissionTest@6015e383, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@19cac930 testClass = ListPermissionTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5d26c256]; rollback [false] 2017-07-28 09:35:47,134 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@2af0e376 testClass = ListPermissionTest, testInstance = org.appng.cli.commands.permission.ListPermissionTest@6015e383, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@19cac930 testClass = ListPermissionTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:47,134 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@3627e94a: startup date [Fri Jul 28 09:35:46 CEST 2017]; root of context hierarchy 2017-07-28 09:35:47,135 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:47,135 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.675 s - in org.appng.cli.commands.permission.ListPermissionTest [INFO] Running org.appng.cli.commands.repository.CommandListRepositoryTest 2017-07-28 09:35:47,142 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:47,142 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6e83a884, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@27eb7272, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@50567135, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5ca15fbc, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2f951b24, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@53919446] 2017-07-28 09:35:47,143 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:47,226 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@302d88d8: startup date [Fri Jul 28 09:35:47 CEST 2017]; root of context hierarchy 2017-07-28 09:35:47,374 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:47,389 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:47,412 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:47,413 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:47,413 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:47,413 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:47,413 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:47,515 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:47,520 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:47,610 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3e87d5da] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:47,616 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@52f2593e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:47,640 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:47,695 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:47,821 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@57d5c04 testClass = CommandListRepositoryTest, testInstance = org.appng.cli.commands.repository.CommandListRepositoryTest@23b046a8, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@799ace5b testClass = CommandListRepositoryTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@70bf2681]; rollback [false] 2017-07-28 09:35:47,870 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@57d5c04 testClass = CommandListRepositoryTest, testInstance = org.appng.cli.commands.repository.CommandListRepositoryTest@23b046a8, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@799ace5b testClass = CommandListRepositoryTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:47,871 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@302d88d8: startup date [Fri Jul 28 09:35:47 CEST 2017]; root of context hierarchy 2017-07-28 09:35:47,871 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:47,872 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.737 s - in org.appng.cli.commands.repository.CommandListRepositoryTest [INFO] Running org.appng.cli.commands.repository.CommandDeleteRepositoryTest 2017-07-28 09:35:47,880 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:47,880 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1116672f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@56158d84, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@27290796, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1cfc8b7c, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3ef1b8d3, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@44726b24] 2017-07-28 09:35:47,881 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:47,993 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@2b08d18b: startup date [Fri Jul 28 09:35:47 CEST 2017]; root of context hierarchy 2017-07-28 09:35:48,147 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:48,178 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:48,210 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:48,211 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:48,211 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:48,211 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:48,211 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:48,313 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:48,323 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:48,528 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@36572fad] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:48,533 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6d11f8c8] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:48,548 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:48,582 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:48,680 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@5a0dc408 testClass = CommandDeleteRepositoryTest, testInstance = org.appng.cli.commands.repository.CommandDeleteRepositoryTest@6e73d8b6, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2d899d50 testClass = CommandDeleteRepositoryTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@366e91f3]; rollback [false] 2017-07-28 09:35:48,710 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@5a0dc408 testClass = CommandDeleteRepositoryTest, testInstance = org.appng.cli.commands.repository.CommandDeleteRepositoryTest@6e73d8b6, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2d899d50 testClass = CommandDeleteRepositoryTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:48,710 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@2b08d18b: startup date [Fri Jul 28 09:35:47 CEST 2017]; root of context hierarchy 2017-07-28 09:35:48,711 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:48,711 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.837 s - in org.appng.cli.commands.repository.CommandDeleteRepositoryTest [INFO] Running org.appng.cli.commands.repository.CommandCreateRepositoryTest 2017-07-28 09:35:48,719 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:48,719 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@5454016a, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@27d95dec, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@7dcae30, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4e1acc34, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3a31cbcc, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@57eac75b] 2017-07-28 09:35:48,720 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:48,789 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@35255eb8: startup date [Fri Jul 28 09:35:48 CEST 2017]; root of context hierarchy 2017-07-28 09:35:48,926 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:48,935 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:48,949 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:48,950 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:48,950 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:48,950 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:48,950 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:49,053 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:49,060 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:49,173 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@280b224c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:49,179 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@278d21cb] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:49,195 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:49,229 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:49,326 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@6ee32b39 testClass = CommandCreateRepositoryTest, testInstance = org.appng.cli.commands.repository.CommandCreateRepositoryTest@76c89d3b, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@8d91042 testClass = CommandCreateRepositoryTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3d6d7d27]; rollback [false] 2017-07-28 09:35:49,359 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@6ee32b39 testClass = CommandCreateRepositoryTest, testInstance = org.appng.cli.commands.repository.CommandCreateRepositoryTest@76c89d3b, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@8d91042 testClass = CommandCreateRepositoryTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:49,360 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@35255eb8: startup date [Fri Jul 28 09:35:48 CEST 2017]; root of context hierarchy 2017-07-28 09:35:49,361 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:49,361 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.65 s - in org.appng.cli.commands.repository.CommandCreateRepositoryTest [INFO] Running org.appng.cli.commands.template.CommandInstallTemplateTest 2017-07-28 09:35:49,369 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:49,369 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1af98381, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@9b9f937, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2d178024, org.springframework.test.context.support.DirtiesContextTestExecutionListener@14ecde7d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@425fa2ea, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@4e98bd7] 2017-07-28 09:35:49,370 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:49,468 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@156e3dce: startup date [Fri Jul 28 09:35:49 CEST 2017]; root of context hierarchy 2017-07-28 09:35:49,611 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:49,621 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:49,640 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:49,640 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:49,640 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:49,640 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:49,640 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:49,743 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:49,749 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:49,855 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@33a6637e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:49,864 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4bf8d984] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:49,890 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:49,934 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:50,074 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@3e5943d4 testClass = CommandInstallTemplateTest, testInstance = org.appng.cli.commands.template.CommandInstallTemplateTest@2084b5cd, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@18780466 testClass = CommandInstallTemplateTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@4dcac9b1]; rollback [false] 2017-07-28 09:35:50,102 INFO [main] org.appng.core.service.CoreService: retrieving 'appng-template-0.8.0' from repository file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/test-classes/localrepo/ 2017-07-28 09:35:50,128 INFO [main] org.appng.core.service.TemplateService: added resource assets/favicon.ico 2017-07-28 09:35:50,128 INFO [main] org.appng.core.service.TemplateService: added resource conf/platform.xml 2017-07-28 09:35:50,129 INFO [main] org.appng.core.service.TemplateService: added resource resources/dummy.txt 2017-07-28 09:35:50,130 INFO [main] org.appng.core.service.TemplateService: added resource template.xml 2017-07-28 09:35:50,130 INFO [main] org.appng.core.service.TemplateService: added resource xsl/platform.xsl 2017-07-28 09:35:50,130 INFO [main] org.appng.core.service.TemplateService: added resource xsl/utils.xsl 2017-07-28 09:35:50,215 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@3e5943d4 testClass = CommandInstallTemplateTest, testInstance = org.appng.cli.commands.template.CommandInstallTemplateTest@2084b5cd, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@18780466 testClass = CommandInstallTemplateTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:50,216 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@156e3dce: startup date [Fri Jul 28 09:35:49 CEST 2017]; root of context hierarchy 2017-07-28 09:35:50,216 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:50,216 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.854 s - in org.appng.cli.commands.template.CommandInstallTemplateTest [INFO] Running org.appng.cli.commands.subject.CommandDeleteSubjectTest 2017-07-28 09:35:50,222 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:50,223 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@5826928f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4e841181, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@64bfcb1f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7ec14819, org.springframework.test.context.transaction.TransactionalTestExecutionListener@121f1fa4, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7cf90c7f] 2017-07-28 09:35:50,223 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:50,286 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@6604c7cc: startup date [Fri Jul 28 09:35:50 CEST 2017]; root of context hierarchy 2017-07-28 09:35:50,427 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:50,436 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:50,450 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:50,450 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:50,450 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:50,450 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:50,451 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:50,553 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:50,558 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:50,633 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1eda797d] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:50,638 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@28a5ee04] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:50,654 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:50,691 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:50,792 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@2f139405 testClass = CommandDeleteSubjectTest, testInstance = org.appng.cli.commands.subject.CommandDeleteSubjectTest@6a7b3c9e, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3e28c8a0 testClass = CommandDeleteSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3061ada4]; rollback [false] 2017-07-28 09:35:50,819 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@2f139405 testClass = CommandDeleteSubjectTest, testInstance = org.appng.cli.commands.subject.CommandDeleteSubjectTest@6a7b3c9e, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@3e28c8a0 testClass = CommandDeleteSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:50,820 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@6604c7cc: startup date [Fri Jul 28 09:35:50 CEST 2017]; root of context hierarchy 2017-07-28 09:35:50,820 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:50,821 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.604 s - in org.appng.cli.commands.subject.CommandDeleteSubjectTest [INFO] Running org.appng.cli.commands.subject.CommandListSubjectTest 2017-07-28 09:35:50,827 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:50,827 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@a95a50b, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5695a0ce, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@160250e6, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7d5103c5, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5a4b4c99, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@21a314ce] 2017-07-28 09:35:50,827 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:50,892 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@2522e57c: startup date [Fri Jul 28 09:35:50 CEST 2017]; root of context hierarchy 2017-07-28 09:35:51,049 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:51,064 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:51,171 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:51,171 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:51,171 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:51,171 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:51,171 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:51,273 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:51,291 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:51,394 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@622f0c9e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:51,401 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@432f5ccb] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:51,429 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:51,469 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:51,577 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@5822ba7 testClass = CommandListSubjectTest, testInstance = org.appng.cli.commands.subject.CommandListSubjectTest@7173247f, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5bd44caa testClass = CommandListSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@1f1bde6]; rollback [false] 2017-07-28 09:35:51,608 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@5822ba7 testClass = CommandListSubjectTest, testInstance = org.appng.cli.commands.subject.CommandListSubjectTest@7173247f, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5bd44caa testClass = CommandListSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:51,609 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@2522e57c: startup date [Fri Jul 28 09:35:50 CEST 2017]; root of context hierarchy 2017-07-28 09:35:51,610 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:51,610 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.787 s - in org.appng.cli.commands.subject.CommandListSubjectTest [INFO] Running org.appng.cli.commands.subject.CommandCreateSubjectTest 2017-07-28 09:35:51,616 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:51,616 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@12443b10, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@64ff7f61, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5b6e0226, org.springframework.test.context.support.DirtiesContextTestExecutionListener@47072fcb, org.springframework.test.context.transaction.TransactionalTestExecutionListener@74280080, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6b336d13] 2017-07-28 09:35:51,616 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:51,691 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@40e73d61: startup date [Fri Jul 28 09:35:51 CEST 2017]; root of context hierarchy 2017-07-28 09:35:51,836 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:51,851 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:51,873 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:51,873 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:51,874 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:51,874 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:51,874 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:51,977 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:51,986 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:52,099 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2b682bb7] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:52,105 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@67ea9e9] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:52,124 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:52,186 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:52,281 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@65787ec2 testClass = CommandCreateSubjectTest, testInstance = org.appng.cli.commands.subject.CommandCreateSubjectTest@41033d47, testMethod = testException@CommandCreateSubjectTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5e7e2d98 testClass = CommandCreateSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@4b95fdbb]; rollback [false] 2017-07-28 09:35:52,306 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@65787ec2 testClass = CommandCreateSubjectTest, testInstance = org.appng.cli.commands.subject.CommandCreateSubjectTest@41033d47, testMethod = testException@CommandCreateSubjectTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5e7e2d98 testClass = CommandCreateSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:52,308 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@65787ec2 testClass = CommandCreateSubjectTest, testInstance = org.appng.cli.commands.subject.CommandCreateSubjectTest@4b6bdffe, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5e7e2d98 testClass = CommandCreateSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@4b95fdbb]; rollback [false] 2017-07-28 09:35:53,163 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@65787ec2 testClass = CommandCreateSubjectTest, testInstance = org.appng.cli.commands.subject.CommandCreateSubjectTest@4b6bdffe, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5e7e2d98 testClass = CommandCreateSubjectTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:53,163 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@40e73d61: startup date [Fri Jul 28 09:35:51 CEST 2017]; root of context hierarchy 2017-07-28 09:35:53,164 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:53,164 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.553 s - in org.appng.cli.commands.subject.CommandCreateSubjectTest [INFO] Running org.appng.cli.commands.CommandBatchTest [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 s - in org.appng.cli.commands.CommandBatchTest [INFO] Running org.appng.cli.commands.group.CommandAddGroupTest 2017-07-28 09:35:53,215 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:53,215 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1c4c26fd, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3f1b7e41, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@e7ff612, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7ee0a7dc, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3e61d33, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@676b8278] 2017-07-28 09:35:53,215 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:53,281 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@165527e1: startup date [Fri Jul 28 09:35:53 CEST 2017]; root of context hierarchy 2017-07-28 09:35:53,423 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:53,437 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:53,458 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:53,458 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:53,458 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:53,459 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:53,459 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:53,561 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:53,567 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:53,668 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@f266e60] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:53,673 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3e30dc0f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:53,690 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:53,737 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:53,834 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@52154754 testClass = CommandAddGroupTest, testInstance = org.appng.cli.commands.group.CommandAddGroupTest@4b7f515a, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59523cb5 testClass = CommandAddGroupTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@23affa5b]; rollback [false] 2017-07-28 09:35:53,884 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@52154754 testClass = CommandAddGroupTest, testInstance = org.appng.cli.commands.group.CommandAddGroupTest@4b7f515a, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59523cb5 testClass = CommandAddGroupTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:53,884 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@165527e1: startup date [Fri Jul 28 09:35:53 CEST 2017]; root of context hierarchy 2017-07-28 09:35:53,885 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:53,885 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.675 s - in org.appng.cli.commands.group.CommandAddGroupTest [INFO] Running org.appng.cli.commands.group.CommandListGroupsTest 2017-07-28 09:35:53,892 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:53,892 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@db365b0, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6a8ad259, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@ee0ed53, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4c113316, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5a9941c1, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@663d48d1] 2017-07-28 09:35:53,892 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:53,964 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@6f3eab30: startup date [Fri Jul 28 09:35:53 CEST 2017]; root of context hierarchy 2017-07-28 09:35:54,111 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:54,126 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:54,148 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:54,148 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:54,148 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:54,149 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:54,149 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:54,251 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:54,257 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:54,356 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1da19a60] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:54,364 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@f2e32e1] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:54,390 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:54,430 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:54,529 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@112bda4d testClass = CommandListGroupsTest, testInstance = org.appng.cli.commands.group.CommandListGroupsTest@4d56f4c0, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2387f74e testClass = CommandListGroupsTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@4ac6c261]; rollback [false] 2017-07-28 09:35:54,554 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@112bda4d testClass = CommandListGroupsTest, testInstance = org.appng.cli.commands.group.CommandListGroupsTest@4d56f4c0, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2387f74e testClass = CommandListGroupsTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:54,554 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@6f3eab30: startup date [Fri Jul 28 09:35:53 CEST 2017]; root of context hierarchy 2017-07-28 09:35:54,555 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:54,555 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.668 s - in org.appng.cli.commands.group.CommandListGroupsTest [INFO] Running org.appng.cli.commands.group.CommandCreateGroupTest 2017-07-28 09:35:54,560 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:54,560 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@78aad31b, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@53bece17, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6cbf8bd9, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29bdf040, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7a1cc67, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@224a74f2] 2017-07-28 09:35:54,560 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:54,633 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@32bbd221: startup date [Fri Jul 28 09:35:54 CEST 2017]; root of context hierarchy 2017-07-28 09:35:54,778 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:54,792 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:54,812 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:54,812 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:54,812 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:54,813 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:54,813 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:54,915 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:54,920 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:55,013 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@25bf1fe7] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:55,019 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@1f8ea182] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:55,042 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:55,088 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:55,202 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@65f297a8 testClass = CommandCreateGroupTest, testInstance = org.appng.cli.commands.group.CommandCreateGroupTest@8bf1137, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6d63d32a testClass = CommandCreateGroupTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@132ba2ab]; rollback [false] 2017-07-28 09:35:55,233 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@65f297a8 testClass = CommandCreateGroupTest, testInstance = org.appng.cli.commands.group.CommandCreateGroupTest@8bf1137, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6d63d32a testClass = CommandCreateGroupTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:55,233 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@32bbd221: startup date [Fri Jul 28 09:35:54 CEST 2017]; root of context hierarchy 2017-07-28 09:35:55,234 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:55,234 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.679 s - in org.appng.cli.commands.group.CommandCreateGroupTest [INFO] Running org.appng.cli.commands.group.CommandDeleteGroupTest 2017-07-28 09:35:55,239 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:55,240 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@34810e9, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2fb476dd, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@708a5f26, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4fa8e353, org.springframework.test.context.transaction.TransactionalTestExecutionListener@ca47d17, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2af0c0] 2017-07-28 09:35:55,240 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:55,318 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@22fbec8c: startup date [Fri Jul 28 09:35:55 CEST 2017]; root of context hierarchy 2017-07-28 09:35:55,530 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:55,540 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:55,554 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:55,554 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:55,554 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:55,554 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:55,554 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:55,656 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:55,663 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:55,759 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@167c5780] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:55,764 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@4a38ab7f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:55,788 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:55,847 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:55,962 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@60b9a311 testClass = CommandDeleteGroupTest, testInstance = org.appng.cli.commands.group.CommandDeleteGroupTest@4c4aaa60, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@55424ee5 testClass = CommandDeleteGroupTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@4fb927f]; rollback [false] 2017-07-28 09:35:55,993 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@60b9a311 testClass = CommandDeleteGroupTest, testInstance = org.appng.cli.commands.group.CommandDeleteGroupTest@4c4aaa60, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@55424ee5 testClass = CommandDeleteGroupTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:35:55,994 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@22fbec8c: startup date [Fri Jul 28 09:35:55 CEST 2017]; root of context hierarchy 2017-07-28 09:35:55,994 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:55,995 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.759 s - in org.appng.cli.commands.group.CommandDeleteGroupTest [INFO] Running org.appng.cli.commands.site.CommandDeleteSiteTest 2017-07-28 09:35:56,000 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:35:56,001 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@69b1e44b, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3b2fa201, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1a1a00e2, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3150e87f, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5725c1a2, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@115c4eed] 2017-07-28 09:35:56,001 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:35:56,079 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@5b8b5134: startup date [Fri Jul 28 09:35:56 CEST 2017]; root of context hierarchy 2017-07-28 09:35:56,229 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:56,244 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:35:56,266 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:35:56,266 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:35:56,266 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:35:56,266 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:35:56,266 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:35:56,369 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:35:56,379 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:35:56,484 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@2b0a7f41] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:56,489 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@22b97a4e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:35:56,508 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:35:56,546 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:35:56,645 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@7a5773a testClass = CommandDeleteSiteTest, testInstance = org.appng.cli.commands.site.CommandDeleteSiteTest@3444a535, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@58bae789 testClass = CommandDeleteSiteTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@69b848d0]; rollback [false] site 'testsite' is NOT running at http://example.com:8080/manager/testsite 2017-07-28 09:36:06,748 INFO [main] org.appng.core.service.CoreService: starting deletion of site testsite 2017-07-28 09:36:06,792 INFO [main] org.appng.core.service.CoreService: deleting 0 orphaned database connections 2017-07-28 09:36:06,825 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/bootstrapRoot/WEB-INF/cache/platform/testsite 2017-07-28 09:36:06,825 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/bootstrapRoot/WEB-INF/cache/application/testsite 2017-07-28 09:36:06,825 INFO [main] org.appng.core.service.CoreService: done deleting site testsite 2017-07-28 09:36:06,829 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@7a5773a testClass = CommandDeleteSiteTest, testInstance = org.appng.cli.commands.site.CommandDeleteSiteTest@3444a535, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@58bae789 testClass = CommandDeleteSiteTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:06,830 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@5b8b5134: startup date [Fri Jul 28 09:35:56 CEST 2017]; root of context hierarchy 2017-07-28 09:36:06,831 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:06,831 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.836 s - in org.appng.cli.commands.site.CommandDeleteSiteTest [INFO] Running org.appng.cli.commands.site.CommandListSitesTest 2017-07-28 09:36:06,839 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:36:06,839 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@66a66885, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@23385, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@229c5104, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3df03e87, org.springframework.test.context.transaction.TransactionalTestExecutionListener@68c79bfc, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7948037a] 2017-07-28 09:36:06,840 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:36:06,917 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@391c7926: startup date [Fri Jul 28 09:36:06 CEST 2017]; root of context hierarchy 2017-07-28 09:36:07,064 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:07,077 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:36:07,097 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:36:07,097 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:36:07,097 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:36:07,097 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:36:07,097 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:36:07,200 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:36:07,206 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:36:07,295 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6f4ca29c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:07,302 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5eb3fa2a] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:07,325 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:07,371 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:36:07,466 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@54018475 testClass = CommandListSitesTest, testInstance = org.appng.cli.commands.site.CommandListSitesTest@3d926711, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1361a66e testClass = CommandListSitesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@7acc2734]; rollback [false] 2017-07-28 09:36:07,534 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@54018475 testClass = CommandListSitesTest, testInstance = org.appng.cli.commands.site.CommandListSitesTest@3d926711, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@1361a66e testClass = CommandListSitesTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:07,534 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@391c7926: startup date [Fri Jul 28 09:36:06 CEST 2017]; root of context hierarchy 2017-07-28 09:36:07,535 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:07,535 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.703 s - in org.appng.cli.commands.site.CommandListSitesTest [INFO] Running org.appng.cli.commands.site.CommandCreateSiteTest 2017-07-28 09:36:07,541 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:36:07,541 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@38cc8cc1, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@98d8732, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@19550a0e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@41f99084, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1d0fb6fe, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@785e167a] 2017-07-28 09:36:07,542 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:36:07,608 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@496a7605: startup date [Fri Jul 28 09:36:07 CEST 2017]; root of context hierarchy 2017-07-28 09:36:07,747 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:07,760 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:36:07,780 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:36:07,780 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:36:07,780 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:36:07,780 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:36:07,780 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:36:07,883 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:36:07,888 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:36:07,976 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@49cc239] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:07,983 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@6da74f90] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:08,002 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:08,052 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:36:08,146 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@347809c testClass = CommandCreateSiteTest, testInstance = org.appng.cli.commands.site.CommandCreateSiteTest@e531ef1, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@119c2c9c testClass = CommandCreateSiteTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5529b7be]; rollback [false] 2017-07-28 09:36:08,244 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@347809c testClass = CommandCreateSiteTest, testInstance = org.appng.cli.commands.site.CommandCreateSiteTest@e531ef1, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@119c2c9c testClass = CommandCreateSiteTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:08,245 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@496a7605: startup date [Fri Jul 28 09:36:07 CEST 2017]; root of context hierarchy 2017-07-28 09:36:08,245 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:08,245 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.709 s - in org.appng.cli.commands.site.CommandCreateSiteTest [INFO] Running org.appng.cli.commands.site.CommandSetSiteActiveTest 2017-07-28 09:36:08,254 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:36:08,254 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@65072e7d, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@38ca26f5, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2ee90f5e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@79318862, org.springframework.test.context.transaction.TransactionalTestExecutionListener@259935ff, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@4c0d5237] 2017-07-28 09:36:08,255 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:36:08,347 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@2a782717: startup date [Fri Jul 28 09:36:08 CEST 2017]; root of context hierarchy 2017-07-28 09:36:08,493 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:08,504 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:36:08,523 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:36:08,524 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:36:08,524 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:36:08,524 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:36:08,524 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:36:08,626 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:36:08,633 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:36:08,741 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@5e7f55a4] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:08,747 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@305a0355] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:08,767 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:08,808 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:36:08,909 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@7aedd36 testClass = CommandSetSiteActiveTest, testInstance = org.appng.cli.commands.site.CommandSetSiteActiveTest@60db8c9e, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@519e7f19 testClass = CommandSetSiteActiveTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@4d3828d7]; rollback [false] 2017-07-28 09:36:08,990 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@7aedd36 testClass = CommandSetSiteActiveTest, testInstance = org.appng.cli.commands.site.CommandSetSiteActiveTest@60db8c9e, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@519e7f19 testClass = CommandSetSiteActiveTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:08,991 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@2a782717: startup date [Fri Jul 28 09:36:08 CEST 2017]; root of context hierarchy 2017-07-28 09:36:08,992 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:08,992 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.745 s - in org.appng.cli.commands.site.CommandSetSiteActiveTest [INFO] Running org.appng.cli.commands.site.CommandCheckSiteRunningTest 2017-07-28 09:36:08,998 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:36:08,998 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1cbdcfc0, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@8e07fd4, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6658a42b, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4a1c7255, org.springframework.test.context.transaction.TransactionalTestExecutionListener@382d6719, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@3338a117] 2017-07-28 09:36:08,998 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:36:09,138 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@10e222a7: startup date [Fri Jul 28 09:36:09 CEST 2017]; root of context hierarchy 2017-07-28 09:36:09,283 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:09,296 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:36:09,316 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:36:09,316 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:36:09,316 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:36:09,316 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:36:09,316 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:36:09,418 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:36:09,423 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:36:09,493 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@37e9481c] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:09,498 INFO [main] org.hibernate.orm.connections.access: HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3e839a9f] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode. 2017-07-28 09:36:09,512 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:09,556 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:36:09,654 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@1ba879d4 testClass = CommandCheckSiteRunningTest, testInstance = org.appng.cli.commands.site.CommandCheckSiteRunningTest@461487e0, testMethod = testInvalidResponse@CommandCheckSiteRunningTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6db945e7 testClass = CommandCheckSiteRunningTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3af10af2]; rollback [false] site 'test2' is NOT running at http://example.com/manager/test2 HTTP response code: 404 2017-07-28 09:36:09,936 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@1ba879d4 testClass = CommandCheckSiteRunningTest, testInstance = org.appng.cli.commands.site.CommandCheckSiteRunningTest@461487e0, testMethod = testInvalidResponse@CommandCheckSiteRunningTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6db945e7 testClass = CommandCheckSiteRunningTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:09,939 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@1ba879d4 testClass = CommandCheckSiteRunningTest, testInstance = org.appng.cli.commands.site.CommandCheckSiteRunningTest@48177921, testMethod = testInvalidUri@CommandCheckSiteRunningTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6db945e7 testClass = CommandCheckSiteRunningTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3af10af2]; rollback [false] site 'test' is NOT running at http://localhorst:8080/manager/test 2017-07-28 09:36:10,018 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@1ba879d4 testClass = CommandCheckSiteRunningTest, testInstance = org.appng.cli.commands.site.CommandCheckSiteRunningTest@48177921, testMethod = testInvalidUri@CommandCheckSiteRunningTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6db945e7 testClass = CommandCheckSiteRunningTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:10,020 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@1ba879d4 testClass = CommandCheckSiteRunningTest, testInstance = org.appng.cli.commands.site.CommandCheckSiteRunningTest@6561b6a7, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6db945e7 testClass = CommandCheckSiteRunningTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@3af10af2]; rollback [false] site 'appng' is running at http://localhost:8080/manager/appng with appNG version 1.0.0-M3 2017-07-28 09:36:10,085 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@1ba879d4 testClass = CommandCheckSiteRunningTest, testInstance = org.appng.cli.commands.site.CommandCheckSiteRunningTest@6561b6a7, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@6db945e7 testClass = CommandCheckSiteRunningTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.commands.AbstractCommandTest$CommandTestInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:10,086 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@10e222a7: startup date [Fri Jul 28 09:36:09 CEST 2017]; root of context hierarchy 2017-07-28 09:36:10,087 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:10,087 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.094 s - in org.appng.cli.commands.site.CommandCheckSiteRunningTest [INFO] Running org.appng.cli.CliCoreDBNotInitializedTest 2017-07-28 09:36:10,089 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.cli.CliCoreDBNotInitializedTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:36:10,091 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.cli.CliCoreDBNotInitializedTest]: CliCoreDBNotInitializedTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:36:10,095 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:36:10,095 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@55d1e943, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@275afff9, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@3fbc4758, org.springframework.test.context.support.DirtiesContextTestExecutionListener@19a5f1fa, org.springframework.test.context.transaction.TransactionalTestExecutionListener@43e4987c, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@33b112ce] 2017-07-28 09:36:10,096 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:36:10,171 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@6eea1567: startup date [Fri Jul 28 09:36:10 CEST 2017]; root of context hierarchy 2017-07-28 09:36:10,246 INFO [HSQLDB Server @46f336fe] hsqldb.db.HSQLDB5D881FC705.ENGINE: Checkpoint start 2017-07-28 09:36:10,246 INFO [HSQLDB Server @46f336fe] hsqldb.db.HSQLDB5D881FC705.ENGINE: checkpointClose start 2017-07-28 09:36:10,256 INFO [HSQLDB Server @46f336fe] hsqldb.db.HSQLDB5D881FC705.ENGINE: checkpointClose synched 2017-07-28 09:36:10,293 INFO [HSQLDB Server @46f336fe] hsqldb.db.HSQLDB5D881FC705.ENGINE: checkpointClose script done 2017-07-28 09:36:10,330 INFO [HSQLDB Server @46f336fe] hsqldb.db.HSQLDB5D881FC705.ENGINE: checkpointClose end 2017-07-28 09:36:10,331 INFO [HSQLDB Server @46f336fe] hsqldb.db.HSQLDB5D881FC705.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:36:10,418 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:10,434 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:36:10,456 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:36:10,456 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:36:10,456 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:36:10,456 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:36:10,456 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:36:10,559 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:36:10,565 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:36:10,650 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:10,685 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:36:10,781 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@6ad3d349 testClass = CliCoreDBNotInitializedTest, testInstance = org.appng.cli.CliCoreDBNotInitializedTest@505b3698, testMethod = testHelp@CliCoreDBNotInitializedTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2e6b26c9 testClass = CliCoreDBNotInitializedTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreDBNotInitializedTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@500913fc]; rollback [false] 2017-07-28 09:36:10,798 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@6ad3d349 testClass = CliCoreDBNotInitializedTest, testInstance = org.appng.cli.CliCoreDBNotInitializedTest@505b3698, testMethod = testHelp@CliCoreDBNotInitializedTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2e6b26c9 testClass = CliCoreDBNotInitializedTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreDBNotInitializedTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:10,799 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@6ad3d349 testClass = CliCoreDBNotInitializedTest, testInstance = org.appng.cli.CliCoreDBNotInitializedTest@3a332823, testMethod = testNoArgs@CliCoreDBNotInitializedTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2e6b26c9 testClass = CliCoreDBNotInitializedTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreDBNotInitializedTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@500913fc]; rollback [false] 2017-07-28 09:36:10,803 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@6ad3d349 testClass = CliCoreDBNotInitializedTest, testInstance = org.appng.cli.CliCoreDBNotInitializedTest@3a332823, testMethod = testNoArgs@CliCoreDBNotInitializedTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2e6b26c9 testClass = CliCoreDBNotInitializedTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreDBNotInitializedTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:10,804 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@6ad3d349 testClass = CliCoreDBNotInitializedTest, testInstance = org.appng.cli.CliCoreDBNotInitializedTest@1b6f3588, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2e6b26c9 testClass = CliCoreDBNotInitializedTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreDBNotInitializedTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@500913fc]; rollback [false] 2017-07-28 09:36:10,916 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:10,928 INFO [main] org.flywaydb.core.internal.util.VersionPrinter: Flyway 4.2.0 by Boxfuse 2017-07-28 09:36:11,046 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:11,106 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@6ad3d349 testClass = CliCoreDBNotInitializedTest, testInstance = org.appng.cli.CliCoreDBNotInitializedTest@1b6f3588, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@2e6b26c9 testClass = CliCoreDBNotInitializedTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreDBNotInitializedTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:11,107 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@6eea1567: startup date [Fri Jul 28 09:36:10 CEST 2017]; root of context hierarchy 2017-07-28 09:36:11,107 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:11,107 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.021 s - in org.appng.cli.CliCoreDBNotInitializedTest [INFO] Running org.appng.cli.CliBootstrapTest [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.776 s - in org.appng.cli.CliBootstrapTest [INFO] Running org.appng.cli.CliCoreTest 2017-07-28 09:36:11,886 INFO [main] org.springframework.test.context.support.AbstractContextLoader: Could not detect default resource locations for test class [org.appng.cli.CliCoreTest]: no resource found for suffixes {-context.xml}. 2017-07-28 09:36:11,887 INFO [main] org.springframework.test.context.support.AnnotationConfigContextLoaderUtils: Could not detect default configuration classes for test class [org.appng.cli.CliCoreTest]: CliCoreTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 2017-07-28 09:36:11,889 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:36:11,890 INFO [main] org.springframework.test.context.support.DefaultTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6baef5d6, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3ead7086, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1e2b3e0b, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7b543ca0, org.springframework.test.context.transaction.TransactionalTestExecutionListener@67c86659, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@32340366] 2017-07-28 09:36:11,890 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [cliContext-test.xml] 2017-07-28 09:36:11,948 INFO [main] org.springframework.context.support.GenericApplicationContext: Refreshing org.springframework.context.support.GenericApplicationContext@75a8a84d: startup date [Fri Jul 28 09:36:11 CEST 2017]; root of context hierarchy 2017-07-28 09:36:11,995 INFO [HSQLDB Server @469c39c6] hsqldb.db.HSQLDB5D881FCDDB.ENGINE: Checkpoint start 2017-07-28 09:36:11,996 INFO [HSQLDB Server @469c39c6] hsqldb.db.HSQLDB5D881FCDDB.ENGINE: checkpointClose start 2017-07-28 09:36:12,004 INFO [HSQLDB Server @469c39c6] hsqldb.db.HSQLDB5D881FCDDB.ENGINE: checkpointClose synched 2017-07-28 09:36:12,015 INFO [HSQLDB Server @469c39c6] hsqldb.db.HSQLDB5D881FCDDB.ENGINE: checkpointClose script done 2017-07-28 09:36:12,035 INFO [HSQLDB Server @469c39c6] hsqldb.db.HSQLDB5D881FCDDB.ENGINE: checkpointClose end 2017-07-28 09:36:12,035 INFO [HSQLDB Server @469c39c6] hsqldb.db.HSQLDB5D881FCDDB.ENGINE: Checkpoint end - txts: 1 2017-07-28 09:36:12,087 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Building JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:12,101 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:36:12,120 WARN [main] org.hibernate.orm.connections.pooling: HHH10001002: Using Hibernate built-in connection pool (not for production use!) 2017-07-28 09:36:12,121 INFO [main] org.hibernate.orm.connections.pooling: HHH10001005: using driver [org.hsqldb.jdbc.JDBCDriver] at URL [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] 2017-07-28 09:36:12,121 INFO [main] org.hibernate.orm.connections.pooling: HHH10001001: Connection properties: {user=sa, password=****} 2017-07-28 09:36:12,121 INFO [main] org.hibernate.orm.connections.pooling: HHH10001003: Autocommit mode: false 2017-07-28 09:36:12,121 INFO [main] org.hibernate.engine.jdbc.connections.internal.DriverManagerConnectionProviderImpl: HHH000115: Hibernate connection pool size: 20 (min=1) 2017-07-28 09:36:12,223 INFO [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect 2017-07-28 09:36:12,229 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:36:12,329 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:12,372 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:36:12,480 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@5a46ed84, testMethod = testBatch@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:12,586 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:12,691 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:12,714 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Repair of failed migration in metadata table "PUBLIC"."schema_version" not necessary. No failed migration detected. 2017-07-28 09:36:12,722 INFO [main] org.flywaydb.core.internal.command.DbRepair: Successfully repaired metadata table "PUBLIC"."schema_version" (execution time 00:00.020s). 2017-07-28 09:36:12,722 INFO [main] org.flywaydb.core.internal.command.DbRepair: Manual cleanup of the remaining effects the failed migration may still be required. 2017-07-28 09:36:12,845 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.008s) 2017-07-28 09:36:12,861 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:36:12,876 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:36:12,888 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:36:12,926 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:36:12,939 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:36:12,945 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:36:12,950 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:36:12,957 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:36:12,962 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:36:12,968 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:36:12,974 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:36:12,979 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.120s). 2017-07-28 09:36:13,082 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:13,185 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:13,345 INFO [main] org.appng.core.service.DatabaseService: HSQL jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) is active. 2017-07-28 09:36:13,354 WARN [main] org.appng.core.domain.DatabaseConnection: error while connecting to jdbc:mysql://localhost:3306/appNG MYSQL (java.lang.ClassNotFoundException:com.mysql.jdbc.Driver) 2017-07-28 09:36:13,354 INFO [main] org.appng.core.service.DatabaseService: MYSQL jdbc:mysql://localhost:3306/appNG MYSQL is not working and will be deactivated. 2017-07-28 09:36:13,358 WARN [main] org.appng.core.domain.DatabaseConnection: error while connecting to jdbc:sqlserver://localhost:1433;databaseName=appNG MSSQL (java.lang.ClassNotFoundException:com.microsoft.sqlserver.jdbc.SQLServerDriver) 2017-07-28 09:36:13,358 INFO [main] org.appng.core.service.DatabaseService: MSSQL jdbc:sqlserver://localhost:1433;databaseName=appNG MSSQL is not working and will be deactivated. 2017-07-28 09:36:13,358 INFO [main] org.appng.cli.CliCore : Database is at version 1.3.2, state: SUCCESS, installed on 2017-07-28 09:36:12.976 2017-07-28 09:36:13,483 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:13,586 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:13,623 INFO [main] org.appng.cli.CliCore : Database is at version 1.3.2, state: SUCCESS, installed on 2017-07-28 09:36:12.976 2017-07-28 09:36:13,662 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@5a46ed84, testMethod = testBatch@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:13,672 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@366dc68b, testMethod = testCommand@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:13,775 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:13,877 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:13,898 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Repair of failed migration in metadata table "PUBLIC"."schema_version" not necessary. No failed migration detected. 2017-07-28 09:36:13,908 INFO [main] org.flywaydb.core.internal.command.DbRepair: Successfully repaired metadata table "PUBLIC"."schema_version" (execution time 00:00.012s). 2017-07-28 09:36:13,909 INFO [main] org.flywaydb.core.internal.command.DbRepair: Manual cleanup of the remaining effects the failed migration may still be required. 2017-07-28 09:36:14,037 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.007s) 2017-07-28 09:36:14,051 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": 1.3.2 2017-07-28 09:36:14,051 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Schema "PUBLIC" is up to date. No migration necessary. 2017-07-28 09:36:14,154 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:14,256 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:14,402 INFO [main] org.appng.core.service.DatabaseService: HSQL jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) is active. 2017-07-28 09:36:14,407 INFO [main] org.appng.cli.CliCore : Database is at version 1.3.2, state: SUCCESS, installed on 2017-07-28 09:36:12.976 2017-07-28 09:36:14,528 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:14,631 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:14,660 INFO [main] org.appng.cli.CliCore : Database is at version 1.3.2, state: SUCCESS, installed on 2017-07-28 09:36:12.976 2017-07-28 09:36:14,669 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@366dc68b, testMethod = testCommand@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:14,672 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@38eb62ea, testMethod = testError@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:14,777 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:14,879 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:14,899 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Repair of failed migration in metadata table "PUBLIC"."schema_version" not necessary. No failed migration detected. 2017-07-28 09:36:14,906 INFO [main] org.flywaydb.core.internal.command.DbRepair: Successfully repaired metadata table "PUBLIC"."schema_version" (execution time 00:00.009s). 2017-07-28 09:36:14,906 INFO [main] org.flywaydb.core.internal.command.DbRepair: Manual cleanup of the remaining effects the failed migration may still be required. 2017-07-28 09:36:15,042 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.011s) 2017-07-28 09:36:15,054 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": 1.3.2 2017-07-28 09:36:15,054 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Schema "PUBLIC" is up to date. No migration necessary. 2017-07-28 09:36:15,157 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:15,259 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:15,388 INFO [main] org.appng.core.service.DatabaseService: HSQL jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) is active. 2017-07-28 09:36:15,399 INFO [main] org.appng.cli.CliCore : Database is at version 1.3.2, state: SUCCESS, installed on 2017-07-28 09:36:12.976 2017-07-28 09:36:15,513 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:36:15,615 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:hsql://localhost:9001/hsql-testdb (HSQL Database Engine 2.4) 2017-07-28 09:36:15,638 INFO [main] org.appng.cli.CliCore : Database is at version 1.3.2, state: SUCCESS, installed on 2017-07-28 09:36:12.976 2017-07-28 09:36:15,647 ERROR [main] org.appng.cli.CliCore : An error occured. org.appng.api.BusinessException: force error at org.appng.cli.CliCoreTest$ErrorCommand.execute(CliCoreTest.java:178) at org.appng.cli.CliCore.perform(CliCore.java:182) at org.appng.cli.CliCoreTest.testError(CliCoreTest.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75) at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86) at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61) at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) 2017-07-28 09:36:15,651 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@38eb62ea, testMethod = testError@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:15,657 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@4579ac11, testMethod = testInvalidCommand@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:15,663 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@4579ac11, testMethod = testInvalidCommand@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:15,665 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@643dc186, testMethod = testInvalidOptions@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:15,668 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@643dc186, testMethod = testInvalidOptions@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:15,669 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@5544ac7a, testMethod = testMissingOptions@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:15,673 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@5544ac7a, testMethod = testMissingOptions@CliCoreTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:15,674 INFO [main] org.springframework.test.context.transaction.TransactionContext: Began transaction (1) for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@606d3510, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]; transaction manager [org.springframework.orm.jpa.JpaTransactionManager@5605e0ad]; rollback [false] 2017-07-28 09:36:15,675 INFO [main] org.springframework.test.context.transaction.TransactionContext: Committed transaction for test context [DefaultTestContext@621b209 testClass = CliCoreTest, testInstance = org.appng.cli.CliCoreTest@606d3510, testMethod = test@AbstractCommandTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@28de8cad testClass = CliCoreTest, locations = '{classpath:cliContext-test.xml}', classes = '{}', contextInitializerClasses = '[class org.appng.cli.CliCoreTest]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[empty]], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 2017-07-28 09:36:15,675 INFO [main] org.springframework.context.support.GenericApplicationContext: Closing org.springframework.context.support.GenericApplicationContext@75a8a84d: startup date [Fri Jul 28 09:36:11 CEST 2017]; root of context hierarchy 2017-07-28 09:36:15,676 INFO [main] org.springframework.orm.jpa.LocalEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:36:15,676 INFO [main] org.hibernate.orm.connections.pooling: HHH10001008: Cleaning up connection pool [jdbc:hsqldb:hsql://localhost:9001/hsql-testdb] [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.791 s - in org.appng.cli.CliCoreTest [INFO] Running org.appng.cli.prettyTable.PrettyTableTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.appng.cli.prettyTable.PrettyTableTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 59, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-cli --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-cli --- [WARNING] Error fetching link: https://appng.org/appng-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-testsupport/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.cli... Loading source files for package org.appng.cli.commands.application... Loading source files for package org.appng.cli.commands.property... Loading source files for package org.appng.cli.commands.permission... Loading source files for package org.appng.cli.commands... Loading source files for package org.appng.cli.commands.applicationrole... Loading source files for package org.appng.cli.commands.repository... Loading source files for package org.appng.cli.commands.template... Loading source files for package org.appng.cli.commands.heartbeat... Loading source files for package org.appng.cli.commands.subject... Loading source files for package org.appng.cli.commands.group... Loading source files for package org.appng.cli.commands.site... Loading source files for package org.appng.cli.prettytable... Loading source files for package org.appng.cli.validators... Loading source files for package org.appng.cli.servlet... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/CliBootstrap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/CliCommands.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/CliCore.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/CliEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/ExecutableCliCommand.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/NoSuchRepositoryException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/NoSuchSiteException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/ActivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/BaseApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/BaseApplication.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/DeactivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/DeleteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/InstallApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/ListApplications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/CreateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/DeleteProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/ListProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/PropertyHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/UpdateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/AddPermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/ListPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/RemovePermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/CommandBatch.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/CommandList.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/CommandMain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/FileOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/AddRole.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/ListRoles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/CreateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/DeleteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/ListRepositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/DeleteTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/InstallTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/HeartBeat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/HeartBeat.HeartBeatEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/CreateSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/DeleteSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/ListSubjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/AddGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/CreateGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/DeleteGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/ListGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/CheckSiteRunning.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/CreateSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/DeleteSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/ListSites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/SetSiteActive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/PrettyTable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/TableConstants.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/TableRow.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/validators/FileExists.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/servlet/InstallListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/servlet/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/servlet/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/servlet/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/validators/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/validators/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/validators/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/CliEnvironment.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/NoSuchRepositoryException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/CliBootstrap.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/NoSuchSiteException.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/ExecutableCliCommand.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/CliCore.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/class-use/CliCommands.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/DeleteApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/ListApplications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/DeactivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/BaseApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/BaseApplication.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/InstallApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/class-use/ActivateApplication.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/class-use/PropertyHelper.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/class-use/UpdateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/class-use/ListProperties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/class-use/DeleteProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/class-use/CreateProperty.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/class-use/RemovePermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/class-use/ListPermissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/class-use/AddPermission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/class-use/FileOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/class-use/CommandMain.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/class-use/CommandBatch.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/class-use/CommandList.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/class-use/AddRole.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/class-use/ListRoles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/class-use/ListRepositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/class-use/CreateRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/class-use/DeleteRepository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/class-use/DeleteTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/class-use/InstallTemplate.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/class-use/HeartBeat.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/class-use/HeartBeat.HeartBeatEvent.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/class-use/ListSubjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/class-use/DeleteSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/class-use/CreateSubject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/class-use/CreateGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/class-use/ListGroups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/class-use/AddGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/class-use/DeleteGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/class-use/CheckSiteRunning.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/class-use/CreateSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/class-use/ListSites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/class-use/DeleteSite.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/class-use/SetSiteActive.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/class-use/TableConstants.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/class-use/TableRow.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/class-use/PrettyTable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/validators/class-use/FileExists.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/servlet/class-use/InstallListener.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/application/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/applicationrole/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/group/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/heartbeat/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/permission/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/property/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/repository/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/site/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/subject/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/commands/template/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/prettytable/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/servlet/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/org/appng/cli/validators/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-cli >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-cli <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-cli --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-cli --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-cli --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-cli --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-cli --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-cli/target/appng-cli-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Tag Library 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-taglib --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-taglib --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 20 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-taglib --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-taglib --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 8 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-taglib --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.taglib.search.SearchTest 2017-07-28 09:36:22,886 [main] DEBUG org.appng.taglib.search.SearchPart - added part global:null to org.appng.taglib.search.SearchTest@3901d134 2017-07-28 09:36:23,551 [main] DEBUG org.appng.taglib.search.Search - term is Hitchhiker 2017-07-28 09:36:23,553 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:23,553 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:23,554 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:23,554 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:23,554 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:23,554 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:23,555 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:23,555 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:23,556 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:23,561 [main] INFO org.appng.taglib.search.Search - processing org.appng.search.searcher.StandardSearcher with term 'Hitchhiker' and parameters {excludeTypes=com.foo.Bar} 2017-07-28 09:36:23,674 [main] INFO org.appng.search.searcher.StandardSearcher - 1 results returned from query: +language:en +((title:hitchhik) (title:hitchhiker*)) -type:com.foo.Bar [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.519 s - in org.appng.taglib.search.SearchTest [INFO] Running org.appng.taglib.PermissionTest 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,090 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,091 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,091 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,133 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,133 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,133 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,134 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,134 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,134 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,134 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,134 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,134 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,136 [main] DEBUG org.appng.api.support.DefaultPermissionProcessor - created PermissionProcessor for user 'null' in application 'null' of site 'null' 2017-07-28 09:36:24,136 [main] DEBUG org.appng.api.support.DummyPermissionProcessor - creating instance for subject null, site null, application null 2017-07-28 09:36:24,136 [main] DEBUG org.appng.api.support.DummyPermissionProcessor - granting permission 2017-07-28 09:36:24,136 [main] DEBUG org.appng.taglib.Permission - subject has the permission: null [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087 s - in org.appng.taglib.PermissionTest [INFO] Running org.appng.taglib.form.FormConfirmationTest [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 s - in org.appng.taglib.form.FormConfirmationTest [INFO] Running org.appng.taglib.AttributeTest 2017-07-28 09:36:24,151 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,152 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,154 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,194 [main] DEBUG org.appng.el.ExpressionEvaluator - ${variable} = fromSite [(variable = fromSite)] 2017-07-28 09:36:24,196 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,197 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,198 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,198 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,198 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,198 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,199 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,199 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,199 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,199 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,199 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,200 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,200 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,200 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,201 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,201 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,201 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,201 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,201 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,201 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,202 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sites.localhost} = Mock for Site, hashCode: 1079125839 [(sites = {localhost=Mock for Site, hashCode: 1079125839})] 2017-07-28 09:36:24,202 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,203 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,205 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sites['localhost']} = Mock for Site, hashCode: 1079125839 [(sites = {localhost=Mock for Site, hashCode: 1079125839})] 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,205 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,210 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sites['localhost'].name} = localhost [(sites = {localhost=Mock for Site, hashCode: 1079125839})] 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,211 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,213 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sites['localhost'].getName()} = localhost [(sites = {localhost=Mock for Site, hashCode: 1079125839})] 2017-07-28 09:36:24,213 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,213 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,213 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,214 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,214 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,214 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,214 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,214 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,214 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,215 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sites.localhost.getName()} = localhost [(sites = {localhost=Mock for Site, hashCode: 1079125839})] 2017-07-28 09:36:24,215 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,216 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,217 [main] DEBUG org.appng.el.ExpressionEvaluator - ${variable} = fromRequest [(variable = fromRequest)] 2017-07-28 09:36:24,218 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,218 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,218 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,218 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,218 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,218 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,219 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,219 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,219 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,220 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,221 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,223 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,224 [main] DEBUG org.appng.el.ExpressionEvaluator - ${variable} = fromPlatform [(variable = fromPlatform)] 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,225 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,226 [main] DEBUG org.appng.el.ExpressionEvaluator - ${variable} = fromSession [(variable = fromSession)] 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,227 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,228 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,228 [main] DEBUG org.appng.el.ExpressionEvaluator - ${sites} = {localhost=Mock for Site, hashCode: 620423816} [(sites = {localhost=Mock for Site, hashCode: 620423816})] 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,229 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,230 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE [INFO] Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.084 s - in org.appng.taglib.AttributeTest [INFO] Running org.appng.taglib.TagletProcessorTest 2017-07-28 09:36:24,531 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.XMLTaglet$$EnhancerByMockitoWithCGLIB$$b9a796c7' width attributes: {} 2017-07-28 09:36:24,545 [main] DEBUG org.appng.taglib.TagletProcessor - No prefix and suffix defined for not transformed output. Using default values 2017-07-28 09:36:24,545 [main] DEBUG org.appng.taglib.TagletProcessor - Using prefix for not transformed output. 2017-07-28 09:36:24,553 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.XMLTaglet$$EnhancerByMockitoWithCGLIB$$b9a796c7' width attributes: {noXslPrefix=test prefix} 2017-07-28 09:36:24,554 [main] DEBUG org.appng.taglib.TagletProcessor - No prefix and suffix defined for not transformed output. Using default values 2017-07-28 09:36:24,554 [main] DEBUG org.appng.taglib.TagletProcessor - Using prefix for not transformed output. 2017-07-28 09:36:24,556 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.XMLTaglet$$EnhancerByMockitoWithCGLIB$$b9a796c7' width attributes: {noXslSuffix=test suffix} 2017-07-28 09:36:24,557 [main] DEBUG org.appng.taglib.TagletProcessor - No prefix and suffix defined for not transformed output. Using default values 2017-07-28 09:36:24,557 [main] DEBUG org.appng.taglib.TagletProcessor - Using prefix for not transformed output. 2017-07-28 09:36:24,558 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.GlobalTaglet$$EnhancerByMockitoWithCGLIB$$afa473b7' with attributes: {} 2017-07-28 09:36:24,563 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.taglib.TagletProcessorTest$MyTaglet$$EnhancerByMockitoWithCGLIB$$30374776' with attributes: {} 2017-07-28 09:36:24,575 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.GlobalXMLTaglet$$EnhancerByMockitoWithCGLIB$$5752ad7c' width attributes: {} 2017-07-28 09:36:24,576 [main] DEBUG org.appng.taglib.TagletProcessor - No prefix and suffix defined for not transformed output. Using default values 2017-07-28 09:36:24,576 [main] DEBUG org.appng.taglib.TagletProcessor - Using prefix for not transformed output. 2017-07-28 09:36:24,577 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.XMLTaglet$$EnhancerByMockitoWithCGLIB$$b9a796c7' width attributes: {noXslPrefix=test prefix, noXslSuffix=test suffix} 2017-07-28 09:36:24,578 [main] DEBUG org.appng.taglib.TagletProcessor - Using prefix test prefix and suffix test suffix for not transformed output. 2017-07-28 09:36:24,579 [main] DEBUG org.appng.taglib.TagletProcessor - calling taglet 'taglet' of type 'org.appng.api.Taglet$$EnhancerByMockitoWithCGLIB$$e4d2064c' with attributes: {} [INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.348 s - in org.appng.taglib.TagletProcessorTest [INFO] Running org.appng.taglib.TagletAdapterTest 2017-07-28 09:36:24,581 [main] INFO org.appng.api.support.SiteClassLoader - SiteClassLoader#1937693946 for site localhost with parent sun.misc.Launcher$AppClassLoader#1252169911 created [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 s - in org.appng.taglib.TagletAdapterTest [INFO] Running org.appng.taglib.MultiSiteSupportTest 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope PLATFORM 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SITE 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope SESSION 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope REQUEST 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - disabling scope URL 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope PLATFORM 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SESSION 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope REQUEST 2017-07-28 09:36:24,596 [main] DEBUG org.appng.api.support.environment.DefaultEnvironment - enabling scope SITE 2017-07-28 09:36:24,623 [main] DEBUG org.appng.taglib.MultiSiteSupport - application 'application' not found for site 'localhost', trying in granting sites [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 s - in org.appng.taglib.MultiSiteSupportTest [INFO] Running org.appng.taglib.ParameterTest 2017-07-28 09:36:24,624 [main] DEBUG org.appng.taglib.Parameter - added parameter param1=value1 to parent tag org.appng.taglib.ParameterTest@2577d6c8 2017-07-28 09:36:24,624 [main] DEBUG org.appng.taglib.Parameter - added parameter param2="Ä" to parent tag org.appng.taglib.ParameterTest@2577d6c8 2017-07-28 09:36:24,625 [main] DEBUG org.appng.taglib.Parameter - added parameter param3=null to parent tag org.appng.taglib.ParameterTest@2577d6c8 [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.appng.taglib.ParameterTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 33, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-taglib --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-taglib --- [WARNING] Error fetching link: https://appng.org/appng-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-search/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-formtags/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://www.mockito.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.taglib... Loading source files for package org.appng.taglib.search... Loading source files for package org.appng.taglib.form... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/ApplicationAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/Attribute.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/Attribute.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/If.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/MultiSiteSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/Parameter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/ParameterOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/TagletAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/TagletProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/Searchable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/SearchPart.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/Parameter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/ParameterOwner.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/ApplicationAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/MultiSiteSupport.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/TagletAdapter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/TagletProcessor.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/If.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/Attribute.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/class-use/Attribute.Mode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/class-use/SearchPart.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/class-use/Searchable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/class-use/Search.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/class-use/Form.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/class-use/FormElement.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/class-use/FormConfirmation.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/class-use/FormGroup.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/class-use/FormData.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/form/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/org/appng/taglib/search/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-taglib >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-taglib <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-taglib --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-taglib --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-taglib --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-taglib --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-taglib --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-taglib/target/appng-taglib-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Application 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-application --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-application --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-application --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-application --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-application --- [INFO] [INFO] --- maven-war-plugin:3.1.0:war (default-war) @ appng-application --- [INFO] Packaging webapp [INFO] Assembling webapp [appng-application] in [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3] [INFO] Processing war project [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/src/main/webapp/META-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3] [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/src/main/webapp/WEB-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3] [INFO] Copying webapp resources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-application/src/main/webapp] [INFO] Webapp assembled in [274 msecs] [INFO] Building war: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-application --- [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-application >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-application <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-application --- [INFO] [INFO] --- maven-dependency-plugin:3.0.1:copy-dependencies (default) @ appng-application --- [INFO] Copying appng-formtags-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-formtags-1.14.3.jar [INFO] Copying appng-persistence-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-persistence-1.14.3.jar [INFO] Copying appng-mail-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-mail-1.14.3.jar [INFO] Copying appng-search-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-search-1.14.3.jar [INFO] Copying appng-cli-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-cli-1.14.3.jar [INFO] Copying appng-taglib-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-taglib-1.14.3.jar [INFO] Copying appng-api-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-api-1.14.3.jar [INFO] Copying appng-xmlapi-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-xmlapi-1.14.3.jar [INFO] Copying appng-tools-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-tools-1.14.3.jar [INFO] Copying appng-core-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-core-1.14.3.jar [INFO] Copying appng-forms-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/dependency/appng-forms-1.14.3.jar [INFO] net.jcip:jcip-annotations:jar:1.0 already exists in destination. [INFO] org.itadaki:bzip2:jar:0.9.1 already exists in destination. [INFO] org.springframework:spring-orm:jar:4.3.9.RELEASE already exists in destination. [INFO] com.google.protobuf:protobuf-java:jar:2.5.0 already exists in destination. [INFO] com.googlecode.juniversalchardet:juniversalchardet:jar:1.0.3 already exists in destination. [INFO] org.apache.maven.scm:maven-scm-provider-svnexe:jar:1.4 already exists in destination. [INFO] org.springframework:spring-oxm:jar:4.3.9.RELEASE already exists in destination. [INFO] org.appng:appng-tomcat8:jar:1.14.3 already exists in destination. [INFO] com.optimaize.languagedetector:language-detector:jar:0.5 already exists in destination. [INFO] xml-apis:xml-apis-ext:jar:1.3.04 already exists in destination. [INFO] org.attoparser:attoparser:jar:2.0.4.RELEASE already exists in destination. [INFO] org.freemarker:freemarker:jar:2.3.23 already exists in destination. [INFO] org.apache.lucene:lucene-queries:jar:6.6.0 already exists in destination. [INFO] org.springframework:spring-webmvc:jar:4.3.9.RELEASE already exists in destination. [INFO] com.mysema.commons:mysema-commons-lang:jar:0.2.4 already exists in destination. [INFO] edu.ucar:grib:jar:4.5.5 already exists in destination. [INFO] org.apache.pdfbox:fontbox:jar:2.0.6 already exists in destination. [INFO] org.springframework.data:spring-data-envers:jar:1.1.4.RELEASE already exists in destination. [INFO] org.apache.lucene:lucene-analyzers-common:jar:6.6.0 already exists in destination. [INFO] org.apache.commons:commons-pool2:jar:2.4.2 already exists in destination. [INFO] dom4j:dom4j:jar:1.6.1 already exists in destination. [INFO] org.apache.james:apache-mime4j-dom:jar:0.7.2 already exists in destination. [INFO] c3p0:c3p0:jar:0.9.1.1 already exists in destination. [INFO] org.apache.maven.scm:maven-scm-api:jar:1.4 already exists in destination. [INFO] javax.mail:mail:jar:1.4.5 already exists in destination. [INFO] commons-lang:commons-lang:jar:2.6 already exists in destination. [INFO] org.apache.commons:commons-text:jar:1.1 already exists in destination. [INFO] org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final already exists in destination. [INFO] org.apache.commons:commons-vfs2:jar:2.0 already exists in destination. [INFO] org.apache.commons:commons-exec:jar:1.3 already exists in destination. [INFO] com.google.errorprone:error_prone_annotations:jar:2.0.18 already exists in destination. [INFO] org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.0.1.Final already exists in destination. [INFO] com.fasterxml.jackson.core:jackson-core:jar:2.9.0.pr4 already exists in destination. [INFO] joda-time:joda-time:jar:2.9.9 already exists in destination. [INFO] org.gagravarr:vorbis-java-core:jar:0.8 already exists in destination. [INFO] org.tuckey:urlrewritefilter:jar:4.0.4 already exists in destination. [INFO] org.appng:appng-tomcat7:jar:1.14.3 already exists in destination. [INFO] org.springframework:spring-jdbc:jar:4.3.9.RELEASE already exists in destination. [INFO] net.sf.saxon:Saxon-HE:jar:9.6.0-6 already exists in destination. [INFO] org.springframework.ws:spring-ws-core:jar:2.4.0.RELEASE already exists in destination. [INFO] org.apache.lucene:lucene-sandbox:jar:6.6.0 already exists in destination. [INFO] org.apache.tika:tika-parsers:jar:1.15 already exists in destination. [INFO] commons-fileupload:commons-fileupload:jar:1.3.3 already exists in destination. [INFO] org.springframework:spring-web:jar:4.3.9.RELEASE already exists in destination. [INFO] log4j:log4j:jar:1.2.17 already exists in destination. [INFO] com.beust:jcommander:jar:1.72 already exists in destination. [INFO] org.bouncycastle:bcprov-jdk15on:jar:1.54 already exists in destination. [INFO] com.rometools:rome-utils:jar:1.5.1 already exists in destination. [INFO] antlr:antlr:jar:2.7.7 already exists in destination. [INFO] org.apache.pdfbox:pdfbox-tools:jar:2.0.6 already exists in destination. [INFO] edu.ucar:netcdf4:jar:4.5.5 already exists in destination. [INFO] org.ow2.asm:asm:jar:5.0.4 already exists in destination. [INFO] org.opengis:geoapi:jar:3.0.0 already exists in destination. [INFO] org.springframework:spring-expression:jar:4.3.9.RELEASE already exists in destination. [INFO] org.json:json:jar:20140107 already exists in destination. [INFO] javax.ws.rs:javax.ws.rs-api:jar:2.0.1 already exists in destination. [INFO] edu.ucar:cdm:jar:4.5.5 already exists in destination. [INFO] org.apache.httpcomponents:httpmime:jar:4.2.6 already exists in destination. [INFO] edu.ucar:jj2000:jar:5.2 already exists in destination. [INFO] edu.ucar:httpservices:jar:4.5.5 already exists in destination. [INFO] org.beanshell:bsh-core:jar:2.0b4 already exists in destination. [INFO] com.google.code.gson:gson:jar:2.2.4 already exists in destination. [INFO] org.springframework:spring-aop:jar:4.3.9.RELEASE already exists in destination. [INFO] org.apache.cxf:cxf-rt-rs-client:jar:3.0.12 already exists in destination. [INFO] de.l3s.boilerpipe:boilerpipe:jar:1.1.0 already exists in destination. [INFO] net.jodah:lyra:jar:0.5.4 already exists in destination. [INFO] org.unbescape:unbescape:jar:1.1.4.RELEASE already exists in destination. [INFO] commons-configuration:commons-configuration:jar:1.10 already exists in destination. [INFO] com.fasterxml.jackson.core:jackson-databind:jar:2.9.0.pr4 already exists in destination. [INFO] org.hibernate:hibernate-core:jar:5.2.10.Final already exists in destination. [INFO] org.apache.commons:commons-compress:jar:1.14 already exists in destination. [INFO] net.sourceforge.nekohtml:nekohtml:jar:1.9.16 already exists in destination. [INFO] org.gagravarr:vorbis-java-tika:jar:0.8 already exists in destination. [INFO] org.apache.poi:poi-scratchpad:jar:3.16 already exists in destination. [INFO] org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1 already exists in destination. [INFO] org.apache.xmlbeans:xmlbeans:jar:2.6.0 already exists in destination. [INFO] org.springframework.security:spring-security-web:jar:4.2.3.RELEASE already exists in destination. [INFO] commons-collections:commons-collections:jar:3.2.2 already exists in destination. [INFO] org.slf4j:slf4j-api:jar:1.7.25 already exists in destination. [INFO] com.zaxxer:HikariCP:jar:2.6.3 already exists in destination. [INFO] org.apache.lucene:lucene-core:jar:6.6.0 already exists in destination. [INFO] org.thymeleaf:thymeleaf-spring4:jar:3.0.6.RELEASE already exists in destination. [INFO] org.thymeleaf:thymeleaf:jar:3.0.6.RELEASE already exists in destination. [INFO] org.apache.sis.core:sis-referencing:jar:0.6 already exists in destination. [INFO] commons-httpclient:commons-httpclient:jar:3.1 already exists in destination. [INFO] org.owasp.esapi:esapi:jar:2.1.0.1 already exists in destination. [INFO] com.rabbitmq:amqp-client:jar:4.1.0 already exists in destination. [INFO] org.javassist:javassist:jar:3.20.0-GA already exists in destination. [INFO] aopalliance:aopalliance:jar:1.0 already exists in destination. [INFO] org.hibernate.common:hibernate-commons-annotations:jar:5.0.1.Final already exists in destination. [INFO] org.apache.poi:poi-ooxml:jar:3.16 already exists in destination. [INFO] org.apache.xmlgraphics:batik-ext:jar:1.8 already exists in destination. [INFO] org.bouncycastle:bcpkix-jdk15on:jar:1.54 already exists in destination. [INFO] org.springframework:spring-context:jar:4.3.9.RELEASE already exists in destination. [INFO] org.codehaus.plexus:plexus-utils:jar:1.5.6 already exists in destination. [INFO] org.slf4j:jul-to-slf4j:jar:1.7.24 already exists in destination. [INFO] xom:xom:jar:1.2.5 already exists in destination. [INFO] org.apache.tika:tika-core:jar:1.15 already exists in destination. [INFO] com.googlecode.json-simple:json-simple:jar:1.1.1 already exists in destination. [INFO] com.drewnoakes:metadata-extractor:jar:2.9.1 already exists in destination. [INFO] org.apache.httpcomponents:httpcore:jar:4.4.6 already exists in destination. [INFO] com.rometools:rome:jar:1.5.1 already exists in destination. [INFO] org.apache.pdfbox:jempbox:jar:1.8.13 already exists in destination. [INFO] org.apache.opennlp:opennlp-tools:jar:1.6.0 already exists in destination. [INFO] org.tukaani:xz:jar:1.6 already exists in destination. [INFO] org.jdom:jdom2:jar:2.0.4 already exists in destination. [INFO] javax.validation:validation-api:jar:1.1.0.Final already exists in destination. [INFO] com.intellij:annotations:jar:12.0 already exists in destination. [INFO] org.apache.lucene:lucene-facet:jar:6.6.0 already exists in destination. [INFO] regexp:regexp:jar:1.3 already exists in destination. [INFO] edu.usc.ir:sentiment-analysis-parser:jar:0.1 already exists in destination. [INFO] org.apache.httpcomponents:httpclient:jar:4.5.3 already exists in destination. [INFO] com.healthmarketscience.jackcess:jackcess-encrypt:jar:2.1.1 already exists in destination. [INFO] com.google.code.findbugs:jsr305:jar:1.3.9 already exists in destination. [INFO] org.owasp.antisamy:antisamy:jar:1.5.3 already exists in destination. [INFO] org.slf4j:slf4j-log4j12:jar:1.7.25 already exists in destination. [INFO] org.jboss:jandex:jar:2.0.3.Final already exists in destination. [INFO] net.arnx:jsonic:jar:1.2.11 already exists in destination. [INFO] net.bytebuddy:byte-buddy:jar:1.6.6 already exists in destination. [INFO] org.hibernate:hibernate-validator:jar:5.4.1.Final already exists in destination. [INFO] org.apache.pdfbox:pdfbox:jar:2.0.6 already exists in destination. [INFO] org.apache.sis.core:sis-metadata:jar:0.6 already exists in destination. [INFO] org.apache.commons:commons-collections4:jar:4.1 already exists in destination. [INFO] wsdl4j:wsdl4j:jar:1.6.3 already exists in destination. [INFO] commons-codec:commons-codec:jar:1.10 already exists in destination. [INFO] org.apache.commons:commons-csv:jar:1.0 already exists in destination. [INFO] com.adobe.xmp:xmpcore:jar:5.1.2 already exists in destination. [INFO] org.apache.poi:poi-ooxml-schemas:jar:3.16 already exists in destination. [INFO] org.apache.james:apache-mime4j-core:jar:0.7.2 already exists in destination. [INFO] org.apache.tika:tika-langdetect:jar:1.13 already exists in destination. [INFO] org.springframework:spring-tx:jar:4.3.9.RELEASE already exists in destination. [INFO] com.pff:java-libpst:jar:0.8.1 already exists in destination. [INFO] org.springframework:spring-context-support:jar:4.3.9.RELEASE already exists in destination. [INFO] org.apache.commons:commons-lang3:jar:3.6 already exists in destination. [INFO] org.apache.xmlgraphics:batik-css:jar:1.8 already exists in destination. [INFO] org.jsoup:jsoup:jar:1.10.2 already exists in destination. [INFO] org.jboss.logging:jboss-logging:jar:3.3.0.Final already exists in destination. [INFO] org.apache.cxf:cxf-rt-frontend-jaxrs:jar:3.0.12 already exists in destination. [INFO] stax:stax-api:jar:1.0.1 already exists in destination. [INFO] org.apache.lucene:lucene-memory:jar:6.6.0 already exists in destination. [INFO] org.apache.sis.core:sis-utility:jar:0.6 already exists in destination. [INFO] javax.measure:jsr-275:jar:0.9.3 already exists in destination. [INFO] org.apache.lucene:lucene-highlighter:jar:6.6.0 already exists in destination. [INFO] org.springframework.ws:spring-xml:jar:2.4.0.RELEASE already exists in destination. [INFO] org.apache.maven.scm:maven-scm-provider-svn-commons:jar:1.4 already exists in destination. [INFO] org.codehaus.mojo:animal-sniffer-annotations:jar:1.14 already exists in destination. [INFO] org.hsqldb:hsqldb:jar:2.4.0 already exists in destination. [INFO] com.fasterxml:classmate:jar:1.3.1 already exists in destination. [INFO] org.apache.cxf:cxf-rt-transports-http:jar:3.0.12 already exists in destination. [INFO] org.apache.poi:poi:jar:3.16 already exists in destination. [INFO] com.github.virtuald:curvesapi:jar:1.04 already exists in destination. [INFO] org.slf4j:jcl-over-slf4j:jar:1.7.25 already exists in destination. [INFO] com.querydsl:querydsl-core:jar:4.1.4 already exists in destination. [INFO] com.github.sylvainlaurent.jdbcperflogger:jdbc-perf-logger-driver:jar:0.7.3 already exists in destination. [INFO] org.codelibs:jhighlight:jar:1.0.2 already exists in destination. [INFO] org.apache.cxf:cxf-core:jar:3.0.12 already exists in destination. [INFO] redis.clients:jedis:jar:2.9.0 already exists in destination. [INFO] edu.ucar:udunits:jar:4.5.5 already exists in destination. [INFO] org.apache.lucene:lucene-queryparser:jar:6.6.0 already exists in destination. [INFO] org.codehaus.woodstox:woodstox-core-asl:jar:4.4.1 already exists in destination. [INFO] org.hibernate:hibernate-envers:jar:5.2.10.Final already exists in destination. [INFO] org.springframework.data:spring-data-commons:jar:1.13.4.RELEASE already exists in destination. [INFO] org.springframework.data:spring-data-jpa:jar:1.11.4.RELEASE already exists in destination. [INFO] org.apache.sis.storage:sis-netcdf:jar:0.6 already exists in destination. [INFO] org.quartz-scheduler:quartz:jar:2.2.3 already exists in destination. [INFO] org.bouncycastle:bcmail-jdk15on:jar:1.54 already exists in destination. [INFO] org.apache.sis.storage:sis-storage:jar:0.6 already exists in destination. [INFO] net.sf.jmimemagic:jmimemagic:jar:0.1.5 already exists in destination. [INFO] org.apache.lucene:lucene-join:jar:6.6.0 already exists in destination. [INFO] commons-io:commons-io:jar:2.5 already exists in destination. [INFO] net.sf.ehcache:ehcache-web:jar:2.0.4 already exists in destination. [INFO] com.querydsl:querydsl-jpa:jar:4.1.4 already exists in destination. [INFO] com.google.j2objc:j2objc-annotations:jar:1.1 already exists in destination. [INFO] org.aspectj:aspectjrt:jar:1.8.10 already exists in destination. [INFO] org.springframework.security:spring-security-core:jar:4.2.3.RELEASE already exists in destination. [INFO] org.im4java:im4java:jar:1.4.0 already exists in destination. [INFO] com.github.junrar:junrar:jar:0.7 already exists in destination. [INFO] commons-beanutils:commons-beanutils-core:jar:1.8.3 already exists in destination. [INFO] com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0.pr4 already exists in destination. [INFO] org.apache.pdfbox:pdfbox-debugger:jar:2.0.6 already exists in destination. [INFO] org.apache.ws.xmlschema:xmlschema-core:jar:2.2.1 already exists in destination. [INFO] javax.annotation:javax.annotation-api:jar:1.2 already exists in destination. [INFO] com.google.guava:guava:jar:22.0 already exists in destination. [INFO] org.springframework:spring-beans:jar:4.3.9.RELEASE already exists in destination. [INFO] com.infradna.tool:bridge-method-annotation:jar:1.13 already exists in destination. [INFO] org.codehaus.woodstox:stax2-api:jar:3.1.4 already exists in destination. [INFO] org.flywaydb:flyway-core:jar:4.2.0 already exists in destination. [INFO] net.sf.ehcache:ehcache-core:jar:2.6.11 already exists in destination. [INFO] org.tallison:jmatio:jar:1.2 already exists in destination. [INFO] org.apache.xmlgraphics:batik-util:jar:1.8 already exists in destination. [INFO] com.healthmarketscience.jackcess:jackcess:jar:2.1.4 already exists in destination. [INFO] org.springframework:spring-core:jar:4.3.9.RELEASE already exists in destination. [INFO] org.hibernate:hibernate-entitymanager:jar:5.2.10.Final already exists in destination. [INFO] net.java.dev.jna:jna:jar:4.1.0 already exists in destination. [INFO] [INFO] --- maven-assembly-plugin:3.0.0:single (default) @ appng-application --- [INFO] Reading assembly descriptor: assembly.xml [INFO] Building zip: /srv/www/appng.org/appng/builds/stable/appng-application-1.14.3-dependencies-20170728-0731.zip [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-application --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-application --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-application --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.war [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom [INFO] Installing /srv/www/appng.org/appng/builds/stable/appng-application-1.14.3-dependencies-20170728-0731.zip to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.war.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/gpg/srv/www/appng.org/appng/builds/stable/appng-application-1.14.3-dependencies-20170728-0731.zip.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-application --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3.war [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom [INFO] Installing /srv/www/appng.org/appng/builds/stable/appng-application-1.14.3-dependencies-20170728-0731.zip to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.war.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3.war.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/gpg/srv/www/appng.org/appng/builds/stable/appng-application-1.14.3-dependencies-20170728-0731.zip.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application/target/appng-application-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] --- maven-antrun-plugin:1.8:run (default) @ appng-application --- [INFO] Executing tasks main: [copy] Copying 1 file to /srv/www/appng.org/appng/builds/stable [INFO] Executed tasks [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG application BOM 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-application-bom --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ appng-application-bom --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-bom/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-bom/target/appng-application-bom-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-application-bom --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-bom/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-bom/target/appng-application-bom-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Documentation 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 5 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-documentation --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-documentation --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-documentation --- [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-documentation --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-documentation --- [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-documentation >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-documentation <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-documentation --- [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 8 resources [INFO] Copying file appng.css [INFO] Copying file images/application-processing.jpg [INFO] Copying file images/appng.png [INFO] Copying file listing/application.xml [INFO] Copying file listing/pom.xml [INFO] Copying file listing/dependencies.txt [INFO] Copying file listing/pg-employees.xml [INFO] Copying file listing/applist.txt [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/asciidoc/developerguide.adoc [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-documentation --- [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-documentation --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-documentation --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar.asc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 8 resources [INFO] Copying file appng.css [INFO] Copying file images/application-processing.jpg [INFO] Copying file images/appng.png [INFO] Copying file listing/application.xml [INFO] Copying file listing/pom.xml [INFO] Copying file listing/dependencies.txt [INFO] Copying file listing/pg-employees.xml [INFO] Copying file listing/applist.txt [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/asciidoc/developerguide.adoc [INFO] [INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-html-singlepage-application) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/application/html-singlepage [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/docbkx [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/application/content [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/application/content [INFO] [INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-html-application) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/application/html/index [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/docbkx [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/application/content [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/application/content [INFO] [INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-pdf-application) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/application/pdf [INFO] [INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-html-singlepage-platform) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/platform/html-singlepage [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/docbkx [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/platform/content [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/platform/content [INFO] [INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-html-platform) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/platform/html/index [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/docbkx [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/platform/content [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/platform/content [INFO] [INFO] --- maven-resources-plugin:3.0.2:copy-resources (copy-pdf-platform) @ appng-documentation --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/main/platform/pdf [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-documentation --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/target/appng-documentation-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Template Assembly Descriptors 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-template-assembly --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-template-assembly --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-template-assembly --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-template-assembly --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-template-assembly --- [INFO] No tests to run. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-template-assembly --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-template-assembly --- [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-template-assembly >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-template-assembly <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-template-assembly --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-template-assembly --- [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-template-assembly --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-template-assembly --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-template-assembly --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-assembly/target/appng-template-assembly-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Template Parent 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-template-parent --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ appng-template-parent --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-parent/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-parent/target/appng-template-parent-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-template-parent --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-parent/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-template-parent/target/appng-template-parent-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appng-application-assembly 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-application-assembly --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-application-assembly --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-application-assembly --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-application-assembly --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-application-assembly --- [INFO] No tests to run. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-application-assembly --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-application-assembly --- [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-application-assembly >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-application-assembly <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-application-assembly --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-application-assembly --- [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-application-assembly --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-application-assembly --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-application-assembly --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-assembly/target/appng-application-assembly-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG application parent 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-application-parent --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ appng-application-parent --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-parent/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-parent/target/appng-application-parent-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-application-parent --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-parent/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-application-parent/target/appng-application-parent-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Archetype - appng-archetype-application 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-archetype-application --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 18 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-archetype-application --- [INFO] No sources to compile [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-archetype-application --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-archetype-application --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-archetype-application --- [INFO] No tests to run. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-archetype-application --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-archetype-application --- [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-archetype-application >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-archetype-application <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-archetype-application --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-archetype-application --- [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-archetype-application --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-archetype-application --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-archetype-application --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-archetype-application/target/appng-archetype-application-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNGizer JAXB API 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-appngizer-jaxb --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-appngizer-jaxb --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-appngizer-jaxb --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-appngizer-jaxb --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-appngizer-jaxb --- [INFO] No tests to run. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-appngizer-jaxb --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-appngizer-jaxb --- [INFO] Loading source files for package org.appng.appngizer.model.xml... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Linkable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/SchemaVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/Versions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/SchemaVersion.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Versions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/RepositoryType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/PackageType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/UserType.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/RepositoryMode.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Nameable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Linkable.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/ObjectFactory.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/class-use/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/org/appng/appngizer/model/xml/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-appngizer-jaxb >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-appngizer-jaxb <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-appngizer-jaxb --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-appngizer-jaxb --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-appngizer-jaxb --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-appngizer-jaxb --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-appngizer-jaxb --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-jaxb/target/appng-appngizer-jaxb-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNGizer 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-appngizer --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 47 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-appngizer --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-appngizer --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.appngizer.controller.SiteApplicationControllerTest log4j:ERROR setFile(null,true) call failed. java.io.FileNotFoundException: /webapps/appNGizer/WEB-INF/log/appNGizer.log (No such file or directory) at java.io.FileOutputStream.open0(Native Method) at java.io.FileOutputStream.open(FileOutputStream.java:270) at java.io.FileOutputStream.(FileOutputStream.java:213) at java.io.FileOutputStream.(FileOutputStream.java:133) at org.apache.log4j.FileAppender.setFile(FileAppender.java:294) at org.apache.log4j.FileAppender.activateOptions(FileAppender.java:165) at org.apache.log4j.DailyRollingFileAppender.activateOptions(DailyRollingFileAppender.java:223) at org.apache.log4j.config.PropertySetter.activate(PropertySetter.java:307) at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:172) at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:104) at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:842) at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:768) at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:648) at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:514) at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:580) at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526) at org.apache.log4j.LogManager.(LogManager.java:127) at org.slf4j.impl.Log4jLoggerFactory.(Log4jLoggerFactory.java:66) at org.slf4j.impl.StaticLoggerBinder.(StaticLoggerBinder.java:72) at org.slf4j.impl.StaticLoggerBinder.(StaticLoggerBinder.java:45) at org.slf4j.LoggerFactory.bind(LoggerFactory.java:150) at org.slf4j.LoggerFactory.performInitialization(LoggerFactory.java:124) at org.slf4j.LoggerFactory.getILoggerFactory(LoggerFactory.java:412) at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:357) at org.apache.commons.logging.impl.SLF4JLogFactory.getInstance(SLF4JLogFactory.java:155) at org.apache.commons.logging.impl.SLF4JLogFactory.getInstance(SLF4JLogFactory.java:132) at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:655) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.(SpringJUnit4ClassRunner.java:96) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.java:104) at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.java:86) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:59) at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.java:26) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:59) at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.java:33) at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:362) at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:272) at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:236) at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:386) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:323) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:143) log4j:ERROR Either File or DatePattern options are not set for appender [appngizer]. 2017-07-28 09:38:00,507 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:00,523 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@23a5fd2, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@78a2da20, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@dd3b207, org.springframework.test.context.support.DirtiesContextTestExecutionListener@551bdc27, org.springframework.test.context.transaction.TransactionalTestExecutionListener@58fdd99, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6b1274d2] 2017-07-28 09:38:00,607 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:00,969 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@ca263c2: startup date [Fri Jul 28 09:38:00 CEST 2017]; root of context hierarchy 2017-07-28 09:38:01,308 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:01,366 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:01,390 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:01,559 INFO [main] org.hibernate.Version: HHH000412: Hibernate Core {5.2.10.Final} 2017-07-28 09:38:01,561 INFO [main] org.hibernate.cfg.Environment: HHH000206: hibernate.properties not found 2017-07-28 09:38:01,627 INFO [main] org.hibernate.annotations.common.Version: HCANN000001: Hibernate Commons Annotations {5.0.1.Final} 2017-07-28 09:38:02,301 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:02,363 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:02,892 INFO [main] org.hibernate.validator.internal.util.Version: HV000001: Hibernate Validator 5.4.1.Final 2017-07-28 09:38:03,589 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:03,615 INFO [main] org.flywaydb.core.internal.util.VersionPrinter: Flyway 4.2.0 by Boxfuse 2017-07-28 09:38:03,623 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:03,669 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.013s) 2017-07-28 09:38:03,677 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:03,691 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:03,707 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:03,741 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:03,757 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:03,763 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:03,769 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:03,774 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:03,779 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:03,783 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:03,788 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:03,793 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.117s). 2017-07-28 09:38:04,209 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:04,742 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:04,744 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:05,004 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:05,187 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:05,188 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:05,188 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,189 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,189 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:05,189 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:05,190 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:05,190 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:05,190 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:05,194 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:05,194 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:05,194 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:05,194 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:05,195 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:05,195 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:05,195 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:05,197 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:05,197 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:05,197 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:05,198 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:05,198 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:05,199 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:05,199 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:05,200 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:05,201 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:05,201 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:05,201 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:05,202 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:05,203 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:05,203 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:05,203 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:05,204 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:05,205 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:05,205 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,206 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,206 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:05,206 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:05,208 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:05,208 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:05,209 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:05,209 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:05,209 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:05,210 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:05,210 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:05,210 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:05,211 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:05,212 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:05,212 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:05,213 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:05,213 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:05,213 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:05,214 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:05,214 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:05,215 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:05,215 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:05,216 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:05,217 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,217 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,217 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:05,218 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:05,219 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:05,219 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:05,219 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:05,220 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:05,220 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:05,220 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:05,222 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:05,223 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,223 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:05,223 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:05,224 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:05,225 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:05,225 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:05,225 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:05,226 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:05,226 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:05,687 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:05,889 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@ca263c2: startup date [Fri Jul 28 09:38:00 CEST 2017]; root of context hierarchy 2017-07-28 09:38:06,033 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@ca263c2: startup date [Fri Jul 28 09:38:00 CEST 2017]; root of context hierarchy 2017-07-28 09:38:06,410 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:06,410 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:06,437 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 27 ms 2017-07-28 09:38:06,716 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:06,731 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:06,740 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:06,742 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:06,743 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:06,744 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:06,765 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:06,769 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:06,773 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:06,773 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:06,776 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:06,779 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:06,779 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:06,782 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:06,782 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:06,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,805 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,806 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,806 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,806 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,806 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,806 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,806 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,807 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:06,807 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:06,820 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:06,822 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:06,824 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:06,826 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:06,829 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:06,831 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:07,593 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/webapps/ROOT/WEB-INF/cache/platform/localhost/demo-application 2017-07-28 09:38:07,593 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/webapps/ROOT/WEB-INF/cache/application/localhost/demo-application 2017-07-28 09:38:07,905 INFO [main] org.appng.core.service.CoreService: unlinking application demo-application from site localhost, status of database-connection is NO_DB_SUPPORTED 2017-07-28 09:38:07,920 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@ca263c2: startup date [Fri Jul 28 09:38:00 CEST 2017]; root of context hierarchy 2017-07-28 09:38:07,927 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:07,928 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.69 s - in org.appng.appngizer.controller.SiteApplicationControllerTest [INFO] Running org.appng.appngizer.controller.DatabaseControllerTest 2017-07-28 09:38:07,940 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:07,941 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@347c5721, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4d22265c, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1f7b8d59, org.springframework.test.context.support.DirtiesContextTestExecutionListener@28551755, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7ec68821, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@220a5163] 2017-07-28 09:38:07,941 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:08,019 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@6158113e: startup date [Fri Jul 28 09:38:08 CEST 2017]; root of context hierarchy 2017-07-28 09:38:08,075 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:08,089 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:08,090 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:08,136 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:08,140 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:08,288 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:08,291 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:08,298 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.003s) 2017-07-28 09:38:08,300 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:08,304 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:08,309 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:08,325 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:08,333 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:08,337 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:08,340 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:08,343 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:08,347 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:08,350 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:08,353 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:08,357 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.056s). 2017-07-28 09:38:08,415 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:08,562 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:08,563 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:08,615 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:08,642 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:08,643 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:08,643 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,643 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,644 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:08,644 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:08,644 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:08,644 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:08,645 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:08,645 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:08,646 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:08,646 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:08,646 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:08,646 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:08,647 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:08,647 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:08,648 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:08,648 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:08,648 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:08,648 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:08,649 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:08,649 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:08,649 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:08,650 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:08,650 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:08,651 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:08,651 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:08,651 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:08,652 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:08,652 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:08,652 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:08,652 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:08,653 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:08,653 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,654 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,654 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:08,654 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:08,655 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:08,656 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:08,656 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:08,656 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:08,656 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:08,657 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:08,657 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:08,657 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:08,657 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:08,658 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:08,658 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:08,658 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:08,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:08,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:08,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:08,660 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:08,660 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:08,660 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:08,661 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:08,661 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:08,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:08,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:08,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:08,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:08,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:08,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:08,664 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:08,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:08,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:08,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:08,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:08,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:08,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:08,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:08,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:08,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:08,693 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:08,759 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@6158113e: startup date [Fri Jul 28 09:38:08 CEST 2017]; root of context hierarchy 2017-07-28 09:38:08,778 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@6158113e: startup date [Fri Jul 28 09:38:08 CEST 2017]; root of context hierarchy 2017-07-28 09:38:08,839 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:08,839 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:08,846 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 7 ms 2017-07-28 09:38:08,855 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:08,855 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:09,714 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:09,714 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:09,716 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 2 ms 2017-07-28 09:38:09,717 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:09,718 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:09,734 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Repair of failed migration in metadata table "PUBLIC"."schema_version" not necessary. No failed migration detected. 2017-07-28 09:38:09,738 INFO [main] org.flywaydb.core.internal.command.DbRepair: Successfully repaired metadata table "PUBLIC"."schema_version" (execution time 00:00.005s). 2017-07-28 09:38:09,738 INFO [main] org.flywaydb.core.internal.command.DbRepair: Manual cleanup of the remaining effects the failed migration may still be required. 2017-07-28 09:38:09,756 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.004s) 2017-07-28 09:38:09,759 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": 1.3.2 2017-07-28 09:38:09,759 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Schema "PUBLIC" is up to date. No migration necessary. 2017-07-28 09:38:09,759 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:09,760 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:10,662 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@6158113e: startup date [Fri Jul 28 09:38:08 CEST 2017]; root of context hierarchy 2017-07-28 09:38:10,665 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:10,665 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.732 s - in org.appng.appngizer.controller.DatabaseControllerTest [INFO] Running org.appng.appngizer.controller.RepositoryControllerTest 2017-07-28 09:38:10,670 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:10,671 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@29511cf9, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3df473e8, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@4dc10682, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6cf633eb, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4de14c58, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@53141d3f] 2017-07-28 09:38:10,671 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:10,745 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@16a4e4c9: startup date [Fri Jul 28 09:38:10 CEST 2017]; root of context hierarchy 2017-07-28 09:38:10,801 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:10,815 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:10,816 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:10,859 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:10,863 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:10,997 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:11,000 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:11,006 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.003s) 2017-07-28 09:38:11,008 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:11,012 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:11,015 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:11,031 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:11,039 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:11,043 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:11,046 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:11,050 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:11,054 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:11,057 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:11,061 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:11,064 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.056s). 2017-07-28 09:38:11,129 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:11,269 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:11,270 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:11,320 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:11,350 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:11,350 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:11,350 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,350 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,351 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:11,351 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:11,351 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:11,351 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:11,351 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:11,353 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:11,353 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:11,353 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:11,353 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:11,354 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:11,354 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:11,354 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:11,355 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:11,355 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:11,355 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:11,356 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:11,356 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:11,357 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:11,357 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:11,357 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:11,358 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:11,358 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:11,358 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:11,359 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:11,359 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:11,360 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:11,360 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:11,360 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:11,361 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:11,361 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,362 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,362 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:11,362 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:11,363 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:11,363 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:11,364 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:11,364 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:11,364 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:11,364 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:11,365 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:11,365 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:11,365 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:11,366 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:11,366 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:11,366 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:11,367 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:11,367 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:11,368 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:11,368 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:11,368 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:11,368 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:11,369 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:11,370 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,370 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,370 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:11,370 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:11,371 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:11,371 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:11,372 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:11,372 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:11,372 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:11,372 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:11,373 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:11,374 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,374 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:11,374 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:11,374 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:11,375 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:11,375 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:11,376 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:11,376 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:11,376 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:11,405 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:11,478 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@16a4e4c9: startup date [Fri Jul 28 09:38:10 CEST 2017]; root of context hierarchy 2017-07-28 09:38:11,498 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@16a4e4c9: startup date [Fri Jul 28 09:38:10 CEST 2017]; root of context hierarchy 2017-07-28 09:38:11,565 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:11,565 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:11,572 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 7 ms 2017-07-28 09:38:11,688 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:11,695 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:11,701 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:11,703 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:11,703 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:11,704 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:11,711 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:11,712 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:11,713 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:11,713 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:11,715 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:11,716 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:11,716 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:11,718 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:11,718 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:11,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,728 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,729 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,730 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:11,730 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:11,739 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:11,740 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:11,741 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:11,742 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:11,743 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:11,745 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:11,806 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:11,806 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:11,807 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:11,841 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:11,841 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:11,843 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 2 ms 2017-07-28 09:38:11,859 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:11,859 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:11,860 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:11,900 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@16a4e4c9: startup date [Fri Jul 28 09:38:10 CEST 2017]; root of context hierarchy 2017-07-28 09:38:11,902 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:11,902 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.237 s - in org.appng.appngizer.controller.RepositoryControllerTest [INFO] Running org.appng.appngizer.controller.PlatformPropertyControllerTest 2017-07-28 09:38:11,909 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:11,910 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@55cbbf15, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@37e2873c, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@dcdf733, org.springframework.test.context.support.DirtiesContextTestExecutionListener@680aa303, org.springframework.test.context.transaction.TransactionalTestExecutionListener@60319a00, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@43493a5d] 2017-07-28 09:38:11,911 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:11,989 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@21df2968: startup date [Fri Jul 28 09:38:11 CEST 2017]; root of context hierarchy 2017-07-28 09:38:12,054 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:12,069 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:12,069 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:12,119 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:12,123 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:12,316 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:12,319 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:12,325 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.003s) 2017-07-28 09:38:12,326 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:12,329 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:12,332 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:12,344 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:12,349 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:12,352 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:12,355 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:12,358 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:12,360 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:12,363 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:12,366 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:12,369 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.042s). 2017-07-28 09:38:12,420 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:12,551 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:12,551 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:12,590 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:12,614 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:12,614 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:12,614 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,615 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,615 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:12,615 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:12,615 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:12,615 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:12,616 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:12,616 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:12,617 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:12,617 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:12,617 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:12,618 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:12,618 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:12,618 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:12,619 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:12,619 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:12,619 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:12,619 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:12,620 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:12,620 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:12,620 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:12,621 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:12,621 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:12,621 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:12,621 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:12,622 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:12,622 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:12,622 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:12,622 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:12,623 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:12,623 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:12,623 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,624 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,624 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:12,624 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:12,625 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:12,625 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:12,625 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:12,626 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:12,626 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:12,626 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:12,626 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:12,626 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:12,627 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:12,627 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:12,627 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:12,628 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:12,628 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:12,628 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:12,628 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:12,629 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:12,629 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:12,629 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:12,630 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:12,630 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,630 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,630 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:12,630 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:12,631 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:12,631 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:12,631 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:12,632 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:12,632 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:12,632 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:12,633 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:12,633 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,633 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:12,633 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:12,633 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:12,634 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:12,634 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:12,634 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:12,634 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:12,635 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:12,658 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:12,718 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@21df2968: startup date [Fri Jul 28 09:38:11 CEST 2017]; root of context hierarchy 2017-07-28 09:38:12,734 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@21df2968: startup date [Fri Jul 28 09:38:11 CEST 2017]; root of context hierarchy 2017-07-28 09:38:12,784 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:12,784 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:12,790 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 6 ms 2017-07-28 09:38:12,875 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@21df2968: startup date [Fri Jul 28 09:38:11 CEST 2017]; root of context hierarchy 2017-07-28 09:38:12,877 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:12,877 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.974 s - in org.appng.appngizer.controller.PlatformPropertyControllerTest [INFO] Running org.appng.appngizer.controller.RoleControllerTest 2017-07-28 09:38:12,883 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:12,883 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@724f5157, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@391dfe82, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@398efb4d, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4861df70, org.springframework.test.context.transaction.TransactionalTestExecutionListener@402ceac2, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@1613e5ab] 2017-07-28 09:38:12,884 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:12,939 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@580930b7: startup date [Fri Jul 28 09:38:12 CEST 2017]; root of context hierarchy 2017-07-28 09:38:12,996 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:13,011 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:13,011 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:13,069 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:13,075 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:13,212 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:13,215 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:13,220 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.003s) 2017-07-28 09:38:13,221 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:13,224 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:13,227 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:13,238 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:13,244 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:13,247 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:13,249 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:13,252 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:13,255 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:13,257 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:13,260 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:13,262 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.041s). 2017-07-28 09:38:13,315 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:13,448 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:13,449 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:13,492 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:13,517 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:13,517 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:13,517 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,517 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,518 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:13,518 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:13,518 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:13,518 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:13,519 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:13,519 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:13,520 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:13,520 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:13,520 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:13,520 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:13,520 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:13,521 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:13,521 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:13,521 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:13,522 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:13,522 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:13,522 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:13,523 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:13,523 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:13,523 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:13,524 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:13,524 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:13,524 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:13,524 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:13,525 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:13,525 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:13,525 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:13,525 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:13,526 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:13,526 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,526 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,527 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:13,527 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:13,528 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:13,532 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:13,532 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:13,532 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:13,532 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:13,533 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:13,533 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:13,533 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:13,533 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:13,534 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:13,534 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:13,534 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:13,534 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:13,534 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:13,535 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:13,535 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:13,535 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:13,535 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:13,536 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:13,536 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,536 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,537 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:13,537 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:13,538 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:13,538 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:13,538 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:13,538 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:13,539 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:13,539 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:13,539 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:13,540 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,540 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:13,540 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:13,540 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:13,541 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:13,541 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:13,541 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:13,541 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:13,541 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:13,574 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:13,649 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@580930b7: startup date [Fri Jul 28 09:38:12 CEST 2017]; root of context hierarchy 2017-07-28 09:38:13,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@580930b7: startup date [Fri Jul 28 09:38:12 CEST 2017]; root of context hierarchy 2017-07-28 09:38:13,725 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:13,725 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:13,731 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 6 ms 2017-07-28 09:38:13,771 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:13,777 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:13,782 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:13,784 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:13,784 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:13,785 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:13,790 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:13,791 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:13,792 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:13,792 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:13,793 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:13,794 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:13,794 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:13,795 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:13,795 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:13,803 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,803 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,803 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,804 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,805 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,805 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:13,805 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:13,812 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:13,813 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:13,814 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:13,815 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:13,816 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:13,818 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:13,913 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@580930b7: startup date [Fri Jul 28 09:38:12 CEST 2017]; root of context hierarchy 2017-07-28 09:38:13,915 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:13,915 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.037 s - in org.appng.appngizer.controller.RoleControllerTest [INFO] Running org.appng.appngizer.controller.ApplicationPropertyControllerTest 2017-07-28 09:38:13,921 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:13,921 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@3edb7be5, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@374d0329, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@30f13b3a, org.springframework.test.context.support.DirtiesContextTestExecutionListener@508bd0d5, org.springframework.test.context.transaction.TransactionalTestExecutionListener@35ea9d72, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6ae194ad] 2017-07-28 09:38:13,922 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:13,978 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@53f04a20: startup date [Fri Jul 28 09:38:13 CEST 2017]; root of context hierarchy 2017-07-28 09:38:14,029 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:14,041 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:14,041 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:14,075 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:14,078 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:14,173 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:14,175 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:14,180 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:14,181 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:14,183 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:14,185 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:14,194 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:14,199 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:14,201 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:14,203 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:14,205 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:14,207 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:14,210 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:14,212 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:14,214 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.033s). 2017-07-28 09:38:14,255 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:14,358 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:14,359 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:14,396 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:14,416 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:14,416 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:14,417 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,417 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,417 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:14,417 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:14,417 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:14,418 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:14,418 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:14,418 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:14,418 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:14,419 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:14,419 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:14,419 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:14,419 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:14,419 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:14,420 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:14,420 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:14,420 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:14,420 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:14,420 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:14,421 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:14,421 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:14,421 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:14,421 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:14,422 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:14,422 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:14,422 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:14,422 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:14,423 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:14,423 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:14,423 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:14,423 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:14,424 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,424 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,424 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:14,424 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:14,425 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:14,426 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:14,426 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:14,426 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:14,426 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:14,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:14,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:14,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:14,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:14,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:14,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:14,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:14,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:14,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:14,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:14,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:14,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:14,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:14,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:14,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:14,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:14,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:14,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:14,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:14,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:14,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:14,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:14,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:14,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:14,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:14,456 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:14,514 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@53f04a20: startup date [Fri Jul 28 09:38:13 CEST 2017]; root of context hierarchy 2017-07-28 09:38:14,530 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@53f04a20: startup date [Fri Jul 28 09:38:13 CEST 2017]; root of context hierarchy 2017-07-28 09:38:14,580 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:14,581 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:14,586 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 5 ms 2017-07-28 09:38:14,623 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:14,628 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:14,631 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:14,632 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:14,633 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:14,633 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:14,638 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:14,639 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:14,639 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:14,639 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:14,640 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:14,641 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:14,641 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:14,642 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:14,642 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:14,649 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,649 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:14,650 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:14,657 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:14,658 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:14,659 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:14,660 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:14,660 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:14,662 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:14,722 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@53f04a20: startup date [Fri Jul 28 09:38:13 CEST 2017]; root of context hierarchy 2017-07-28 09:38:14,724 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:14,724 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.808 s - in org.appng.appngizer.controller.ApplicationPropertyControllerTest [INFO] Running org.appng.appngizer.controller.SiteControllerTest 2017-07-28 09:38:14,728 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:14,728 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4ac805af, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@77b9002, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@3eec221b, org.springframework.test.context.support.DirtiesContextTestExecutionListener@367d083e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3c929623, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@67b2ea33] 2017-07-28 09:38:14,729 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:14,783 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@3891f024: startup date [Fri Jul 28 09:38:14 CEST 2017]; root of context hierarchy 2017-07-28 09:38:14,859 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:14,872 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:14,872 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:14,907 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:14,910 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:15,003 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:15,005 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:15,010 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:15,011 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:15,014 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:15,016 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:15,024 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:15,028 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:15,030 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:15,033 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:15,035 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:15,037 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:15,039 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:15,041 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:15,042 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.031s). 2017-07-28 09:38:15,084 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:15,187 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:15,187 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:15,222 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:15,241 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:15,241 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:15,242 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:15,243 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:15,243 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:15,243 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:15,243 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:15,243 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:15,244 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:15,244 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:15,244 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:15,244 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:15,244 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:15,245 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:15,245 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:15,245 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:15,245 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:15,245 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:15,246 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:15,246 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:15,246 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:15,246 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:15,246 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:15,246 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:15,247 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:15,247 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:15,247 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:15,247 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,247 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,248 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:15,248 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:15,248 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,248 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:15,249 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:15,250 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:15,250 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:15,250 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:15,250 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:15,250 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,251 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:15,251 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:15,251 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:15,251 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:15,252 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:15,252 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,252 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,252 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:15,252 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:15,253 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:15,253 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:15,253 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:15,253 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:15,253 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:15,253 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,254 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:15,254 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,254 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,254 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:15,255 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:15,255 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:15,255 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:15,255 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:15,255 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:15,255 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:15,278 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:15,330 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@3891f024: startup date [Fri Jul 28 09:38:14 CEST 2017]; root of context hierarchy 2017-07-28 09:38:15,345 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@3891f024: startup date [Fri Jul 28 09:38:14 CEST 2017]; root of context hierarchy 2017-07-28 09:38:15,388 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:15,388 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:15,394 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 6 ms 2017-07-28 09:38:15,466 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:15,466 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:15,467 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:15,497 INFO [main] org.appng.core.service.CoreService: starting deletion of site deleteme 2017-07-28 09:38:15,506 INFO [main] org.appng.core.service.CoreService: deleting 0 orphaned database connections 2017-07-28 09:38:15,515 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/webapps/ROOT/WEB-INF/cache/platform/deleteme 2017-07-28 09:38:15,515 INFO [main] org.appng.core.model.CacheProvider: cleaning /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/webapps/ROOT/WEB-INF/cache/application/deleteme 2017-07-28 09:38:15,515 INFO [main] org.appng.core.service.CoreService: done deleting site deleteme 2017-07-28 09:38:15,518 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:15,518 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:15,519 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:15,528 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@3891f024: startup date [Fri Jul 28 09:38:14 CEST 2017]; root of context hierarchy 2017-07-28 09:38:15,529 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:15,529 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.805 s - in org.appng.appngizer.controller.SiteControllerTest [INFO] Running org.appng.appngizer.controller.GroupControllerTest 2017-07-28 09:38:15,535 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:15,536 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1aa3c280, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7e69cc4c, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@12d019c9, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1930dca9, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1d03aacd, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2d381e8d] 2017-07-28 09:38:15,536 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:15,585 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@3f3444b2: startup date [Fri Jul 28 09:38:15 CEST 2017]; root of context hierarchy 2017-07-28 09:38:15,629 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:15,640 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:15,640 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:15,674 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:15,677 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:15,764 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:15,766 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:15,770 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:15,771 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:15,773 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:15,775 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:15,783 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:15,786 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:15,788 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:15,790 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:15,792 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:15,794 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:15,796 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:15,798 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:15,800 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.028s). 2017-07-28 09:38:15,845 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:15,942 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:15,942 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:15,974 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:15,992 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:15,992 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:15,992 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,992 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,993 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:15,993 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:15,993 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:15,993 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:15,994 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:15,994 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:15,994 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:15,994 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:15,994 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:15,995 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:15,995 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:15,995 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:15,995 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:15,995 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:15,996 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:15,996 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:15,996 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:15,996 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:15,996 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:15,997 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:15,997 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:15,997 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:15,997 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:15,997 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:15,998 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:15,998 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:15,998 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:15,998 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:15,998 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:15,999 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,999 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:15,999 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:15,999 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:16,000 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,000 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,000 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,000 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:16,000 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:16,000 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:16,001 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:16,001 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:16,001 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:16,001 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:16,001 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:16,001 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:16,002 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:16,002 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,002 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,002 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:16,002 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,002 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,003 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:16,003 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,003 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,003 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:16,004 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:16,004 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:16,004 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:16,004 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:16,004 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:16,005 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:16,005 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,005 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:16,005 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,005 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,006 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:16,006 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:16,006 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:16,006 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:16,006 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:16,006 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:16,007 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:16,030 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:16,087 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@3f3444b2: startup date [Fri Jul 28 09:38:15 CEST 2017]; root of context hierarchy 2017-07-28 09:38:16,102 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@3f3444b2: startup date [Fri Jul 28 09:38:15 CEST 2017]; root of context hierarchy 2017-07-28 09:38:16,149 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:16,149 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:16,154 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 5 ms 2017-07-28 09:38:16,187 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:16,191 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:16,194 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:16,195 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:16,196 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:16,196 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:16,201 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:16,201 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:16,202 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:16,202 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:16,203 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:16,204 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:16,204 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:16,205 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:16,205 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:16,211 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,211 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:16,212 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:16,219 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:16,219 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:16,220 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:16,221 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:16,222 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:16,223 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:16,269 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:16,269 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:16,270 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:16,281 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:16,281 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:16,282 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:16,291 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@3f3444b2: startup date [Fri Jul 28 09:38:15 CEST 2017]; root of context hierarchy 2017-07-28 09:38:16,293 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:16,293 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.762 s - in org.appng.appngizer.controller.GroupControllerTest [INFO] Running org.appng.appngizer.controller.SitePropertyControllerTest 2017-07-28 09:38:16,297 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:16,297 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@43b7963a, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@b1f8fa6, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@275b2a95, org.springframework.test.context.support.DirtiesContextTestExecutionListener@614b49a2, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1e3215f7, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6927db28] 2017-07-28 09:38:16,297 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:16,343 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@17564b1b: startup date [Fri Jul 28 09:38:16 CEST 2017]; root of context hierarchy 2017-07-28 09:38:16,385 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:16,395 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:16,395 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:16,427 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:16,430 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:16,518 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:16,520 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:16,524 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:16,525 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:16,527 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:16,530 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:16,537 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:16,541 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:16,543 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:16,545 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:16,547 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:16,549 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:16,551 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:16,553 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:16,555 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.029s). 2017-07-28 09:38:16,597 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:16,693 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:16,693 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:16,724 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:16,741 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:16,742 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,742 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,742 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,742 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:16,744 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:16,744 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:16,744 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:16,744 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:16,745 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:16,745 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:16,746 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,746 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:16,746 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:16,746 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:16,746 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:16,747 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:16,747 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:16,747 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:16,747 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:16,747 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:16,748 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:16,748 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:16,748 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:16,749 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:16,749 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:16,749 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:16,749 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:16,753 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:16,753 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:16,753 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:16,756 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:16,757 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:16,759 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,760 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,760 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:16,760 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:16,761 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,761 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,762 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,762 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:16,762 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:16,764 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:16,765 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:16,765 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:16,765 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:16,766 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:16,768 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:16,768 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:16,768 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:16,769 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,771 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,771 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:16,772 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,773 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:16,773 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:16,774 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,774 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,774 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:16,774 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:16,775 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:16,775 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:16,775 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:16,776 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:16,776 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:16,776 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:16,777 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:16,777 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,777 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:16,778 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:16,778 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:16,778 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:16,779 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:16,779 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:16,779 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:16,779 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:16,812 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:16,883 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@17564b1b: startup date [Fri Jul 28 09:38:16 CEST 2017]; root of context hierarchy 2017-07-28 09:38:16,897 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@17564b1b: startup date [Fri Jul 28 09:38:16 CEST 2017]; root of context hierarchy 2017-07-28 09:38:16,939 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:16,939 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:16,945 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 5 ms 2017-07-28 09:38:17,084 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@17564b1b: startup date [Fri Jul 28 09:38:16 CEST 2017]; root of context hierarchy 2017-07-28 09:38:17,085 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:17,086 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.792 s - in org.appng.appngizer.controller.SitePropertyControllerTest [INFO] Running org.appng.appngizer.controller.ApplicationControllerTest 2017-07-28 09:38:17,090 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:17,090 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@789e7ca, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@36fbe3d5, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@550aa6ec, org.springframework.test.context.support.DirtiesContextTestExecutionListener@91f5ac6, org.springframework.test.context.transaction.TransactionalTestExecutionListener@41604b98, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@286ced2a] 2017-07-28 09:38:17,090 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:17,142 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@28d1030d: startup date [Fri Jul 28 09:38:17 CEST 2017]; root of context hierarchy 2017-07-28 09:38:17,195 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:17,207 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:17,207 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:17,249 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:17,253 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:17,351 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:17,353 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:17,358 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:17,359 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:17,362 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:17,364 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:17,373 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:17,377 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:17,380 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:17,382 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:17,384 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:17,386 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:17,389 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:17,391 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:17,393 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.034s). 2017-07-28 09:38:17,441 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:17,545 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:17,545 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:17,580 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:17,602 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:17,603 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:17,603 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,603 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,603 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:17,603 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:17,604 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:17,604 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:17,604 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:17,604 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:17,605 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:17,605 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:17,605 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:17,605 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:17,605 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:17,605 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:17,606 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:17,606 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:17,606 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:17,606 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:17,606 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:17,607 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:17,607 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:17,607 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:17,607 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:17,607 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:17,608 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:17,608 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:17,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:17,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:17,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:17,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:17,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:17,659 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,660 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,660 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:17,660 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:17,661 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:17,661 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:17,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:17,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:17,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:17,662 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:17,663 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:17,664 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:17,664 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:17,664 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:17,664 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:17,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:17,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:17,665 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:17,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:17,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:17,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:17,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:17,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:17,666 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:17,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:17,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:17,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:17,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:17,667 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:17,668 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:17,668 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:17,668 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:17,668 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:17,693 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:17,748 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@28d1030d: startup date [Fri Jul 28 09:38:17 CEST 2017]; root of context hierarchy 2017-07-28 09:38:17,763 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@28d1030d: startup date [Fri Jul 28 09:38:17 CEST 2017]; root of context hierarchy 2017-07-28 09:38:17,810 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:17,810 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:17,816 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 6 ms 2017-07-28 09:38:17,849 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:17,854 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:17,857 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:17,858 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:17,859 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:17,859 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:17,863 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:17,864 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:17,865 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:17,865 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:17,866 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:17,866 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:17,866 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:17,867 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:17,867 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:17,872 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,873 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:17,874 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:17,880 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:17,880 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:17,881 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:17,882 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:17,883 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:17,884 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:17,915 INFO [main] org.appng.core.service.CoreService: application 'demo-application' is beeing converted from filebased to database 2017-07-28 09:38:17,918 INFO [main] org.appng.core.service.CoreService: creating resource(s) for database-based application demo-application - 1.5.3 2017-07-28 09:38:17,918 INFO [main] org.appng.core.service.CoreService: saving applicationresource page.xml 2017-07-28 09:38:17,925 INFO [main] org.appng.core.service.CoreService: saving applicationresource events.xml 2017-07-28 09:38:17,926 INFO [main] org.appng.core.service.CoreService: saving applicationresource mssql/V1.0_script.sql 2017-07-28 09:38:17,927 INFO [main] org.appng.core.service.CoreService: saving applicationresource application.xml 2017-07-28 09:38:17,927 INFO [main] org.appng.core.service.CoreService: saving applicationresource master.xml 2017-07-28 09:38:17,928 INFO [main] org.appng.core.service.CoreService: saving applicationresource messages-demo.properties 2017-07-28 09:38:17,929 INFO [main] org.appng.core.service.CoreService: saving applicationresource mysql/V1.0_script.sql 2017-07-28 09:38:17,929 INFO [main] org.appng.core.service.CoreService: saving applicationresource plugin.xml 2017-07-28 09:38:17,930 INFO [main] org.appng.core.service.CoreService: saving applicationresource beans.xml 2017-07-28 09:38:17,930 INFO [main] org.appng.core.service.CoreService: saving applicationresource datasources.xml 2017-07-28 09:38:17,967 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@28d1030d: startup date [Fri Jul 28 09:38:17 CEST 2017]; root of context hierarchy 2017-07-28 09:38:17,968 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:17,969 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.882 s - in org.appng.appngizer.controller.ApplicationControllerTest [INFO] Running org.appng.appngizer.controller.SubjectControllerTest 2017-07-28 09:38:17,973 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:17,973 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6ba8e841, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5d5b0202, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@340c7419, org.springframework.test.context.support.DirtiesContextTestExecutionListener@24ec7ab7, org.springframework.test.context.transaction.TransactionalTestExecutionListener@82a748b, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@de42c9e] 2017-07-28 09:38:17,974 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:18,023 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@5a9f2d87: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:18,068 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:18,079 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:18,079 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:18,113 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:18,116 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:18,195 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:18,197 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:18,201 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:18,202 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:18,204 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:18,206 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:18,213 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:18,216 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:18,218 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:18,220 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:18,222 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:18,223 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:18,225 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:18,227 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:18,229 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.027s). 2017-07-28 09:38:18,277 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:18,379 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:18,379 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:18,408 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:18,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:18,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:18,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,427 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:18,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:18,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:18,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:18,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:18,428 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:18,429 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:18,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:18,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:18,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:18,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:18,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:18,430 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:18,431 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:18,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:18,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:18,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:18,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,432 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:18,433 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:18,433 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:18,433 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:18,433 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:18,433 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:18,433 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:18,434 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:18,435 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:18,435 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:18,435 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:18,435 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:18,435 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:18,435 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:18,436 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,436 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,436 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:18,436 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:18,436 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:18,436 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:18,437 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:18,437 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:18,437 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:18,437 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:18,437 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:18,437 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:18,438 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:18,439 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:18,461 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:18,515 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@5a9f2d87: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:18,529 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@5a9f2d87: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:18,575 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:18,575 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:18,581 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 6 ms 2017-07-28 09:38:18,635 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:18,635 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:18,636 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:18,649 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:18,649 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:18,650 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 1 ms 2017-07-28 09:38:18,660 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@5a9f2d87: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:18,661 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:18,662 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.692 s - in org.appng.appngizer.controller.SubjectControllerTest [INFO] Running org.appng.appngizer.controller.PermissionControllerTest 2017-07-28 09:38:18,666 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 2017-07-28 09:38:18,666 INFO [main] org.springframework.test.context.web.WebTestContextBootstrapper: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@73f1d6b7, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@368c7fb2, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5614901, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7edf3a1d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3e61f1f, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@56c2813e] 2017-07-28 09:38:18,666 INFO [main] org.springframework.beans.factory.xml.XmlBeanDefinitionReader: Loading XML bean definitions from class path resource [test-context.xml] 2017-07-28 09:38:18,713 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Refreshing org.springframework.web.context.support.GenericWebApplicationContext@59e4e3a6: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:18,758 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Starting embedded database: url='jdbc:hsqldb:mem:testdb', username='sa' 2017-07-28 09:38:18,769 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Building JPA container EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:18,769 INFO [main] org.hibernate.jpa.internal.util.LogHelper: HHH000204: Processing PersistenceUnitInfo [ name: appng ...] 2017-07-28 09:38:18,802 INFO [main] org.hibernate.dialect.Dialect: HHH000400: Using dialect: org.appng.persistence.dialect.HSQLDialect 2017-07-28 09:38:18,805 INFO [main] org.hibernate.envers.boot.internal.EnversServiceImpl: Envers integration enabled? : true 2017-07-28 09:38:18,888 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Initialized JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:18,890 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:18,894 INFO [main] org.flywaydb.core.internal.command.DbValidate: Successfully validated 9 migrations (execution time 00:00.002s) 2017-07-28 09:38:18,895 INFO [main] org.flywaydb.core.internal.metadatatable.MetaDataTableImpl: Creating Metadata table: "PUBLIC"."schema_version" 2017-07-28 09:38:18,897 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Current version of schema "PUBLIC": << Empty Schema >> 2017-07-28 09:38:18,899 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.0 - appNG initial setup 2017-07-28 09:38:18,906 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.1 - Quartz initial setup 2017-07-28 09:38:18,909 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2 - add template 2017-07-28 09:38:18,911 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.1 - add repository strict 2017-07-28 09:38:18,913 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.2 - add repository digest 2017-07-28 09:38:18,915 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.2.3 - set resource bytes not null 2017-07-28 09:38:18,917 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.0 - add type to template 2017-07-28 09:38:18,918 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.1 - add global admin role 2017-07-28 09:38:18,920 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Migrating schema "PUBLIC" to version 1.3.2 - add repository accepted certs 2017-07-28 09:38:18,922 INFO [main] org.flywaydb.core.internal.command.DbMigrate: Successfully applied 9 migrations to schema "PUBLIC" (execution time 00:00.027s). 2017-07-28 09:38:18,960 INFO [main] org.hibernate.hql.internal.QueryTranslatorFactoryInitiator: HHH000397: Using ASTQueryTranslatorFactory 2017-07-28 09:38:19,059 INFO [main] org.appng.core.service.DatabaseService: connected to jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4.0) 2017-07-28 09:38:19,059 INFO [main] org.flywaydb.core.internal.dbsupport.DbSupportFactory: Database: jdbc:hsqldb:mem:testdb (HSQL Database Engine 2.4) 2017-07-28 09:38:19,090 INFO [main] org.appng.api.messaging.Messaging: messaging is disabled 2017-07-28 09:38:19,110 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listProperties(java.lang.String) 2017-07-28 09:38:19,110 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteApplication(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:19,110 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,110 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,110 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:19,111 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getApplication(java.lang.String) 2017-07-28 09:38:19,111 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.updateApplication(java.lang.String,org.appng.appngizer.model.xml.Application) throws org.appng.api.BusinessException 2017-07-28 09:38:19,111 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.listApplications() 2017-07-28 09:38:19,111 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{name}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.ApplicationController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:19,111 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.info() throws java.lang.Exception 2017-07-28 09:38:19,112 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnections(java.lang.String) 2017-07-28 09:38:19,112 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnectionForApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:19,112 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/database],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnectionforApplication(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:19,112 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.getDatabaseConnection(java.lang.String,java.lang.Integer) 2017-07-28 09:38:19,112 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/database/{id}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.updateDatabaseConnection(java.lang.String,java.lang.Integer,org.appng.appngizer.model.xml.Database) 2017-07-28 09:38:19,112 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/database/initialize],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.DatabaseController.initialize() throws java.lang.Exception 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.createGroup(org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.getGroup(java.lang.String) 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.deleteGroup(java.lang.String) 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.listGroups() 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/group/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.GroupController.updateGroup(java.lang.String,org.appng.appngizer.model.xml.Group) 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.login(java.lang.String,javax.servlet.http.HttpServletRequest) 2017-07-28 09:38:19,113 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.Home.welcome() 2017-07-28 09:38:19,114 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.listPermissions(java.lang.String) 2017-07-28 09:38:19,114 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.createPermission(java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:19,114 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.updatePermission(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Permission) 2017-07-28 09:38:19,114 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.deletePermission(java.lang.String,java.lang.String) 2017-07-28 09:38:19,114 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/permission/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PermissionController.getPermission(java.lang.String,java.lang.String) 2017-07-28 09:38:19,115 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.showPlatform() 2017-07-28 09:38:19,115 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/system],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listSystemProperties() 2017-07-28 09:38:19,115 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/environment],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.listEnvironment() 2017-07-28 09:38:19,115 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/reload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformController.reloadPlatform() 2017-07-28 09:38:19,115 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.listProperties() 2017-07-28 09:38:19,115 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.createProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,116 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.updateProperty(org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,116 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.deleteProperty(java.lang.String) 2017-07-28 09:38:19,116 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/platform/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.PlatformPropertyController.getProperty(java.lang.String) 2017-07-28 09:38:19,116 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepository(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:19,116 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackages(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:19,116 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/{package}/{version}/{timestmap}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.getRepositoryPackage(java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:19,117 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.createRepository(org.appng.appngizer.model.xml.Repository) throws org.appng.api.BusinessException,java.net.URISyntaxException 2017-07-28 09:38:19,117 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.updateRepository(java.lang.String,org.appng.appngizer.model.xml.Repository) throws java.net.URISyntaxException 2017-07-28 09:38:19,117 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/install],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.installPackage(java.lang.String,org.appng.appngizer.model.xml.Package) throws org.appng.api.BusinessException 2017-07-28 09:38:19,117 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}/upload],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.uploadPackage(java.lang.String,org.springframework.web.multipart.MultipartFile) throws org.appng.api.BusinessException 2017-07-28 09:38:19,117 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.listRepositories() 2017-07-28 09:38:19,117 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/repository/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RepositoryController.deleteRepository(java.lang.String) 2017-07-28 09:38:19,118 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.getRole(java.lang.String,java.lang.String) 2017-07-28 09:38:19,118 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.listRoles(java.lang.String) 2017-07-28 09:38:19,118 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.createRole(java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:19,118 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.updateRole(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Role) 2017-07-28 09:38:19,118 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/application/{app}/role/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.RoleController.deleteRole(java.lang.String,java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:19,118 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.getApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:19,119 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.listApplications(java.lang.String) 2017-07-28 09:38:19,119 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.activateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:19,119 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationController.deactivateApplication(java.lang.String,java.lang.String) 2017-07-28 09:38:19,119 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.listProperties(java.lang.String,java.lang.String) 2017-07-28 09:38:19,119 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.createProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,119 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.updateProperty(java.lang.String,java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,120 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.deleteProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:19,120 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/application/{app}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteApplicationPropertyController.getProperty(java.lang.String,java.lang.String,java.lang.String) 2017-07-28 09:38:19,120 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.getSite(java.lang.String) 2017-07-28 09:38:19,120 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.listSites() 2017-07-28 09:38:19,120 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}/reload],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.reloadSite(java.lang.String) 2017-07-28 09:38:19,121 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.createSite(org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:19,121 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.updateSite(java.lang.String,org.appng.appngizer.model.xml.Site) 2017-07-28 09:38:19,121 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SiteController.deleteSite(java.lang.String) throws org.appng.api.BusinessException 2017-07-28 09:38:19,121 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.listProperties(java.lang.String) 2017-07-28 09:38:19,121 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.createProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,121 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.updateProperty(java.lang.String,org.appng.appngizer.model.xml.Property) 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.deleteProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/site/{site}/property/{prop}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SitePropertyController.getProperty(java.lang.String,java.lang.String) 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[DELETE]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.deleteSubject(java.lang.String) 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.listSubjects() 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.getSubject(java.lang.String) 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject],methods=[POST]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.createSubject(org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:19,122 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: Mapped "{[/subject/{name}],methods=[PUT]}" onto public org.springframework.http.ResponseEntity org.appng.appngizer.controller.SubjectController.updateSubject(java.lang.String,org.appng.appngizer.model.xml.Subject) throws org.appng.api.BusinessException 2017-07-28 09:38:19,145 INFO [main] org.appng.appngizer.controller.Jaxb2Marshaller: Creating JAXBContext by scanning packages [org.appng.appngizer.model.xml] 2017-07-28 09:38:19,197 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@59e4e3a6: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:19,212 INFO [main] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter: Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@59e4e3a6: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:19,257 INFO [main] org.springframework.mock.web.MockServletContext: Initializing Spring FrameworkServlet '' 2017-07-28 09:38:19,257 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization started 2017-07-28 09:38:19,263 INFO [main] org.springframework.test.web.servlet.TestDispatcherServlet: FrameworkServlet '': initialization completed in 6 ms 2017-07-28 09:38:19,293 INFO [main] org.appng.core.service.CoreService: retrieving 'demo-application-1.5.3' from repository file:///var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/repo 2017-07-28 09:38:19,297 INFO [main] org.appng.core.service.CoreService: deploying application demo-application-1.5.3 2017-07-28 09:38:19,299 INFO [main] org.appng.core.service.CoreService: creating new permission 'debug' for application 'demo-application' 2017-07-28 09:38:19,301 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-format.html' for application 'demo-application' 2017-07-28 09:38:19,301 INFO [main] org.appng.core.service.CoreService: creating new permission 'output-type.webgui' for application 'demo-application' 2017-07-28 09:38:19,301 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:19,305 INFO [main] org.appng.core.service.CoreService: added permission 'output-format.html' to role 'Administrator' 2017-07-28 09:38:19,306 INFO [main] org.appng.core.service.CoreService: added permission 'output-type.webgui' to role 'Administrator' 2017-07-28 09:38:19,307 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:19,307 INFO [main] org.appng.core.service.CoreService: creating new role 'Administrator' for application 'demo-application' 2017-07-28 09:38:19,308 INFO [main] org.appng.core.service.CoreService: added permission 'debug' to role 'Debugger' 2017-07-28 09:38:19,308 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Debugger' 2017-07-28 09:38:19,308 INFO [main] org.appng.core.service.CoreService: creating new role 'Debugger' for application 'demo-application' 2017-07-28 09:38:19,309 INFO [main] org.appng.core.service.CoreService: added permission 'testPermission' to role 'Tester' 2017-07-28 09:38:19,309 INFO [main] org.appng.core.service.CoreService: creating new role 'Tester' for application 'demo-application' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'application.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'beans.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'datasources.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'events.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'master.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'page.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,314 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'plugin.xml' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,315 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'messages-demo.properties' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,315 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mssql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,315 INFO [main] org.appng.core.service.ApplicationArchiveProcessor: adding application-resource 'mysql/V1.0_script.sql' for application 'demo-application-1.5.3' 2017-07-28 09:38:19,315 INFO [main] org.appng.core.service.CoreService: extracting filebased application demo-application - 1.5.3 to target/webapps/ROOT/applications/demo-application 2017-07-28 09:38:19,321 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-format.html' 2017-07-28 09:38:19,321 INFO [main] org.appng.core.service.CoreService: role 'Administrator' already has permission 'output-type.webgui' 2017-07-28 09:38:19,322 WARN [main] org.appng.core.service.CoreService: the role 'Administrator' references permisson 'logViewer' which does not exist! 2017-07-28 09:38:19,323 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'debug' 2017-07-28 09:38:19,323 INFO [main] org.appng.core.service.CoreService: role 'Debugger' already has permission 'testPermission' 2017-07-28 09:38:19,324 INFO [main] org.appng.core.service.CoreService: role 'Tester' already has permission 'testPermission' 2017-07-28 09:38:19,363 INFO [main] org.appng.core.service.CoreService: creating new permission 'testPermission' for application 'demo-application' 2017-07-28 09:38:19,372 INFO [main] org.appng.core.service.CoreService: creating new permission 'newName' for application 'demo-application' 2017-07-28 09:38:19,384 INFO [main] org.springframework.web.context.support.GenericWebApplicationContext: Closing org.springframework.web.context.support.GenericWebApplicationContext@59e4e3a6: startup date [Fri Jul 28 09:38:18 CEST 2017]; root of context hierarchy 2017-07-28 09:38:19,385 INFO [main] org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean: Closing JPA EntityManagerFactory for persistence unit 'appng' 2017-07-28 09:38:19,385 INFO [main] org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory: Shutting down embedded database: url='jdbc:hsqldb:mem:testdb' [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.723 s - in org.appng.appngizer.controller.PermissionControllerTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-war-plugin:3.1.0:war (default-war) @ appng-appngizer --- [INFO] Packaging webapp [INFO] Assembling webapp [appng-appngizer] in [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3] [INFO] Processing war project [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/webapp/META-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3] [INFO] Copying webapp webResources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/webapp/WEB-INF] to [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3] [INFO] Copying webapp resources [/var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/webapp] [INFO] Webapp assembled in [45 msecs] [INFO] Building war: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-appngizer --- [WARNING] Error fetching link: https://appng.org/appng-appngizer-jaxb/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-core/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://projectlombok.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://appng.org/appng-testsupport/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://tomcat.apache.org/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.appngizer.controller... Loading source files for package org.appng.appngizer.model... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/AppNGizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/AppNGizerConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/AppNGizerServlet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/ControllerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/DatabaseController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/GroupController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/Jaxb2Marshaller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/PermissionController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/PlatformController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/PlatformPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/RepositoryController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/RoleController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/SessionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/SiteApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/SiteApplicationPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/SiteController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/SitePropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/SubjectController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/UriAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/overview-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/constant-values.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/serialized-form.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/PlatformPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/AppNGizer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/SubjectController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/GroupController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/ApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/SitePropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/AppNGizerServlet.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/PlatformController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/SiteController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/DatabaseController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/Jaxb2Marshaller.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/SiteApplicationPropertyController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/ControllerBase.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/SessionFilter.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/SiteApplicationController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/RepositoryController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/AppNGizerConfigurer.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/PermissionController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/class-use/RoleController.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Database.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Subject.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Sites.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Home.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Package.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Permission.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Link.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Application.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Roles.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Repository.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Groups.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Applications.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Subjects.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Platform.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Databases.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Site.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Group.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Properties.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Repositories.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Links.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Permissions.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Property.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Role.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/Packages.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/class-use/UriAware.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/controller/package-use.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/org/appng/appngizer/model/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/overview-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-appngizer >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-appngizer <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-appngizer --- [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf-generate-user-manual) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-user-manual.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html-generate-user-manual) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-user-manual.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf-generate-install-platform) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-platform-installation-guide.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html-generate-install-platform) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-platform-installation-guide.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (pdf-generate-setup-guide) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-setup-guide.adoc [INFO] [INFO] --- asciidoctor-maven-plugin:1.5.5:process-asciidoc (html-generate-setup-guide) @ appng-appngizer --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] ignoreDelta true [INFO] Copying 46 resources [INFO] Copying file appng.css [INFO] Copying file images/appng.png [INFO] Copying file xml/site-application-properties.xml [INFO] Copying file xml/platform-system.xml [INFO] Copying file xml/repository-install-package-response.xml [INFO] Copying file xml/site-update.xml [INFO] Copying file xml/role-list.xml [INFO] Copying file xml/group-list.xml [INFO] Copying file xml/role-create.xml [INFO] Copying file xml/repository-list-packages.xml [INFO] Copying file xml/platform-properties.xml [INFO] Copying file xml/group-update.xml [INFO] Copying file xml/repository-install-package.xml [INFO] Copying file xml/subject-show.xml [INFO] Copying file xml/repository-update_response.xml [INFO] Copying file xml/site-property-list.xml [INFO] Copying file xml/repository-upload-package-response.xml [INFO] Copying file xml/site-show.xml [INFO] Copying file xml/subject-create.xml [INFO] Copying file xml/repository-create.xml [INFO] Copying file xml/group-create.xml [INFO] Copying file xml/site-update_response.xml [INFO] Copying file xml/sites.xml [INFO] Copying file xml/repository-update.xml [INFO] Copying file xml/site-create.xml [INFO] Copying file xml/subject-update.xml [INFO] Copying file xml/platform-property-update_response.xml [INFO] Copying file xml/subject-list.xml [INFO] Copying file xml/permission-list.xml [INFO] Copying file xml/subject-update_response.xml [INFO] Copying file xml/dummy.xml [INFO] Copying file xml/role-show.xml [INFO] Copying file xml/site-application-show.xml [INFO] Copying file xml/role-update.xml [INFO] Copying file xml/property-create.xml [INFO] Copying file xml/group-show.xml [INFO] Copying file xml/home_response.xml [INFO] Copying file xml/platform-environment.xml [INFO] Copying file xml/site-application-list.xml [INFO] Copying file xml/application-show.xml [INFO] Copying file xml/application-list.xml [INFO] Copying file xml/application-update.xml [INFO] Copying file xml/database.xml [INFO] Copying file xml/platform.xml [INFO] Copying file xml/repository-list.xml [INFO] Copying file xml/property-update.xml [INFO] Rendered /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/src/main/asciidoc/appngizer-setup-guide.adoc [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-appngizer --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-appngizer --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-appngizer --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-appngizer --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.war.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer/target/appng-appngizer-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar.asc [INFO] Execution skipped to the last project... [INFO] [INFO] --- maven-antrun-plugin:1.8:run (default) @ appng-appngizer --- [INFO] Executing tasks main: [copy] Copying 1 file to /srv/www/appng.org/appng/builds/stable [INFO] Executed tasks [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG appNGizer Maven Plugin 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-appngizer-maven-plugin --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-plugin-plugin:3.5:descriptor (default-descriptor) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to read mojo source files. [INFO] java-javadoc mojo extractor found 0 mojo descriptor. [INFO] java-annotations mojo extractor found 2 mojo descriptors. [INFO] [INFO] --- maven-plugin-plugin:3.5:descriptor (mojo-descriptor) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to read mojo source files. [INFO] java-javadoc mojo extractor found 0 mojo descriptor. [INFO] java-annotations mojo extractor found 2 mojo descriptors. [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-appngizer-maven-plugin --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-appngizer-maven-plugin --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-appngizer-maven-plugin --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] [INFO] Results: [INFO] [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-appngizer-maven-plugin --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar [INFO] [INFO] --- maven-plugin-plugin:3.5:addPluginArtifactMetadata (default-addPluginArtifactMetadata) @ appng-appngizer-maven-plugin --- [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:jar (build-jars) @ appng-appngizer-maven-plugin --- [WARNING] Error fetching link: https://appng.org/appng-appngizer-jaxb/apidocs/package-list. Ignored it. [WARNING] Error fetching link: http://junit.org/apidocs/package-list. Ignored it. [WARNING] Error fetching link: https://github.com/spring-projects/spring-framework/apidocs/package-list. Ignored it. [INFO] Loading source files for package org.appng.maven.plugins.appngizer... Constructing Javadoc information... Standard Doclet version 1.8.0_131 Building tree for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/InstallMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/UploadMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/package-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/package-summary.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/package-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/constant-values.html... Copying file StandardDocFile[file:/var/lib/jenkins/workspace/appNG_Release/appng/appng-documentation/src/main/resources/javadoc/appng-javadoc.css] to file appng-javadoc.css... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/class-use/UploadMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/class-use/InstallMojo.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/org/appng/maven/plugins/appngizer/package-use.html... Building index for all the packages and classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/overview-tree.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/index-all.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/deprecated-list.html... Building index for all classes... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/allclasses-frame.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/allclasses-noframe.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/index.html... Generating /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/apidocs/help-doc.html... [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-javadoc.jar [INFO] [INFO] >>> maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) > generate-sources @ appng-appngizer-maven-plugin >>> [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG XML-API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-plugininfo) @ appng-xmlapi --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-xmlapi --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-xmlapi/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNG Core Library 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-publishing) @ appng-core --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] --- build-helper-maven-plugin:3.0.0:add-source (default) @ appng-core --- [INFO] Source directory: /var/lib/jenkins/workspace/appNG_Release/appng/appng-core/target/generated-sources/jaxb added. [INFO] [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] Forking appNGizer JAXB API 1.14.3 [INFO] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> [INFO] [INFO] --- jaxb2-maven-plugin:1.6:xjc (generate-xmlapi) @ appng-appngizer-jaxb --- [INFO] No changes detected in schema or binding files - skipping source generation. [INFO] [INFO] <<< maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) < generate-sources @ appng-appngizer-maven-plugin <<< [INFO] [INFO] [INFO] --- maven-javadoc-plugin:2.10.4:aggregate (build-aggregated) @ appng-appngizer-maven-plugin --- [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-appngizer-maven-plugin --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar [INFO] [INFO] --- maven-gpg-plugin:1.6:sign (sign-artifacts) @ appng-appngizer-maven-plugin --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-appngizer-maven-plugin --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-javadoc.jar to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.pom.asc to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-javadoc.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar.asc to /var/lib/jenkins/.m2/repository/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar.asc [INFO] [INFO] --- nexus-staging-maven-plugin:1.6.7:deploy (injected-nexus-deploy) @ appng-appngizer-maven-plugin --- [INFO] Performing local staging (local stagingDirectory="/var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging")... [INFO] + Using server credentials "sonatype" from Maven settings. [INFO] * Connected to Nexus at https://oss.sonatype.org:443/, is version 2.14.4-03 and edition "Professional" [INFO] * Using staging profile ID "5db33f1e7729b7" (matched by Nexus). [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/pom.xml to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-javadoc.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3.pom.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-javadoc.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar.asc [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-appngizer-maven-plugin/target/appng-appngizer-maven-plugin-1.14.3-sources.jar.asc to /var/lib/jenkins/workspace/appNG_Release/appng/target/nexus-staging/staging/5db33f1e7729b7/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar.asc [INFO] Performing remote staging... [INFO] [INFO] * Remote staging into staging profile ID "5db33f1e7729b7" [INFO] * Created staging repository with ID "orgappng-1014". [INFO] * Staging repository at https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014 [INFO] * Uploading locally staged artifacts to profile org.appng Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar.asc (473 B at 622 B/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/maven-metadata.xml Progress (1): 303 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/maven-metadata.xml (303 B at 347 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar.asc (473 B at 2.3 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/maven-metadata.xml Progress (1): 311 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/maven-metadata.xml (311 B at 355 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar.asc (473 B at 2.1 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/maven-metadata.xml Progress (1): 304 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/maven-metadata.xml (304 B at 341 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom.asc (473 B at 1.9 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/maven-metadata.xml Progress (1): 306 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/maven-metadata.xml (306 B at 352 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/maven-metadata.xml Progress (1): 310 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/maven-metadata.xml (310 B at 373 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/maven-metadata.xml Progress (1): 302 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/maven-metadata.xml (302 B at 364 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar Progress (1): 2.0/56 kB Progress (1): 4.1/56 kB Progress (1): 6.1/56 kB Progress (1): 8.2/56 kB Progress (1): 10/56 kB Progress (1): 12/56 kB Progress (1): 14/56 kB Progress (1): 16/56 kB Progress (1): 18/56 kB Progress (1): 20/56 kB Progress (1): 23/56 kB Progress (1): 25/56 kB Progress (1): 27/56 kB Progress (1): 29/56 kB Progress (1): 31/56 kB Progress (1): 33/56 kB Progress (1): 35/56 kB Progress (1): 37/56 kB Progress (1): 39/56 kB Progress (1): 41/56 kB Progress (1): 43/56 kB Progress (1): 45/56 kB Progress (1): 47/56 kB Progress (1): 49/56 kB Progress (1): 51/56 kB Progress (1): 53/56 kB Progress (1): 55/56 kB Progress (1): 56 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar (56 kB at 62 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom Progress (1): 2.0/2.3 kB Progress (1): 2.3 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom (2.3 kB at 3.5 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/maven-metadata.xml Progress (1): 303 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/maven-metadata.xml (303 B at 342 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar.asc (473 B at 2.1 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/maven-metadata.xml Progress (1): 304 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/maven-metadata.xml (304 B at 364 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war Progress (1): 2.0/113 kB Progress (1): 4.1/113 kB Progress (1): 6.1/113 kB Progress (1): 8.2/113 kB Progress (1): 10/113 kB Progress (1): 12/113 kB Progress (1): 14/113 kB Progress (1): 16/113 kB Progress (1): 18/113 kB Progress (1): 20/113 kB Progress (1): 23/113 kB Progress (1): 25/113 kB Progress (1): 27/113 kB Progress (1): 29/113 kB Progress (1): 31/113 kB Progress (1): 33/113 kB Progress (1): 35/113 kB Progress (1): 37/113 kB Progress (1): 39/113 kB Progress (1): 41/113 kB Progress (1): 43/113 kB Progress (1): 45/113 kB Progress (1): 47/113 kB Progress (1): 49/113 kB Progress (1): 51/113 kB Progress (1): 53/113 kB Progress (1): 55/113 kB Progress (1): 57/113 kB Progress (1): 59/113 kB Progress (1): 61/113 kB Progress (1): 63/113 kB Progress (1): 66/113 kB Progress (1): 68/113 kB Progress (1): 70/113 kB Progress (1): 72/113 kB Progress (1): 74/113 kB Progress (1): 76/113 kB Progress (1): 78/113 kB Progress (1): 80/113 kB Progress (1): 82/113 kB Progress (1): 84/113 kB Progress (1): 86/113 kB Progress (1): 88/113 kB Progress (1): 90/113 kB Progress (1): 92/113 kB Progress (1): 94/113 kB Progress (1): 96/113 kB Progress (1): 98/113 kB Progress (1): 100/113 kB Progress (1): 102/113 kB Progress (1): 104/113 kB Progress (1): 106/113 kB Progress (1): 109/113 kB Progress (1): 111/113 kB Progress (1): 113/113 kB Progress (1): 113 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war (113 kB at 118 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom Progress (1): 2.0/8.2 kB Progress (1): 4.1/8.2 kB Progress (1): 6.1/8.2 kB Progress (1): 8.2 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.pom (8.2 kB at 12 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar Progress (1): 2.0/236 kB Progress (1): 4.1/236 kB Progress (1): 6.1/236 kB Progress (1): 8.2/236 kB Progress (1): 10/236 kB Progress (1): 12/236 kB Progress (1): 14/236 kB Progress (1): 16/236 kB Progress (1): 18/236 kB Progress (1): 20/236 kB Progress (1): 23/236 kB Progress (1): 25/236 kB Progress (1): 27/236 kB Progress (1): 29/236 kB Progress (1): 31/236 kB Progress (1): 33/236 kB Progress (1): 35/236 kB Progress (1): 37/236 kB Progress (1): 39/236 kB Progress (1): 41/236 kB Progress (1): 43/236 kB Progress (1): 45/236 kB Progress (1): 47/236 kB Progress (1): 49/236 kB Progress (1): 51/236 kB Progress (1): 53/236 kB Progress (1): 55/236 kB Progress (1): 57/236 kB Progress (1): 59/236 kB Progress (1): 61/236 kB Progress (1): 63/236 kB Progress (1): 66/236 kB Progress (1): 68/236 kB Progress (1): 70/236 kB Progress (1): 72/236 kB Progress (1): 74/236 kB Progress (1): 76/236 kB Progress (1): 78/236 kB Progress (1): 80/236 kB Progress (1): 82/236 kB Progress (1): 84/236 kB Progress (1): 86/236 kB Progress (1): 88/236 kB Progress (1): 90/236 kB Progress (1): 92/236 kB Progress (1): 94/236 kB Progress (1): 96/236 kB Progress (1): 98/236 kB Progress (1): 100/236 kB Progress (1): 102/236 kB Progress (1): 104/236 kB Progress (1): 106/236 kB Progress (1): 109/236 kB Progress (1): 111/236 kB Progress (1): 113/236 kB Progress (1): 115/236 kB Progress (1): 117/236 kB Progress (1): 119/236 kB Progress (1): 121/236 kB Progress (1): 123/236 kB Progress (1): 125/236 kB Progress (1): 127/236 kB Progress (1): 129/236 kB Progress (1): 131/236 kB Progress (1): 133/236 kB Progress (1): 135/236 kB Progress (1): 137/236 kB Progress (1): 139/236 kB Progress (1): 141/236 kB Progress (1): 143/236 kB Progress (1): 145/236 kB Progress (1): 147/236 kB Progress (1): 150/236 kB Progress (1): 152/236 kB Progress (1): 154/236 kB Progress (1): 156/236 kB Progress (1): 158/236 kB Progress (1): 160/236 kB Progress (1): 162/236 kB Progress (1): 164/236 kB Progress (1): 166/236 kB Progress (1): 168/236 kB Progress (1): 170/236 kB Progress (1): 172/236 kB Progress (1): 174/236 kB Progress (1): 176/236 kB Progress (1): 178/236 kB Progress (1): 180/236 kB Progress (1): 182/236 kB Progress (1): 184/236 kB Progress (1): 186/236 kB Progress (1): 188/236 kB Progress (1): 190/236 kB Progress (1): 193/236 kB Progress (1): 195/236 kB Progress (1): 197/236 kB Progress (1): 199/236 kB Progress (1): 201/236 kB Progress (1): 203/236 kB Progress (1): 205/236 kB Progress (1): 207/236 kB Progress (1): 209/236 kB Progress (1): 211/236 kB Progress (1): 213/236 kB Progress (1): 215/236 kB Progress (1): 217/236 kB Progress (1): 219/236 kB Progress (1): 221/236 kB Progress (1): 223/236 kB Progress (1): 225/236 kB Progress (1): 227/236 kB Progress (1): 229/236 kB Progress (1): 231/236 kB Progress (1): 233/236 kB Progress (1): 236/236 kB Progress (1): 236 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar (236 kB at 288 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/maven-metadata.xml Progress (1): 302 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/maven-metadata.xml (302 B at 353 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar Progress (1): 2.0/21 kB Progress (1): 4.1/21 kB Progress (1): 6.1/21 kB Progress (1): 8.2/21 kB Progress (1): 10/21 kB Progress (1): 12/21 kB Progress (1): 14/21 kB Progress (1): 16/21 kB Progress (1): 18/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar (21 kB at 29 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/maven-metadata.xml Progress (1): 308 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/maven-metadata.xml (308 B at 66 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/maven-metadata.xml Progress (1): 300 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/maven-metadata.xml (300 B at 365 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/maven-metadata.xml Progress (1): 308 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/maven-metadata.xml (308 B at 368 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar Progress (1): 2.0/15 kB Progress (1): 4.1/15 kB Progress (1): 6.1/15 kB Progress (1): 8.2/15 kB Progress (1): 10/15 kB Progress (1): 12/15 kB Progress (1): 14/15 kB Progress (1): 15 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar (15 kB at 20 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/maven-metadata.xml Progress (1): 318 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/maven-metadata.xml (318 B at 354 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar Progress (1): 2.0/21 kB Progress (1): 4.1/21 kB Progress (1): 6.1/21 kB Progress (1): 8.2/21 kB Progress (1): 10/21 kB Progress (1): 12/21 kB Progress (1): 14/21 kB Progress (1): 16/21 kB Progress (1): 18/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar (21 kB at 25 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/maven-metadata.xml Progress (1): 305 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/maven-metadata.xml (305 B at 363 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.war.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.war.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/maven-metadata.xml Progress (1): 308 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/maven-metadata.xml (308 B at 329 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom.asc (473 B at 1.9 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/maven-metadata.xml Progress (1): 317 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/maven-metadata.xml (317 B at 354 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar Progress (1): 2.0/23 kB Progress (1): 4.1/23 kB Progress (1): 6.1/23 kB Progress (1): 8.2/23 kB Progress (1): 10/23 kB Progress (1): 12/23 kB Progress (1): 14/23 kB Progress (1): 16/23 kB Progress (1): 18/23 kB Progress (1): 20/23 kB Progress (1): 23/23 kB Progress (1): 23 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar (23 kB at 30 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom Progress (1): 2.0/3.1 kB Progress (1): 3.1 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom (3.1 kB at 4.8 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar Progress (1): 2.0/485 kB Progress (1): 4.1/485 kB Progress (1): 6.1/485 kB Progress (1): 8.2/485 kB Progress (1): 10/485 kB Progress (1): 12/485 kB Progress (1): 14/485 kB Progress (1): 16/485 kB Progress (1): 18/485 kB Progress (1): 20/485 kB Progress (1): 23/485 kB Progress (1): 25/485 kB Progress (1): 27/485 kB Progress (1): 29/485 kB Progress (1): 31/485 kB Progress (1): 33/485 kB Progress (1): 35/485 kB Progress (1): 37/485 kB Progress (1): 39/485 kB Progress (1): 41/485 kB Progress (1): 43/485 kB Progress (1): 45/485 kB Progress (1): 47/485 kB Progress (1): 49/485 kB Progress (1): 51/485 kB Progress (1): 53/485 kB Progress (1): 55/485 kB Progress (1): 57/485 kB Progress (1): 59/485 kB Progress (1): 61/485 kB Progress (1): 63/485 kB Progress (1): 66/485 kB Progress (1): 68/485 kB Progress (1): 70/485 kB Progress (1): 72/485 kB Progress (1): 74/485 kB Progress (1): 76/485 kB Progress (1): 78/485 kB Progress (1): 80/485 kB Progress (1): 82/485 kB Progress (1): 84/485 kB Progress (1): 86/485 kB Progress (1): 88/485 kB Progress (1): 90/485 kB Progress (1): 92/485 kB Progress (1): 94/485 kB Progress (1): 96/485 kB Progress (1): 98/485 kB Progress (1): 100/485 kB Progress (1): 102/485 kB Progress (1): 104/485 kB Progress (1): 106/485 kB Progress (1): 109/485 kB Progress (1): 111/485 kB Progress (1): 113/485 kB Progress (1): 115/485 kB Progress (1): 117/485 kB Progress (1): 119/485 kB Progress (1): 121/485 kB Progress (1): 123/485 kB Progress (1): 125/485 kB Progress (1): 127/485 kB Progress (1): 129/485 kB Progress (1): 131/485 kB Progress (1): 133/485 kB Progress (1): 135/485 kB Progress (1): 137/485 kB Progress (1): 139/485 kB Progress (1): 141/485 kB Progress (1): 143/485 kB Progress (1): 145/485 kB Progress (1): 147/485 kB Progress (1): 150/485 kB Progress (1): 152/485 kB Progress (1): 154/485 kB Progress (1): 156/485 kB Progress (1): 158/485 kB Progress (1): 160/485 kB Progress (1): 162/485 kB Progress (1): 164/485 kB Progress (1): 166/485 kB Progress (1): 168/485 kB Progress (1): 170/485 kB Progress (1): 172/485 kB Progress (1): 174/485 kB Progress (1): 176/485 kB Progress (1): 178/485 kB Progress (1): 180/485 kB Progress (1): 182/485 kB Progress (1): 184/485 kB Progress (1): 186/485 kB Progress (1): 188/485 kB Progress (1): 190/485 kB Progress (1): 193/485 kB Progress (1): 195/485 kB Progress (1): 197/485 kB Progress (1): 199/485 kB Progress (1): 201/485 kB Progress (1): 203/485 kB Progress (1): 205/485 kB Progress (1): 207/485 kB Progress (1): 209/485 kB Progress (1): 211/485 kB Progress (1): 213/485 kB Progress (1): 215/485 kB Progress (1): 217/485 kB Progress (1): 219/485 kB Progress (1): 221/485 kB Progress (1): 223/485 kB Progress (1): 225/485 kB Progress (1): 227/485 kB Progress (1): 229/485 kB Progress (1): 231/485 kB Progress (1): 233/485 kB Progress (1): 236/485 kB Progress (1): 238/485 kB Progress (1): 240/485 kB Progress (1): 242/485 kB Progress (1): 244/485 kB Progress (1): 246/485 kB Progress (1): 248/485 kB Progress (1): 250/485 kB Progress (1): 252/485 kB Progress (1): 254/485 kB Progress (1): 256/485 kB Progress (1): 258/485 kB Progress (1): 260/485 kB Progress (1): 262/485 kB Progress (1): 264/485 kB Progress (1): 266/485 kB Progress (1): 268/485 kB Progress (1): 270/485 kB Progress (1): 272/485 kB Progress (1): 274/485 kB Progress (1): 276/485 kB Progress (1): 279/485 kB Progress (1): 281/485 kB Progress (1): 283/485 kB Progress (1): 285/485 kB Progress (1): 287/485 kB Progress (1): 289/485 kB Progress (1): 291/485 kB Progress (1): 293/485 kB Progress (1): 295/485 kB Progress (1): 297/485 kB Progress (1): 299/485 kB Progress (1): 301/485 kB Progress (1): 303/485 kB Progress (1): 305/485 kB Progress (1): 307/485 kB Progress (1): 309/485 kB Progress (1): 311/485 kB Progress (1): 313/485 kB Progress (1): 315/485 kB Progress (1): 317/485 kB Progress (1): 319/485 kB Progress (1): 322/485 kB Progress (1): 324/485 kB Progress (1): 326/485 kB Progress (1): 328/485 kB Progress (1): 330/485 kB Progress (1): 332/485 kB Progress (1): 334/485 kB Progress (1): 336/485 kB Progress (1): 338/485 kB Progress (1): 340/485 kB Progress (1): 342/485 kB Progress (1): 344/485 kB Progress (1): 346/485 kB Progress (1): 348/485 kB Progress (1): 350/485 kB Progress (1): 352/485 kB Progress (1): 354/485 kB Progress (1): 356/485 kB Progress (1): 358/485 kB Progress (1): 360/485 kB Progress (1): 362/485 kB Progress (1): 365/485 kB Progress (1): 367/485 kB Progress (1): 369/485 kB Progress (1): 371/485 kB Progress (1): 373/485 kB Progress (1): 375/485 kB Progress (1): 377/485 kB Progress (1): 379/485 kB Progress (1): 381/485 kB Progress (1): 383/485 kB Progress (1): 385/485 kB Progress (1): 387/485 kB Progress (1): 389/485 kB Progress (1): 391/485 kB Progress (1): 393/485 kB Progress (1): 395/485 kB Progress (1): 397/485 kB Progress (1): 399/485 kB Progress (1): 401/485 kB Progress (1): 403/485 kB Progress (1): 406/485 kB Progress (1): 408/485 kB Progress (1): 410/485 kB Progress (1): 412/485 kB Progress (1): 414/485 kB Progress (1): 416/485 kB Progress (1): 418/485 kB Progress (1): 420/485 kB Progress (1): 422/485 kB Progress (1): 424/485 kB Progress (1): 426/485 kB Progress (1): 428/485 kB Progress (1): 430/485 kB Progress (1): 432/485 kB Progress (1): 434/485 kB Progress (1): 436/485 kB Progress (1): 438/485 kB Progress (1): 440/485 kB Progress (1): 442/485 kB Progress (1): 444/485 kB Progress (1): 446/485 kB Progress (1): 449/485 kB Progress (1): 451/485 kB Progress (1): 453/485 kB Progress (1): 455/485 kB Progress (1): 457/485 kB Progress (1): 459/485 kB Progress (1): 461/485 kB Progress (1): 463/485 kB Progress (1): 465/485 kB Progress (1): 467/485 kB Progress (1): 469/485 kB Progress (1): 471/485 kB Progress (1): 473/485 kB Progress (1): 475/485 kB Progress (1): 477/485 kB Progress (1): 479/485 kB Progress (1): 481/485 kB Progress (1): 483/485 kB Progress (1): 485 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar (485 kB at 502 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom Progress (1): 2.0/9.9 kB Progress (1): 4.1/9.9 kB Progress (1): 6.1/9.9 kB Progress (1): 8.2/9.9 kB Progress (1): 9.9 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom (9.9 kB at 14 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/maven-metadata.xml Progress (1): 301 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/maven-metadata.xml (301 B at 346 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/maven-metadata.xml Progress (1): 300 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/maven-metadata.xml (300 B at 343 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar Progress (1): 2.0/86 kB Progress (1): 4.1/86 kB Progress (1): 6.1/86 kB Progress (1): 8.2/86 kB Progress (1): 10/86 kB Progress (1): 12/86 kB Progress (1): 14/86 kB Progress (1): 16/86 kB Progress (1): 18/86 kB Progress (1): 20/86 kB Progress (1): 23/86 kB Progress (1): 25/86 kB Progress (1): 27/86 kB Progress (1): 29/86 kB Progress (1): 31/86 kB Progress (1): 33/86 kB Progress (1): 35/86 kB Progress (1): 37/86 kB Progress (1): 39/86 kB Progress (1): 41/86 kB Progress (1): 43/86 kB Progress (1): 45/86 kB Progress (1): 47/86 kB Progress (1): 49/86 kB Progress (1): 51/86 kB Progress (1): 53/86 kB Progress (1): 55/86 kB Progress (1): 57/86 kB Progress (1): 59/86 kB Progress (1): 61/86 kB Progress (1): 63/86 kB Progress (1): 66/86 kB Progress (1): 68/86 kB Progress (1): 70/86 kB Progress (1): 72/86 kB Progress (1): 74/86 kB Progress (1): 76/86 kB Progress (1): 78/86 kB Progress (1): 80/86 kB Progress (1): 82/86 kB Progress (1): 84/86 kB Progress (1): 86/86 kB Progress (1): 86 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar (86 kB at 101 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/maven-metadata.xml Progress (1): 301 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/maven-metadata.xml (301 B at 365 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar Progress (1): 2.0/42 kB Progress (1): 4.1/42 kB Progress (1): 6.1/42 kB Progress (1): 8.2/42 kB Progress (1): 10/42 kB Progress (1): 12/42 kB Progress (1): 14/42 kB Progress (1): 16/42 kB Progress (1): 18/42 kB Progress (1): 20/42 kB Progress (1): 23/42 kB Progress (1): 25/42 kB Progress (1): 27/42 kB Progress (1): 29/42 kB Progress (1): 31/42 kB Progress (1): 33/42 kB Progress (1): 35/42 kB Progress (1): 37/42 kB Progress (1): 39/42 kB Progress (1): 41/42 kB Progress (1): 42 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar (42 kB at 55 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar Progress (1): 2.0/8.2 kB Progress (1): 4.1/8.2 kB Progress (1): 6.1/8.2 kB Progress (1): 8.2 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar (8.2 kB at 12 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/maven-metadata.xml Progress (1): 325 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/maven-metadata.xml (325 B at 379 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom.asc (473 B at 1.9 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/maven-metadata.xml Progress (1): 314 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/maven-metadata.xml (314 B at 380 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar Progress (1): 2.0/302 kB Progress (1): 4.1/302 kB Progress (1): 6.1/302 kB Progress (1): 8.2/302 kB Progress (1): 10/302 kB Progress (1): 12/302 kB Progress (1): 14/302 kB Progress (1): 16/302 kB Progress (1): 18/302 kB Progress (1): 20/302 kB Progress (1): 23/302 kB Progress (1): 25/302 kB Progress (1): 27/302 kB Progress (1): 29/302 kB Progress (1): 31/302 kB Progress (1): 33/302 kB Progress (1): 35/302 kB Progress (1): 37/302 kB Progress (1): 39/302 kB Progress (1): 41/302 kB Progress (1): 43/302 kB Progress (1): 45/302 kB Progress (1): 47/302 kB Progress (1): 49/302 kB Progress (1): 51/302 kB Progress (1): 53/302 kB Progress (1): 55/302 kB Progress (1): 57/302 kB Progress (1): 59/302 kB Progress (1): 61/302 kB Progress (1): 63/302 kB Progress (1): 66/302 kB Progress (1): 68/302 kB Progress (1): 70/302 kB Progress (1): 72/302 kB Progress (1): 74/302 kB Progress (1): 76/302 kB Progress (1): 78/302 kB Progress (1): 80/302 kB Progress (1): 82/302 kB Progress (1): 84/302 kB Progress (1): 86/302 kB Progress (1): 88/302 kB Progress (1): 90/302 kB Progress (1): 92/302 kB Progress (1): 94/302 kB Progress (1): 96/302 kB Progress (1): 98/302 kB Progress (1): 100/302 kB Progress (1): 102/302 kB Progress (1): 104/302 kB Progress (1): 106/302 kB Progress (1): 109/302 kB Progress (1): 111/302 kB Progress (1): 113/302 kB Progress (1): 115/302 kB Progress (1): 117/302 kB Progress (1): 119/302 kB Progress (1): 121/302 kB Progress (1): 123/302 kB Progress (1): 125/302 kB Progress (1): 127/302 kB Progress (1): 129/302 kB Progress (1): 131/302 kB Progress (1): 133/302 kB Progress (1): 135/302 kB Progress (1): 137/302 kB Progress (1): 139/302 kB Progress (1): 141/302 kB Progress (1): 143/302 kB Progress (1): 145/302 kB Progress (1): 147/302 kB Progress (1): 150/302 kB Progress (1): 152/302 kB Progress (1): 154/302 kB Progress (1): 156/302 kB Progress (1): 158/302 kB Progress (1): 160/302 kB Progress (1): 162/302 kB Progress (1): 164/302 kB Progress (1): 166/302 kB Progress (1): 168/302 kB Progress (1): 170/302 kB Progress (1): 172/302 kB Progress (1): 174/302 kB Progress (1): 176/302 kB Progress (1): 178/302 kB Progress (1): 180/302 kB Progress (1): 182/302 kB Progress (1): 184/302 kB Progress (1): 186/302 kB Progress (1): 188/302 kB Progress (1): 190/302 kB Progress (1): 193/302 kB Progress (1): 195/302 kB Progress (1): 197/302 kB Progress (1): 199/302 kB Progress (1): 201/302 kB Progress (1): 203/302 kB Progress (1): 205/302 kB Progress (1): 207/302 kB Progress (1): 209/302 kB Progress (1): 211/302 kB Progress (1): 213/302 kB Progress (1): 215/302 kB Progress (1): 217/302 kB Progress (1): 219/302 kB Progress (1): 221/302 kB Progress (1): 223/302 kB Progress (1): 225/302 kB Progress (1): 227/302 kB Progress (1): 229/302 kB Progress (1): 231/302 kB Progress (1): 233/302 kB Progress (1): 236/302 kB Progress (1): 238/302 kB Progress (1): 240/302 kB Progress (1): 242/302 kB Progress (1): 244/302 kB Progress (1): 246/302 kB Progress (1): 248/302 kB Progress (1): 250/302 kB Progress (1): 252/302 kB Progress (1): 254/302 kB Progress (1): 256/302 kB Progress (1): 258/302 kB Progress (1): 260/302 kB Progress (1): 262/302 kB Progress (1): 264/302 kB Progress (1): 266/302 kB Progress (1): 268/302 kB Progress (1): 270/302 kB Progress (1): 272/302 kB Progress (1): 274/302 kB Progress (1): 276/302 kB Progress (1): 279/302 kB Progress (1): 281/302 kB Progress (1): 283/302 kB Progress (1): 285/302 kB Progress (1): 287/302 kB Progress (1): 289/302 kB Progress (1): 291/302 kB Progress (1): 293/302 kB Progress (1): 295/302 kB Progress (1): 297/302 kB Progress (1): 299/302 kB Progress (1): 301/302 kB Progress (1): 302 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar (302 kB at 293 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom Progress (1): 2.0/4.6 kB Progress (1): 4.1/4.6 kB Progress (1): 4.6 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom (4.6 kB at 1.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3-sources.jar.asc (473 B at 1.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar Progress (1): 2.0/77 kB Progress (1): 4.1/77 kB Progress (1): 6.1/77 kB Progress (1): 8.2/77 kB Progress (1): 10/77 kB Progress (1): 12/77 kB Progress (1): 14/77 kB Progress (1): 16/77 kB Progress (1): 18/77 kB Progress (1): 20/77 kB Progress (1): 23/77 kB Progress (1): 25/77 kB Progress (1): 27/77 kB Progress (1): 29/77 kB Progress (1): 31/77 kB Progress (1): 33/77 kB Progress (1): 35/77 kB Progress (1): 37/77 kB Progress (1): 39/77 kB Progress (1): 41/77 kB Progress (1): 43/77 kB Progress (1): 45/77 kB Progress (1): 47/77 kB Progress (1): 49/77 kB Progress (1): 51/77 kB Progress (1): 53/77 kB Progress (1): 55/77 kB Progress (1): 57/77 kB Progress (1): 59/77 kB Progress (1): 61/77 kB Progress (1): 63/77 kB Progress (1): 66/77 kB Progress (1): 68/77 kB Progress (1): 70/77 kB Progress (1): 72/77 kB Progress (1): 74/77 kB Progress (1): 76/77 kB Progress (1): 77 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar (77 kB at 19 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar Progress (1): 2.0/14 kB Progress (1): 4.1/14 kB Progress (1): 6.1/14 kB Progress (1): 8.2/14 kB Progress (1): 10/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar (14 kB at 13 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom Progress (1): 504 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.pom (504 B at 819 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom Progress (1): 2.0/5.3 kB Progress (1): 4.1/5.3 kB Progress (1): 5.3 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom (5.3 kB at 7.4 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/maven-metadata.xml Progress (1): 312 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/maven-metadata.xml (312 B at 357 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom.asc (473 B at 2.2 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/maven-metadata.xml Progress (1): 315 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/maven-metadata.xml (315 B at 254 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar Progress (1): 2.0/113 kB Progress (1): 4.1/113 kB Progress (1): 6.1/113 kB Progress (1): 8.2/113 kB Progress (1): 10/113 kB Progress (1): 12/113 kB Progress (1): 14/113 kB Progress (1): 16/113 kB Progress (1): 18/113 kB Progress (1): 20/113 kB Progress (1): 23/113 kB Progress (1): 25/113 kB Progress (1): 27/113 kB Progress (1): 29/113 kB Progress (1): 31/113 kB Progress (1): 33/113 kB Progress (1): 35/113 kB Progress (1): 37/113 kB Progress (1): 39/113 kB Progress (1): 41/113 kB Progress (1): 43/113 kB Progress (1): 45/113 kB Progress (1): 47/113 kB Progress (1): 49/113 kB Progress (1): 51/113 kB Progress (1): 53/113 kB Progress (1): 55/113 kB Progress (1): 57/113 kB Progress (1): 59/113 kB Progress (1): 61/113 kB Progress (1): 63/113 kB Progress (1): 66/113 kB Progress (1): 68/113 kB Progress (1): 70/113 kB Progress (1): 72/113 kB Progress (1): 74/113 kB Progress (1): 76/113 kB Progress (1): 78/113 kB Progress (1): 80/113 kB Progress (1): 82/113 kB Progress (1): 84/113 kB Progress (1): 86/113 kB Progress (1): 88/113 kB Progress (1): 90/113 kB Progress (1): 92/113 kB Progress (1): 94/113 kB Progress (1): 96/113 kB Progress (1): 98/113 kB Progress (1): 100/113 kB Progress (1): 102/113 kB Progress (1): 104/113 kB Progress (1): 106/113 kB Progress (1): 109/113 kB Progress (1): 111/113 kB Progress (1): 113/113 kB Progress (1): 113 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar (113 kB at 21 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar Progress (1): 2.0/48 kB Progress (1): 4.1/48 kB Progress (1): 6.1/48 kB Progress (1): 8.2/48 kB Progress (1): 10/48 kB Progress (1): 12/48 kB Progress (1): 14/48 kB Progress (1): 16/48 kB Progress (1): 18/48 kB Progress (1): 20/48 kB Progress (1): 23/48 kB Progress (1): 25/48 kB Progress (1): 27/48 kB Progress (1): 29/48 kB Progress (1): 31/48 kB Progress (1): 33/48 kB Progress (1): 35/48 kB Progress (1): 37/48 kB Progress (1): 39/48 kB Progress (1): 41/48 kB Progress (1): 43/48 kB Progress (1): 45/48 kB Progress (1): 47/48 kB Progress (1): 48 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar (48 kB at 56 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom Progress (1): 2.0/2.6 kB Progress (1): 2.6 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom (2.6 kB at 3.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar Progress (1): 2.0/3.1 kB Progress (1): 3.1 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar (3.1 kB at 4.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom Progress (1): 1.0 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom (1.0 kB at 1.6 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar Progress (1): 2.0/40 kB Progress (1): 4.1/40 kB Progress (1): 6.1/40 kB Progress (1): 8.2/40 kB Progress (1): 10/40 kB Progress (1): 12/40 kB Progress (1): 14/40 kB Progress (1): 16/40 kB Progress (1): 18/40 kB Progress (1): 20/40 kB Progress (1): 23/40 kB Progress (1): 25/40 kB Progress (1): 27/40 kB Progress (1): 29/40 kB Progress (1): 31/40 kB Progress (1): 33/40 kB Progress (1): 35/40 kB Progress (1): 37/40 kB Progress (1): 39/40 kB Progress (1): 40 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar (40 kB at 50 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/maven-metadata.xml Progress (1): 303 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/maven-metadata.xml (303 B at 329 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar Progress (1): 2.0/804 kB Progress (1): 4.1/804 kB Progress (1): 6.1/804 kB Progress (1): 8.2/804 kB Progress (1): 10/804 kB Progress (1): 12/804 kB Progress (1): 14/804 kB Progress (1): 16/804 kB Progress (1): 18/804 kB Progress (1): 20/804 kB Progress (1): 23/804 kB Progress (1): 25/804 kB Progress (1): 27/804 kB Progress (1): 29/804 kB Progress (1): 31/804 kB Progress (1): 33/804 kB Progress (1): 35/804 kB Progress (1): 37/804 kB Progress (1): 39/804 kB Progress (1): 41/804 kB Progress (1): 43/804 kB Progress (1): 45/804 kB Progress (1): 47/804 kB Progress (1): 49/804 kB Progress (1): 51/804 kB Progress (1): 53/804 kB Progress (1): 55/804 kB Progress (1): 57/804 kB Progress (1): 59/804 kB Progress (1): 61/804 kB Progress (1): 63/804 kB Progress (1): 66/804 kB Progress (1): 68/804 kB Progress (1): 70/804 kB Progress (1): 72/804 kB Progress (1): 74/804 kB Progress (1): 76/804 kB Progress (1): 78/804 kB Progress (1): 80/804 kB Progress (1): 82/804 kB Progress (1): 84/804 kB Progress (1): 86/804 kB Progress (1): 88/804 kB Progress (1): 90/804 kB Progress (1): 92/804 kB Progress (1): 94/804 kB Progress (1): 96/804 kB Progress (1): 98/804 kB Progress (1): 100/804 kB Progress (1): 102/804 kB Progress (1): 104/804 kB Progress (1): 106/804 kB Progress (1): 109/804 kB Progress (1): 111/804 kB Progress (1): 113/804 kB Progress (1): 115/804 kB Progress (1): 117/804 kB Progress (1): 119/804 kB Progress (1): 121/804 kB Progress (1): 123/804 kB Progress (1): 125/804 kB Progress (1): 127/804 kB Progress (1): 129/804 kB Progress (1): 131/804 kB Progress (1): 133/804 kB Progress (1): 135/804 kB Progress (1): 137/804 kB Progress (1): 139/804 kB Progress (1): 141/804 kB Progress (1): 143/804 kB Progress (1): 145/804 kB Progress (1): 147/804 kB Progress (1): 150/804 kB Progress (1): 152/804 kB Progress (1): 154/804 kB Progress (1): 156/804 kB Progress (1): 158/804 kB Progress (1): 160/804 kB Progress (1): 162/804 kB Progress (1): 164/804 kB Progress (1): 166/804 kB Progress (1): 168/804 kB Progress (1): 170/804 kB Progress (1): 172/804 kB Progress (1): 174/804 kB Progress (1): 176/804 kB Progress (1): 178/804 kB Progress (1): 180/804 kB Progress (1): 182/804 kB Progress (1): 184/804 kB Progress (1): 186/804 kB Progress (1): 188/804 kB Progress (1): 190/804 kB Progress (1): 193/804 kB Progress (1): 195/804 kB Progress (1): 197/804 kB Progress (1): 199/804 kB Progress (1): 201/804 kB Progress (1): 203/804 kB Progress (1): 205/804 kB Progress (1): 207/804 kB Progress (1): 209/804 kB Progress (1): 211/804 kB Progress (1): 213/804 kB Progress (1): 215/804 kB Progress (1): 217/804 kB Progress (1): 219/804 kB Progress (1): 221/804 kB Progress (1): 223/804 kB Progress (1): 225/804 kB Progress (1): 227/804 kB Progress (1): 229/804 kB Progress (1): 231/804 kB Progress (1): 233/804 kB Progress (1): 236/804 kB Progress (1): 238/804 kB Progress (1): 240/804 kB Progress (1): 242/804 kB Progress (1): 244/804 kB Progress (1): 246/804 kB Progress (1): 248/804 kB Progress (1): 250/804 kB Progress (1): 252/804 kB Progress (1): 254/804 kB Progress (1): 256/804 kB Progress (1): 258/804 kB Progress (1): 260/804 kB Progress (1): 262/804 kB Progress (1): 264/804 kB Progress (1): 266/804 kB Progress (1): 268/804 kB Progress (1): 270/804 kB Progress (1): 272/804 kB Progress (1): 274/804 kB Progress (1): 276/804 kB Progress (1): 279/804 kB Progress (1): 281/804 kB Progress (1): 283/804 kB Progress (1): 285/804 kB Progress (1): 287/804 kB Progress (1): 289/804 kB Progress (1): 291/804 kB Progress (1): 293/804 kB Progress (1): 295/804 kB Progress (1): 297/804 kB Progress (1): 299/804 kB Progress (1): 301/804 kB Progress (1): 303/804 kB Progress (1): 305/804 kB Progress (1): 307/804 kB Progress (1): 309/804 kB Progress (1): 311/804 kB Progress (1): 313/804 kB Progress (1): 315/804 kB Progress (1): 317/804 kB Progress (1): 319/804 kB Progress (1): 322/804 kB Progress (1): 324/804 kB Progress (1): 326/804 kB Progress (1): 328/804 kB Progress (1): 330/804 kB Progress (1): 332/804 kB Progress (1): 334/804 kB Progress (1): 336/804 kB Progress (1): 338/804 kB Progress (1): 340/804 kB Progress (1): 342/804 kB Progress (1): 344/804 kB Progress (1): 346/804 kB Progress (1): 348/804 kB Progress (1): 350/804 kB Progress (1): 352/804 kB Progress (1): 354/804 kB Progress (1): 356/804 kB Progress (1): 358/804 kB Progress (1): 360/804 kB Progress (1): 362/804 kB Progress (1): 365/804 kB Progress (1): 367/804 kB Progress (1): 369/804 kB Progress (1): 371/804 kB Progress (1): 373/804 kB Progress (1): 375/804 kB Progress (1): 377/804 kB Progress (1): 379/804 kB Progress (1): 381/804 kB Progress (1): 383/804 kB Progress (1): 385/804 kB Progress (1): 387/804 kB Progress (1): 389/804 kB Progress (1): 391/804 kB Progress (1): 393/804 kB Progress (1): 395/804 kB Progress (1): 397/804 kB Progress (1): 399/804 kB Progress (1): 401/804 kB Progress (1): 403/804 kB Progress (1): 406/804 kB Progress (1): 408/804 kB Progress (1): 410/804 kB Progress (1): 412/804 kB Progress (1): 414/804 kB Progress (1): 416/804 kB Progress (1): 418/804 kB Progress (1): 420/804 kB Progress (1): 422/804 kB Progress (1): 424/804 kB Progress (1): 426/804 kB Progress (1): 428/804 kB Progress (1): 430/804 kB Progress (1): 432/804 kB Progress (1): 434/804 kB Progress (1): 436/804 kB Progress (1): 438/804 kB Progress (1): 440/804 kB Progress (1): 442/804 kB Progress (1): 444/804 kB Progress (1): 446/804 kB Progress (1): 449/804 kB Progress (1): 451/804 kB Progress (1): 453/804 kB Progress (1): 455/804 kB Progress (1): 457/804 kB Progress (1): 459/804 kB Progress (1): 461/804 kB Progress (1): 463/804 kB Progress (1): 465/804 kB Progress (1): 467/804 kB Progress (1): 469/804 kB Progress (1): 471/804 kB Progress (1): 473/804 kB Progress (1): 475/804 kB Progress (1): 477/804 kB Progress (1): 479/804 kB Progress (1): 481/804 kB Progress (1): 483/804 kB Progress (1): 485/804 kB Progress (1): 487/804 kB Progress (1): 489/804 kB Progress (1): 492/804 kB Progress (1): 494/804 kB Progress (1): 496/804 kB Progress (1): 498/804 kB Progress (1): 500/804 kB Progress (1): 502/804 kB Progress (1): 504/804 kB Progress (1): 506/804 kB Progress (1): 508/804 kB Progress (1): 510/804 kB Progress (1): 512/804 kB Progress (1): 514/804 kB Progress (1): 516/804 kB Progress (1): 518/804 kB Progress (1): 520/804 kB Progress (1): 522/804 kB Progress (1): 524/804 kB Progress (1): 526/804 kB Progress (1): 528/804 kB Progress (1): 530/804 kB Progress (1): 532/804 kB Progress (1): 535/804 kB Progress (1): 537/804 kB Progress (1): 539/804 kB Progress (1): 541/804 kB Progress (1): 543/804 kB Progress (1): 545/804 kB Progress (1): 547/804 kB Progress (1): 549/804 kB Progress (1): 551/804 kB Progress (1): 553/804 kB Progress (1): 555/804 kB Progress (1): 557/804 kB Progress (1): 559/804 kB Progress (1): 561/804 kB Progress (1): 563/804 kB Progress (1): 565/804 kB Progress (1): 567/804 kB Progress (1): 569/804 kB Progress (1): 571/804 kB Progress (1): 573/804 kB Progress (1): 575/804 kB Progress (1): 578/804 kB Progress (1): 580/804 kB Progress (1): 582/804 kB Progress (1): 584/804 kB Progress (1): 586/804 kB Progress (1): 588/804 kB Progress (1): 590/804 kB Progress (1): 592/804 kB Progress (1): 594/804 kB Progress (1): 596/804 kB Progress (1): 598/804 kB Progress (1): 600/804 kB Progress (1): 602/804 kB Progress (1): 604/804 kB Progress (1): 606/804 kB Progress (1): 608/804 kB Progress (1): 610/804 kB Progress (1): 612/804 kB Progress (1): 614/804 kB Progress (1): 616/804 kB Progress (1): 618/804 kB Progress (1): 621/804 kB Progress (1): 623/804 kB Progress (1): 625/804 kB Progress (1): 627/804 kB Progress (1): 629/804 kB Progress (1): 631/804 kB Progress (1): 633/804 kB Progress (1): 635/804 kB Progress (1): 637/804 kB Progress (1): 639/804 kB Progress (1): 641/804 kB Progress (1): 643/804 kB Progress (1): 645/804 kB Progress (1): 647/804 kB Progress (1): 649/804 kB Progress (1): 651/804 kB Progress (1): 653/804 kB Progress (1): 655/804 kB Progress (1): 657/804 kB Progress (1): 659/804 kB Progress (1): 662/804 kB Progress (1): 664/804 kB Progress (1): 666/804 kB Progress (1): 668/804 kB Progress (1): 670/804 kB Progress (1): 672/804 kB Progress (1): 674/804 kB Progress (1): 676/804 kB Progress (1): 678/804 kB Progress (1): 680/804 kB Progress (1): 682/804 kB Progress (1): 684/804 kB Progress (1): 686/804 kB Progress (1): 688/804 kB Progress (1): 690/804 kB Progress (1): 692/804 kB Progress (1): 694/804 kB Progress (1): 696/804 kB Progress (1): 698/804 kB Progress (1): 700/804 kB Progress (1): 702/804 kB Progress (1): 705/804 kB Progress (1): 707/804 kB Progress (1): 709/804 kB Progress (1): 711/804 kB Progress (1): 713/804 kB Progress (1): 715/804 kB Progress (1): 717/804 kB Progress (1): 719/804 kB Progress (1): 721/804 kB Progress (1): 723/804 kB Progress (1): 725/804 kB Progress (1): 727/804 kB Progress (1): 729/804 kB Progress (1): 731/804 kB Progress (1): 733/804 kB Progress (1): 735/804 kB Progress (1): 737/804 kB Progress (1): 739/804 kB Progress (1): 741/804 kB Progress (1): 743/804 kB Progress (1): 745/804 kB Progress (1): 748/804 kB Progress (1): 750/804 kB Progress (1): 752/804 kB Progress (1): 754/804 kB Progress (1): 756/804 kB Progress (1): 758/804 kB Progress (1): 760/804 kB Progress (1): 762/804 kB Progress (1): 764/804 kB Progress (1): 766/804 kB Progress (1): 768/804 kB Progress (1): 770/804 kB Progress (1): 772/804 kB Progress (1): 774/804 kB Progress (1): 776/804 kB Progress (1): 778/804 kB Progress (1): 780/804 kB Progress (1): 782/804 kB Progress (1): 784/804 kB Progress (1): 786/804 kB Progress (1): 788/804 kB Progress (1): 791/804 kB Progress (1): 793/804 kB Progress (1): 795/804 kB Progress (1): 797/804 kB Progress (1): 799/804 kB Progress (1): 801/804 kB Progress (1): 803/804 kB Progress (1): 804 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-javadoc.jar (804 kB at 721 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar Progress (1): 2.0/3.0 kB Progress (1): 3.0 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar (3.0 kB at 4.9 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar Progress (1): 2.0/109 kB Progress (1): 4.1/109 kB Progress (1): 6.1/109 kB Progress (1): 8.2/109 kB Progress (1): 10/109 kB Progress (1): 12/109 kB Progress (1): 14/109 kB Progress (1): 16/109 kB Progress (1): 18/109 kB Progress (1): 20/109 kB Progress (1): 23/109 kB Progress (1): 25/109 kB Progress (1): 27/109 kB Progress (1): 29/109 kB Progress (1): 31/109 kB Progress (1): 33/109 kB Progress (1): 35/109 kB Progress (1): 37/109 kB Progress (1): 39/109 kB Progress (1): 41/109 kB Progress (1): 43/109 kB Progress (1): 45/109 kB Progress (1): 47/109 kB Progress (1): 49/109 kB Progress (1): 51/109 kB Progress (1): 53/109 kB Progress (1): 55/109 kB Progress (1): 57/109 kB Progress (1): 59/109 kB Progress (1): 61/109 kB Progress (1): 63/109 kB Progress (1): 66/109 kB Progress (1): 68/109 kB Progress (1): 70/109 kB Progress (1): 72/109 kB Progress (1): 74/109 kB Progress (1): 76/109 kB Progress (1): 78/109 kB Progress (1): 80/109 kB Progress (1): 82/109 kB Progress (1): 84/109 kB Progress (1): 86/109 kB Progress (1): 88/109 kB Progress (1): 90/109 kB Progress (1): 92/109 kB Progress (1): 94/109 kB Progress (1): 96/109 kB Progress (1): 98/109 kB Progress (1): 100/109 kB Progress (1): 102/109 kB Progress (1): 104/109 kB Progress (1): 106/109 kB Progress (1): 109/109 kB Progress (1): 109 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar (109 kB at 166 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.pom.asc (473 B at 2.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar Progress (1): 2.0/3.2 kB Progress (1): 3.2 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar (3.2 kB at 4.9 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom.asc (473 B at 2.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-archetype-application/1.14.3/appng-archetype-application-1.14.3.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom Progress (1): 2.0/31 kB Progress (1): 4.1/31 kB Progress (1): 6.1/31 kB Progress (1): 8.2/31 kB Progress (1): 10/31 kB Progress (1): 12/31 kB Progress (1): 14/31 kB Progress (1): 16/31 kB Progress (1): 18/31 kB Progress (1): 20/31 kB Progress (1): 23/31 kB Progress (1): 25/31 kB Progress (1): 27/31 kB Progress (1): 29/31 kB Progress (1): 31/31 kB Progress (1): 31 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom (31 kB at 50 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/maven-metadata.xml Progress (1): 303 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/maven-metadata.xml (303 B at 349 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar Progress (1): 2.0/2.7 kB Progress (1): 2.7 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar (2.7 kB at 4.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-sources.jar.asc (473 B at 1.9 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar Progress (1): 2.0/154 kB Progress (1): 4.1/154 kB Progress (1): 6.1/154 kB Progress (1): 8.2/154 kB Progress (1): 10/154 kB Progress (1): 12/154 kB Progress (1): 14/154 kB Progress (1): 16/154 kB Progress (1): 18/154 kB Progress (1): 20/154 kB Progress (1): 23/154 kB Progress (1): 25/154 kB Progress (1): 27/154 kB Progress (1): 29/154 kB Progress (1): 31/154 kB Progress (1): 33/154 kB Progress (1): 35/154 kB Progress (1): 37/154 kB Progress (1): 39/154 kB Progress (1): 41/154 kB Progress (1): 43/154 kB Progress (1): 45/154 kB Progress (1): 47/154 kB Progress (1): 49/154 kB Progress (1): 51/154 kB Progress (1): 53/154 kB Progress (1): 55/154 kB Progress (1): 57/154 kB Progress (1): 59/154 kB Progress (1): 61/154 kB Progress (1): 63/154 kB Progress (1): 66/154 kB Progress (1): 68/154 kB Progress (1): 70/154 kB Progress (1): 72/154 kB Progress (1): 74/154 kB Progress (1): 76/154 kB Progress (1): 78/154 kB Progress (1): 80/154 kB Progress (1): 82/154 kB Progress (1): 84/154 kB Progress (1): 86/154 kB Progress (1): 88/154 kB Progress (1): 90/154 kB Progress (1): 92/154 kB Progress (1): 94/154 kB Progress (1): 96/154 kB Progress (1): 98/154 kB Progress (1): 100/154 kB Progress (1): 102/154 kB Progress (1): 104/154 kB Progress (1): 106/154 kB Progress (1): 109/154 kB Progress (1): 111/154 kB Progress (1): 113/154 kB Progress (1): 115/154 kB Progress (1): 117/154 kB Progress (1): 119/154 kB Progress (1): 121/154 kB Progress (1): 123/154 kB Progress (1): 125/154 kB Progress (1): 127/154 kB Progress (1): 129/154 kB Progress (1): 131/154 kB Progress (1): 133/154 kB Progress (1): 135/154 kB Progress (1): 137/154 kB Progress (1): 139/154 kB Progress (1): 141/154 kB Progress (1): 143/154 kB Progress (1): 145/154 kB Progress (1): 147/154 kB Progress (1): 150/154 kB Progress (1): 152/154 kB Progress (1): 154/154 kB Progress (1): 154 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar (154 kB at 172 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar Progress (1): 2.0/40 kB Progress (1): 4.1/40 kB Progress (1): 6.1/40 kB Progress (1): 8.2/40 kB Progress (1): 10/40 kB Progress (1): 12/40 kB Progress (1): 14/40 kB Progress (1): 16/40 kB Progress (1): 18/40 kB Progress (1): 20/40 kB Progress (1): 23/40 kB Progress (1): 25/40 kB Progress (1): 27/40 kB Progress (1): 29/40 kB Progress (1): 31/40 kB Progress (1): 33/40 kB Progress (1): 35/40 kB Progress (1): 37/40 kB Progress (1): 39/40 kB Progress (1): 40 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-sources.jar (40 kB at 62 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar.asc (473 B at 2.0 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar Progress (1): 2.0/2.7 kB Progress (1): 2.7 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar (2.7 kB at 3.9 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.pom.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96 MB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip (96 MB at 15 MB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-parent/1.14.3/appng-parent-1.14.3.pom.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar Progress (1): 2.0/362 kB Progress (1): 4.1/362 kB Progress (1): 6.1/362 kB Progress (1): 8.2/362 kB Progress (1): 10/362 kB Progress (1): 12/362 kB Progress (1): 14/362 kB Progress (1): 16/362 kB Progress (1): 18/362 kB Progress (1): 20/362 kB Progress (1): 23/362 kB Progress (1): 25/362 kB Progress (1): 27/362 kB Progress (1): 29/362 kB Progress (1): 31/362 kB Progress (1): 33/362 kB Progress (1): 35/362 kB Progress (1): 37/362 kB Progress (1): 39/362 kB Progress (1): 41/362 kB Progress (1): 43/362 kB Progress (1): 45/362 kB Progress (1): 47/362 kB Progress (1): 49/362 kB Progress (1): 51/362 kB Progress (1): 53/362 kB Progress (1): 55/362 kB Progress (1): 57/362 kB Progress (1): 59/362 kB Progress (1): 61/362 kB Progress (1): 63/362 kB Progress (1): 66/362 kB Progress (1): 68/362 kB Progress (1): 70/362 kB Progress (1): 72/362 kB Progress (1): 74/362 kB Progress (1): 76/362 kB Progress (1): 78/362 kB Progress (1): 80/362 kB Progress (1): 82/362 kB Progress (1): 84/362 kB Progress (1): 86/362 kB Progress (1): 88/362 kB Progress (1): 90/362 kB Progress (1): 92/362 kB Progress (1): 94/362 kB Progress (1): 96/362 kB Progress (1): 98/362 kB Progress (1): 100/362 kB Progress (1): 102/362 kB Progress (1): 104/362 kB Progress (1): 106/362 kB Progress (1): 109/362 kB Progress (1): 111/362 kB Progress (1): 113/362 kB Progress (1): 115/362 kB Progress (1): 117/362 kB Progress (1): 119/362 kB Progress (1): 121/362 kB Progress (1): 123/362 kB Progress (1): 125/362 kB Progress (1): 127/362 kB Progress (1): 129/362 kB Progress (1): 131/362 kB Progress (1): 133/362 kB Progress (1): 135/362 kB Progress (1): 137/362 kB Progress (1): 139/362 kB Progress (1): 141/362 kB Progress (1): 143/362 kB Progress (1): 145/362 kB Progress (1): 147/362 kB Progress (1): 150/362 kB Progress (1): 152/362 kB Progress (1): 154/362 kB Progress (1): 156/362 kB Progress (1): 158/362 kB Progress (1): 160/362 kB Progress (1): 162/362 kB Progress (1): 164/362 kB Progress (1): 166/362 kB Progress (1): 168/362 kB Progress (1): 170/362 kB Progress (1): 172/362 kB Progress (1): 174/362 kB Progress (1): 176/362 kB Progress (1): 178/362 kB Progress (1): 180/362 kB Progress (1): 182/362 kB Progress (1): 184/362 kB Progress (1): 186/362 kB Progress (1): 188/362 kB Progress (1): 190/362 kB Progress (1): 193/362 kB Progress (1): 195/362 kB Progress (1): 197/362 kB Progress (1): 199/362 kB Progress (1): 201/362 kB Progress (1): 203/362 kB Progress (1): 205/362 kB Progress (1): 207/362 kB Progress (1): 209/362 kB Progress (1): 211/362 kB Progress (1): 213/362 kB Progress (1): 215/362 kB Progress (1): 217/362 kB Progress (1): 219/362 kB Progress (1): 221/362 kB Progress (1): 223/362 kB Progress (1): 225/362 kB Progress (1): 227/362 kB Progress (1): 229/362 kB Progress (1): 231/362 kB Progress (1): 233/362 kB Progress (1): 236/362 kB Progress (1): 238/362 kB Progress (1): 240/362 kB Progress (1): 242/362 kB Progress (1): 244/362 kB Progress (1): 246/362 kB Progress (1): 248/362 kB Progress (1): 250/362 kB Progress (1): 252/362 kB Progress (1): 254/362 kB Progress (1): 256/362 kB Progress (1): 258/362 kB Progress (1): 260/362 kB Progress (1): 262/362 kB Progress (1): 264/362 kB Progress (1): 266/362 kB Progress (1): 268/362 kB Progress (1): 270/362 kB Progress (1): 272/362 kB Progress (1): 274/362 kB Progress (1): 276/362 kB Progress (1): 279/362 kB Progress (1): 281/362 kB Progress (1): 283/362 kB Progress (1): 285/362 kB Progress (1): 287/362 kB Progress (1): 289/362 kB Progress (1): 291/362 kB Progress (1): 293/362 kB Progress (1): 295/362 kB Progress (1): 297/362 kB Progress (1): 299/362 kB Progress (1): 301/362 kB Progress (1): 303/362 kB Progress (1): 305/362 kB Progress (1): 307/362 kB Progress (1): 309/362 kB Progress (1): 311/362 kB Progress (1): 313/362 kB Progress (1): 315/362 kB Progress (1): 317/362 kB Progress (1): 319/362 kB Progress (1): 322/362 kB Progress (1): 324/362 kB Progress (1): 326/362 kB Progress (1): 328/362 kB Progress (1): 330/362 kB Progress (1): 332/362 kB Progress (1): 334/362 kB Progress (1): 336/362 kB Progress (1): 338/362 kB Progress (1): 340/362 kB Progress (1): 342/362 kB Progress (1): 344/362 kB Progress (1): 346/362 kB Progress (1): 348/362 kB Progress (1): 350/362 kB Progress (1): 352/362 kB Progress (1): 354/362 kB Progress (1): 356/362 kB Progress (1): 358/362 kB Progress (1): 360/362 kB Progress (1): 362 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar (362 kB at 357 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar Progress (1): 2.0/197 kB Progress (1): 4.1/197 kB Progress (1): 6.1/197 kB Progress (1): 8.2/197 kB Progress (1): 10/197 kB Progress (1): 12/197 kB Progress (1): 14/197 kB Progress (1): 16/197 kB Progress (1): 18/197 kB Progress (1): 20/197 kB Progress (1): 23/197 kB Progress (1): 25/197 kB Progress (1): 27/197 kB Progress (1): 29/197 kB Progress (1): 31/197 kB Progress (1): 33/197 kB Progress (1): 35/197 kB Progress (1): 37/197 kB Progress (1): 39/197 kB Progress (1): 41/197 kB Progress (1): 43/197 kB Progress (1): 45/197 kB Progress (1): 47/197 kB Progress (1): 49/197 kB Progress (1): 51/197 kB Progress (1): 53/197 kB Progress (1): 55/197 kB Progress (1): 57/197 kB Progress (1): 59/197 kB Progress (1): 61/197 kB Progress (1): 63/197 kB Progress (1): 66/197 kB Progress (1): 68/197 kB Progress (1): 70/197 kB Progress (1): 72/197 kB Progress (1): 74/197 kB Progress (1): 76/197 kB Progress (1): 78/197 kB Progress (1): 80/197 kB Progress (1): 82/197 kB Progress (1): 84/197 kB Progress (1): 86/197 kB Progress (1): 88/197 kB Progress (1): 90/197 kB Progress (1): 92/197 kB Progress (1): 94/197 kB Progress (1): 96/197 kB Progress (1): 98/197 kB Progress (1): 100/197 kB Progress (1): 102/197 kB Progress (1): 104/197 kB Progress (1): 106/197 kB Progress (1): 109/197 kB Progress (1): 111/197 kB Progress (1): 113/197 kB Progress (1): 115/197 kB Progress (1): 117/197 kB Progress (1): 119/197 kB Progress (1): 121/197 kB Progress (1): 123/197 kB Progress (1): 125/197 kB Progress (1): 127/197 kB Progress (1): 129/197 kB Progress (1): 131/197 kB Progress (1): 133/197 kB Progress (1): 135/197 kB Progress (1): 137/197 kB Progress (1): 139/197 kB Progress (1): 141/197 kB Progress (1): 143/197 kB Progress (1): 145/197 kB Progress (1): 147/197 kB Progress (1): 150/197 kB Progress (1): 152/197 kB Progress (1): 154/197 kB Progress (1): 156/197 kB Progress (1): 158/197 kB Progress (1): 160/197 kB Progress (1): 162/197 kB Progress (1): 164/197 kB Progress (1): 166/197 kB Progress (1): 168/197 kB Progress (1): 170/197 kB Progress (1): 172/197 kB Progress (1): 174/197 kB Progress (1): 176/197 kB Progress (1): 178/197 kB Progress (1): 180/197 kB Progress (1): 182/197 kB Progress (1): 184/197 kB Progress (1): 186/197 kB Progress (1): 188/197 kB Progress (1): 190/197 kB Progress (1): 193/197 kB Progress (1): 195/197 kB Progress (1): 197 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-javadoc.jar (197 kB at 307 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom.asc (473 B at 2.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar Progress (1): 2.0/3.0 kB Progress (1): 3.0 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar (3.0 kB at 4.9 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom Progress (1): 1.0 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.pom (1.0 kB at 1.6 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar Progress (1): 2.0/27 kB Progress (1): 4.1/27 kB Progress (1): 6.1/27 kB Progress (1): 8.2/27 kB Progress (1): 10/27 kB Progress (1): 12/27 kB Progress (1): 14/27 kB Progress (1): 16/27 kB Progress (1): 18/27 kB Progress (1): 20/27 kB Progress (1): 23/27 kB Progress (1): 25/27 kB Progress (1): 27/27 kB Progress (1): 27 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-javadoc.jar (27 kB at 42 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar Progress (1): 2.0/33 kB Progress (1): 4.1/33 kB Progress (1): 6.1/33 kB Progress (1): 8.2/33 kB Progress (1): 10/33 kB Progress (1): 12/33 kB Progress (1): 14/33 kB Progress (1): 16/33 kB Progress (1): 18/33 kB Progress (1): 20/33 kB Progress (1): 23/33 kB Progress (1): 25/33 kB Progress (1): 27/33 kB Progress (1): 29/33 kB Progress (1): 31/33 kB Progress (1): 33/33 kB Progress (1): 33 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.jar (33 kB at 52 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom Progress (1): 2.0/9.3 kB Progress (1): 4.1/9.3 kB Progress (1): 6.1/9.3 kB Progress (1): 8.2/9.3 kB Progress (1): 9.3 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom (9.3 kB at 15 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3.jar.asc (473 B at 2.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar Progress (1): 2.0/34 kB Progress (1): 4.1/34 kB Progress (1): 6.1/34 kB Progress (1): 8.2/34 kB Progress (1): 10/34 kB Progress (1): 12/34 kB Progress (1): 14/34 kB Progress (1): 16/34 kB Progress (1): 18/34 kB Progress (1): 20/34 kB Progress (1): 23/34 kB Progress (1): 25/34 kB Progress (1): 27/34 kB Progress (1): 29/34 kB Progress (1): 31/34 kB Progress (1): 33/34 kB Progress (1): 34 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar (34 kB at 53 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3-sources.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom Progress (1): 2.0/41 kB Progress (1): 4.1/41 kB Progress (1): 6.1/41 kB Progress (1): 8.2/41 kB Progress (1): 10/41 kB Progress (1): 12/41 kB Progress (1): 14/41 kB Progress (1): 16/41 kB Progress (1): 18/41 kB Progress (1): 20/41 kB Progress (1): 23/41 kB Progress (1): 25/41 kB Progress (1): 27/41 kB Progress (1): 29/41 kB Progress (1): 31/41 kB Progress (1): 33/41 kB Progress (1): 35/41 kB Progress (1): 37/41 kB Progress (1): 39/41 kB Progress (1): 41/41 kB Progress (1): 41 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom (41 kB at 67 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/maven-metadata.xml Progress (1): 312 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/maven-metadata.xml (312 B at 385 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar Progress (1): 2.0/54 kB Progress (1): 4.1/54 kB Progress (1): 6.1/54 kB Progress (1): 8.2/54 kB Progress (1): 10/54 kB Progress (1): 12/54 kB Progress (1): 14/54 kB Progress (1): 16/54 kB Progress (1): 18/54 kB Progress (1): 20/54 kB Progress (1): 23/54 kB Progress (1): 25/54 kB Progress (1): 27/54 kB Progress (1): 29/54 kB Progress (1): 31/54 kB Progress (1): 33/54 kB Progress (1): 35/54 kB Progress (1): 37/54 kB Progress (1): 39/54 kB Progress (1): 41/54 kB Progress (1): 43/54 kB Progress (1): 45/54 kB Progress (1): 47/54 kB Progress (1): 49/54 kB Progress (1): 51/54 kB Progress (1): 53/54 kB Progress (1): 54 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar (54 kB at 64 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom Progress (1): 2.0/2.9 kB Progress (1): 2.9 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom (2.9 kB at 4.7 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-bom/1.14.3/appng-application-bom-1.14.3.pom.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar.asc (473 B at 2.0 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar Progress (1): 2.0/95 kB Progress (1): 4.1/95 kB Progress (1): 6.1/95 kB Progress (1): 8.2/95 kB Progress (1): 10/95 kB Progress (1): 12/95 kB Progress (1): 14/95 kB Progress (1): 16/95 kB Progress (1): 18/95 kB Progress (1): 20/95 kB Progress (1): 23/95 kB Progress (1): 25/95 kB Progress (1): 27/95 kB Progress (1): 29/95 kB Progress (1): 31/95 kB Progress (1): 33/95 kB Progress (1): 35/95 kB Progress (1): 37/95 kB Progress (1): 39/95 kB Progress (1): 41/95 kB Progress (1): 43/95 kB Progress (1): 45/95 kB Progress (1): 47/95 kB Progress (1): 49/95 kB Progress (1): 51/95 kB Progress (1): 53/95 kB Progress (1): 55/95 kB Progress (1): 57/95 kB Progress (1): 59/95 kB Progress (1): 61/95 kB Progress (1): 63/95 kB Progress (1): 66/95 kB Progress (1): 68/95 kB Progress (1): 70/95 kB Progress (1): 72/95 kB Progress (1): 74/95 kB Progress (1): 76/95 kB Progress (1): 78/95 kB Progress (1): 80/95 kB Progress (1): 82/95 kB Progress (1): 84/95 kB Progress (1): 86/95 kB Progress (1): 88/95 kB Progress (1): 90/95 kB Progress (1): 92/95 kB Progress (1): 94/95 kB Progress (1): 95 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.jar (95 kB at 124 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom Progress (1): 1.8 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3.pom (1.8 kB at 2.8 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar Progress (1): 2.0/209 kB Progress (1): 4.1/209 kB Progress (1): 6.1/209 kB Progress (1): 8.2/209 kB Progress (1): 10/209 kB Progress (1): 12/209 kB Progress (1): 14/209 kB Progress (1): 16/209 kB Progress (1): 18/209 kB Progress (1): 20/209 kB Progress (1): 23/209 kB Progress (1): 25/209 kB Progress (1): 27/209 kB Progress (1): 29/209 kB Progress (1): 31/209 kB Progress (1): 33/209 kB Progress (1): 35/209 kB Progress (1): 37/209 kB Progress (1): 39/209 kB Progress (1): 41/209 kB Progress (1): 43/209 kB Progress (1): 45/209 kB Progress (1): 47/209 kB Progress (1): 49/209 kB Progress (1): 51/209 kB Progress (1): 53/209 kB Progress (1): 55/209 kB Progress (1): 57/209 kB Progress (1): 59/209 kB Progress (1): 61/209 kB Progress (1): 63/209 kB Progress (1): 66/209 kB Progress (1): 68/209 kB Progress (1): 70/209 kB Progress (1): 72/209 kB Progress (1): 74/209 kB Progress (1): 76/209 kB Progress (1): 78/209 kB Progress (1): 80/209 kB Progress (1): 82/209 kB Progress (1): 84/209 kB Progress (1): 86/209 kB Progress (1): 88/209 kB Progress (1): 90/209 kB Progress (1): 92/209 kB Progress (1): 94/209 kB Progress (1): 96/209 kB Progress (1): 98/209 kB Progress (1): 100/209 kB Progress (1): 102/209 kB Progress (1): 104/209 kB Progress (1): 106/209 kB Progress (1): 109/209 kB Progress (1): 111/209 kB Progress (1): 113/209 kB Progress (1): 115/209 kB Progress (1): 117/209 kB Progress (1): 119/209 kB Progress (1): 121/209 kB Progress (1): 123/209 kB Progress (1): 125/209 kB Progress (1): 127/209 kB Progress (1): 129/209 kB Progress (1): 131/209 kB Progress (1): 133/209 kB Progress (1): 135/209 kB Progress (1): 137/209 kB Progress (1): 139/209 kB Progress (1): 141/209 kB Progress (1): 143/209 kB Progress (1): 145/209 kB Progress (1): 147/209 kB Progress (1): 150/209 kB Progress (1): 152/209 kB Progress (1): 154/209 kB Progress (1): 156/209 kB Progress (1): 158/209 kB Progress (1): 160/209 kB Progress (1): 162/209 kB Progress (1): 164/209 kB Progress (1): 166/209 kB Progress (1): 168/209 kB Progress (1): 170/209 kB Progress (1): 172/209 kB Progress (1): 174/209 kB Progress (1): 176/209 kB Progress (1): 178/209 kB Progress (1): 180/209 kB Progress (1): 182/209 kB Progress (1): 184/209 kB Progress (1): 186/209 kB Progress (1): 188/209 kB Progress (1): 190/209 kB Progress (1): 193/209 kB Progress (1): 195/209 kB Progress (1): 197/209 kB Progress (1): 199/209 kB Progress (1): 201/209 kB Progress (1): 203/209 kB Progress (1): 205/209 kB Progress (1): 207/209 kB Progress (1): 209/209 kB Progress (1): 209 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar (209 kB at 275 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar Progress (1): 2.0/153 kB Progress (1): 4.1/153 kB Progress (1): 6.1/153 kB Progress (1): 8.2/153 kB Progress (1): 10/153 kB Progress (1): 12/153 kB Progress (1): 14/153 kB Progress (1): 16/153 kB Progress (1): 18/153 kB Progress (1): 20/153 kB Progress (1): 23/153 kB Progress (1): 25/153 kB Progress (1): 27/153 kB Progress (1): 29/153 kB Progress (1): 31/153 kB Progress (1): 33/153 kB Progress (1): 35/153 kB Progress (1): 37/153 kB Progress (1): 39/153 kB Progress (1): 41/153 kB Progress (1): 43/153 kB Progress (1): 45/153 kB Progress (1): 47/153 kB Progress (1): 49/153 kB Progress (1): 51/153 kB Progress (1): 53/153 kB Progress (1): 55/153 kB Progress (1): 57/153 kB Progress (1): 59/153 kB Progress (1): 61/153 kB Progress (1): 63/153 kB Progress (1): 66/153 kB Progress (1): 68/153 kB Progress (1): 70/153 kB Progress (1): 72/153 kB Progress (1): 74/153 kB Progress (1): 76/153 kB Progress (1): 78/153 kB Progress (1): 80/153 kB Progress (1): 82/153 kB Progress (1): 84/153 kB Progress (1): 86/153 kB Progress (1): 88/153 kB Progress (1): 90/153 kB Progress (1): 92/153 kB Progress (1): 94/153 kB Progress (1): 96/153 kB Progress (1): 98/153 kB Progress (1): 100/153 kB Progress (1): 102/153 kB Progress (1): 104/153 kB Progress (1): 106/153 kB Progress (1): 109/153 kB Progress (1): 111/153 kB Progress (1): 113/153 kB Progress (1): 115/153 kB Progress (1): 117/153 kB Progress (1): 119/153 kB Progress (1): 121/153 kB Progress (1): 123/153 kB Progress (1): 125/153 kB Progress (1): 127/153 kB Progress (1): 129/153 kB Progress (1): 131/153 kB Progress (1): 133/153 kB Progress (1): 135/153 kB Progress (1): 137/153 kB Progress (1): 139/153 kB Progress (1): 141/153 kB Progress (1): 143/153 kB Progress (1): 145/153 kB Progress (1): 147/153 kB Progress (1): 150/153 kB Progress (1): 152/153 kB Progress (1): 153 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.jar (153 kB at 216 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom Progress (1): 2.0/3.6 kB Progress (1): 3.6 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3.pom (3.6 kB at 5.9 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.war Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.1/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.2/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.3/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.4/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.5/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.6/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.7/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.8/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 0.9/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.0/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.1/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.2/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.3/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.4/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.5/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.6/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.7/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.8/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 1.9/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.0/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.1/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.2/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.3/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.4/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.5/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.6/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.7/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.8/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 2.9/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.0/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.1/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.2/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.3/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.4/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.5/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.6/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.7/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.8/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 3.9/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.0/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.1/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.2/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.3/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.4/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.5/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.6/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.7/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.8/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 4.9/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.0/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.1/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.2/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.3/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.4/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.5/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.6/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.7/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.8/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 5.9/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.0/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.1/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.2/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.3/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.4/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.5/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.6/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.7/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.8/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 6.9/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.0/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.1/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.2/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.3/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.4/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.5/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.6/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.7/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.8/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 7.9/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.0/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.1/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.2/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.3/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.4/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.5/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.6/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.7/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.8/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 8.9/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.0/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.1/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.2/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.3/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.4/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.5/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.6/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.7/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.8/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 9.9/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10.0/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 10/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 11/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 12/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 13/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 14/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 15/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 16/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 17/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 18/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 19/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 20/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 21/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 22/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 23/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 24/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 25/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 26/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 27/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 28/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 29/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 30/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 31/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 32/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 33/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 34/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 35/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 36/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 37/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 38/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 39/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 40/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 41/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 42/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 43/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 44/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 45/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 46/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 47/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 48/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 49/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 50/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 51/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 52/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 53/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 54/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 55/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 56/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 57/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 58/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 59/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 60/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 61/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 62/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 63/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 64/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 65/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 66/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 67/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 68/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 69/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 70/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 71/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 72/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 73/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 74/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 75/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 76/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 77/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 78/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 79/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 80/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 81/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 82/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 83/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 84/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 85/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 86/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 87/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 88/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 89/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 90/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 91/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 92/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 93/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 94/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 95/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96/96 MB Progress (1): 96 MB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.war (96 MB at 15 MB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom Progress (1): 2.0/7.4 kB Progress (1): 4.1/7.4 kB Progress (1): 6.1/7.4 kB Progress (1): 7.4 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.pom (7.4 kB at 12 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-parent/1.14.3/appng-template-parent-1.14.3.pom.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar Progress (1): 2.0/255 kB Progress (1): 4.1/255 kB Progress (1): 6.1/255 kB Progress (1): 8.2/255 kB Progress (1): 10/255 kB Progress (1): 12/255 kB Progress (1): 14/255 kB Progress (1): 16/255 kB Progress (1): 18/255 kB Progress (1): 20/255 kB Progress (1): 23/255 kB Progress (1): 25/255 kB Progress (1): 27/255 kB Progress (1): 29/255 kB Progress (1): 31/255 kB Progress (1): 33/255 kB Progress (1): 35/255 kB Progress (1): 37/255 kB Progress (1): 39/255 kB Progress (1): 41/255 kB Progress (1): 43/255 kB Progress (1): 45/255 kB Progress (1): 47/255 kB Progress (1): 49/255 kB Progress (1): 51/255 kB Progress (1): 53/255 kB Progress (1): 55/255 kB Progress (1): 57/255 kB Progress (1): 59/255 kB Progress (1): 61/255 kB Progress (1): 63/255 kB Progress (1): 66/255 kB Progress (1): 68/255 kB Progress (1): 70/255 kB Progress (1): 72/255 kB Progress (1): 74/255 kB Progress (1): 76/255 kB Progress (1): 78/255 kB Progress (1): 80/255 kB Progress (1): 82/255 kB Progress (1): 84/255 kB Progress (1): 86/255 kB Progress (1): 88/255 kB Progress (1): 90/255 kB Progress (1): 92/255 kB Progress (1): 94/255 kB Progress (1): 96/255 kB Progress (1): 98/255 kB Progress (1): 100/255 kB Progress (1): 102/255 kB Progress (1): 104/255 kB Progress (1): 106/255 kB Progress (1): 109/255 kB Progress (1): 111/255 kB Progress (1): 113/255 kB Progress (1): 115/255 kB Progress (1): 117/255 kB Progress (1): 119/255 kB Progress (1): 121/255 kB Progress (1): 123/255 kB Progress (1): 125/255 kB Progress (1): 127/255 kB Progress (1): 129/255 kB Progress (1): 131/255 kB Progress (1): 133/255 kB Progress (1): 135/255 kB Progress (1): 137/255 kB Progress (1): 139/255 kB Progress (1): 141/255 kB Progress (1): 143/255 kB Progress (1): 145/255 kB Progress (1): 147/255 kB Progress (1): 150/255 kB Progress (1): 152/255 kB Progress (1): 154/255 kB Progress (1): 156/255 kB Progress (1): 158/255 kB Progress (1): 160/255 kB Progress (1): 162/255 kB Progress (1): 164/255 kB Progress (1): 166/255 kB Progress (1): 168/255 kB Progress (1): 170/255 kB Progress (1): 172/255 kB Progress (1): 174/255 kB Progress (1): 176/255 kB Progress (1): 178/255 kB Progress (1): 180/255 kB Progress (1): 182/255 kB Progress (1): 184/255 kB Progress (1): 186/255 kB Progress (1): 188/255 kB Progress (1): 190/255 kB Progress (1): 193/255 kB Progress (1): 195/255 kB Progress (1): 197/255 kB Progress (1): 199/255 kB Progress (1): 201/255 kB Progress (1): 203/255 kB Progress (1): 205/255 kB Progress (1): 207/255 kB Progress (1): 209/255 kB Progress (1): 211/255 kB Progress (1): 213/255 kB Progress (1): 215/255 kB Progress (1): 217/255 kB Progress (1): 219/255 kB Progress (1): 221/255 kB Progress (1): 223/255 kB Progress (1): 225/255 kB Progress (1): 227/255 kB Progress (1): 229/255 kB Progress (1): 231/255 kB Progress (1): 233/255 kB Progress (1): 236/255 kB Progress (1): 238/255 kB Progress (1): 240/255 kB Progress (1): 242/255 kB Progress (1): 244/255 kB Progress (1): 246/255 kB Progress (1): 248/255 kB Progress (1): 250/255 kB Progress (1): 252/255 kB Progress (1): 254/255 kB Progress (1): 255 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar (255 kB at 263 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar Progress (1): 1.5 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.jar (1.5 kB at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom Progress (1): 871 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3.pom (871 B at 1.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-sources.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom Progress (1): 2.0/9.6 kB Progress (1): 4.1/9.6 kB Progress (1): 6.1/9.6 kB Progress (1): 8.2/9.6 kB Progress (1): 9.6 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-parent/1.14.3/appng-application-parent-1.14.3.pom (9.6 kB at 15 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar Progress (1): 2.0/15 kB Progress (1): 4.1/15 kB Progress (1): 6.1/15 kB Progress (1): 8.2/15 kB Progress (1): 10/15 kB Progress (1): 12/15 kB Progress (1): 14/15 kB Progress (1): 15 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar (15 kB at 24 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom Progress (1): 1.8 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.pom (1.8 kB at 2.8 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.pom.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar Progress (1): 2.0/54 kB Progress (1): 4.1/54 kB Progress (1): 6.1/54 kB Progress (1): 8.2/54 kB Progress (1): 10/54 kB Progress (1): 12/54 kB Progress (1): 14/54 kB Progress (1): 16/54 kB Progress (1): 18/54 kB Progress (1): 20/54 kB Progress (1): 23/54 kB Progress (1): 25/54 kB Progress (1): 27/54 kB Progress (1): 29/54 kB Progress (1): 31/54 kB Progress (1): 33/54 kB Progress (1): 35/54 kB Progress (1): 37/54 kB Progress (1): 39/54 kB Progress (1): 41/54 kB Progress (1): 43/54 kB Progress (1): 45/54 kB Progress (1): 47/54 kB Progress (1): 49/54 kB Progress (1): 51/54 kB Progress (1): 53/54 kB Progress (1): 54 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.jar (54 kB at 86 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom Progress (1): 2.0/2.8 kB Progress (1): 2.8 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3.pom (2.8 kB at 4.4 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar Progress (1): 2.0/320 kB Progress (1): 4.1/320 kB Progress (1): 6.1/320 kB Progress (1): 8.2/320 kB Progress (1): 10/320 kB Progress (1): 12/320 kB Progress (1): 14/320 kB Progress (1): 16/320 kB Progress (1): 18/320 kB Progress (1): 20/320 kB Progress (1): 23/320 kB Progress (1): 25/320 kB Progress (1): 27/320 kB Progress (1): 29/320 kB Progress (1): 31/320 kB Progress (1): 33/320 kB Progress (1): 35/320 kB Progress (1): 37/320 kB Progress (1): 39/320 kB Progress (1): 41/320 kB Progress (1): 43/320 kB Progress (1): 45/320 kB Progress (1): 47/320 kB Progress (1): 49/320 kB Progress (1): 51/320 kB Progress (1): 53/320 kB Progress (1): 55/320 kB Progress (1): 57/320 kB Progress (1): 59/320 kB Progress (1): 61/320 kB Progress (1): 63/320 kB Progress (1): 66/320 kB Progress (1): 68/320 kB Progress (1): 70/320 kB Progress (1): 72/320 kB Progress (1): 74/320 kB Progress (1): 76/320 kB Progress (1): 78/320 kB Progress (1): 80/320 kB Progress (1): 82/320 kB Progress (1): 84/320 kB Progress (1): 86/320 kB Progress (1): 88/320 kB Progress (1): 90/320 kB Progress (1): 92/320 kB Progress (1): 94/320 kB Progress (1): 96/320 kB Progress (1): 98/320 kB Progress (1): 100/320 kB Progress (1): 102/320 kB Progress (1): 104/320 kB Progress (1): 106/320 kB Progress (1): 109/320 kB Progress (1): 111/320 kB Progress (1): 113/320 kB Progress (1): 115/320 kB Progress (1): 117/320 kB Progress (1): 119/320 kB Progress (1): 121/320 kB Progress (1): 123/320 kB Progress (1): 125/320 kB Progress (1): 127/320 kB Progress (1): 129/320 kB Progress (1): 131/320 kB Progress (1): 133/320 kB Progress (1): 135/320 kB Progress (1): 137/320 kB Progress (1): 139/320 kB Progress (1): 141/320 kB Progress (1): 143/320 kB Progress (1): 145/320 kB Progress (1): 147/320 kB Progress (1): 150/320 kB Progress (1): 152/320 kB Progress (1): 154/320 kB Progress (1): 156/320 kB Progress (1): 158/320 kB Progress (1): 160/320 kB Progress (1): 162/320 kB Progress (1): 164/320 kB Progress (1): 166/320 kB Progress (1): 168/320 kB Progress (1): 170/320 kB Progress (1): 172/320 kB Progress (1): 174/320 kB Progress (1): 176/320 kB Progress (1): 178/320 kB Progress (1): 180/320 kB Progress (1): 182/320 kB Progress (1): 184/320 kB Progress (1): 186/320 kB Progress (1): 188/320 kB Progress (1): 190/320 kB Progress (1): 193/320 kB Progress (1): 195/320 kB Progress (1): 197/320 kB Progress (1): 199/320 kB Progress (1): 201/320 kB Progress (1): 203/320 kB Progress (1): 205/320 kB Progress (1): 207/320 kB Progress (1): 209/320 kB Progress (1): 211/320 kB Progress (1): 213/320 kB Progress (1): 215/320 kB Progress (1): 217/320 kB Progress (1): 219/320 kB Progress (1): 221/320 kB Progress (1): 223/320 kB Progress (1): 225/320 kB Progress (1): 227/320 kB Progress (1): 229/320 kB Progress (1): 231/320 kB Progress (1): 233/320 kB Progress (1): 236/320 kB Progress (1): 238/320 kB Progress (1): 240/320 kB Progress (1): 242/320 kB Progress (1): 244/320 kB Progress (1): 246/320 kB Progress (1): 248/320 kB Progress (1): 250/320 kB Progress (1): 252/320 kB Progress (1): 254/320 kB Progress (1): 256/320 kB Progress (1): 258/320 kB Progress (1): 260/320 kB Progress (1): 262/320 kB Progress (1): 264/320 kB Progress (1): 266/320 kB Progress (1): 268/320 kB Progress (1): 270/320 kB Progress (1): 272/320 kB Progress (1): 274/320 kB Progress (1): 276/320 kB Progress (1): 279/320 kB Progress (1): 281/320 kB Progress (1): 283/320 kB Progress (1): 285/320 kB Progress (1): 287/320 kB Progress (1): 289/320 kB Progress (1): 291/320 kB Progress (1): 293/320 kB Progress (1): 295/320 kB Progress (1): 297/320 kB Progress (1): 299/320 kB Progress (1): 301/320 kB Progress (1): 303/320 kB Progress (1): 305/320 kB Progress (1): 307/320 kB Progress (1): 309/320 kB Progress (1): 311/320 kB Progress (1): 313/320 kB Progress (1): 315/320 kB Progress (1): 317/320 kB Progress (1): 319/320 kB Progress (1): 320 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-sources.jar (320 kB at 411 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar Progress (1): 2.0/35 kB Progress (1): 4.1/35 kB Progress (1): 6.1/35 kB Progress (1): 8.2/35 kB Progress (1): 10/35 kB Progress (1): 12/35 kB Progress (1): 14/35 kB Progress (1): 16/35 kB Progress (1): 18/35 kB Progress (1): 20/35 kB Progress (1): 23/35 kB Progress (1): 25/35 kB Progress (1): 27/35 kB Progress (1): 29/35 kB Progress (1): 31/35 kB Progress (1): 33/35 kB Progress (1): 35/35 kB Progress (1): 35 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3-sources.jar (35 kB at 50 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar.asc (473 B at 2.0 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-sources.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.pom.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar Progress (1): 2.0/57 kB Progress (1): 4.1/57 kB Progress (1): 6.1/57 kB Progress (1): 8.2/57 kB Progress (1): 10/57 kB Progress (1): 12/57 kB Progress (1): 14/57 kB Progress (1): 16/57 kB Progress (1): 18/57 kB Progress (1): 20/57 kB Progress (1): 23/57 kB Progress (1): 25/57 kB Progress (1): 27/57 kB Progress (1): 29/57 kB Progress (1): 31/57 kB Progress (1): 33/57 kB Progress (1): 35/57 kB Progress (1): 37/57 kB Progress (1): 39/57 kB Progress (1): 41/57 kB Progress (1): 43/57 kB Progress (1): 45/57 kB Progress (1): 47/57 kB Progress (1): 49/57 kB Progress (1): 51/57 kB Progress (1): 53/57 kB Progress (1): 55/57 kB Progress (1): 57 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar (57 kB at 85 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-cli/1.14.3/appng-cli-1.14.3-javadoc.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application/1.14.3/appng-application-1.14.3.zip.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar Progress (1): 2.0/3.0 kB Progress (1): 3.0 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-sources.jar (3.0 kB at 4.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3-sources.jar.asc (473 B at 2.0 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.1/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.2/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.3/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.4/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.5/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.6/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.7/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.8/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 0.9/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0/1.0 MB Progress (1): 1.0 MB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-javadoc.jar (1.0 MB at 1.3 MB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar Progress (1): 2.0/19 kB Progress (1): 4.1/19 kB Progress (1): 6.1/19 kB Progress (1): 8.2/19 kB Progress (1): 10/19 kB Progress (1): 12/19 kB Progress (1): 14/19 kB Progress (1): 16/19 kB Progress (1): 18/19 kB Progress (1): 19 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-sources.jar (19 kB at 27 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar Progress (1): 2.0/34 kB Progress (1): 4.1/34 kB Progress (1): 6.1/34 kB Progress (1): 8.2/34 kB Progress (1): 10/34 kB Progress (1): 12/34 kB Progress (1): 14/34 kB Progress (1): 16/34 kB Progress (1): 18/34 kB Progress (1): 20/34 kB Progress (1): 23/34 kB Progress (1): 25/34 kB Progress (1): 27/34 kB Progress (1): 29/34 kB Progress (1): 31/34 kB Progress (1): 33/34 kB Progress (1): 34 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-sources.jar (34 kB at 55 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.pom.asc (473 B at 2.0 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3-sources.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat8/1.14.3/appng-tomcat8-1.14.3.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar Progress (1): 2.0/18 kB Progress (1): 4.1/18 kB Progress (1): 6.1/18 kB Progress (1): 8.2/18 kB Progress (1): 10/18 kB Progress (1): 12/18 kB Progress (1): 14/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.jar (18 kB at 28 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom Progress (1): 2.0/2.1 kB Progress (1): 2.1 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3.pom (2.1 kB at 3.5 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.1/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.2/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.3/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.4/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.5/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.6/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.7/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.8/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 0.9/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.0/1.1 MB Progress (1): 1.1/1.1 MB Progress (1): 1.1 MB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar (1.1 MB at 1.4 MB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.pom.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar Progress (1): 1.6 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.jar (1.6 kB at 2.5 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom Progress (1): 533 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-application-assembly/1.14.3/appng-application-assembly-1.14.3.pom (533 B at 834 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar Progress (1): 2.0/30 kB Progress (1): 4.1/30 kB Progress (1): 6.1/30 kB Progress (1): 8.2/30 kB Progress (1): 10/30 kB Progress (1): 12/30 kB Progress (1): 14/30 kB Progress (1): 16/30 kB Progress (1): 18/30 kB Progress (1): 20/30 kB Progress (1): 23/30 kB Progress (1): 25/30 kB Progress (1): 27/30 kB Progress (1): 29/30 kB Progress (1): 30 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.jar (30 kB at 46 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom Progress (1): 1.7 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom (1.7 kB at 2.8 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.pom.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar Progress (1): 2.0/27 kB Progress (1): 4.1/27 kB Progress (1): 6.1/27 kB Progress (1): 8.2/27 kB Progress (1): 10/27 kB Progress (1): 12/27 kB Progress (1): 14/27 kB Progress (1): 16/27 kB Progress (1): 18/27 kB Progress (1): 20/27 kB Progress (1): 23/27 kB Progress (1): 25/27 kB Progress (1): 27/27 kB Progress (1): 27 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tomcat7/1.14.3/appng-tomcat7-1.14.3-javadoc.jar (27 kB at 42 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer-jaxb/1.14.3/appng-appngizer-jaxb-1.14.3.pom.asc (473 B at 2.0 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-documentation/1.14.3/appng-documentation-1.14.3.pom.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar Progress (1): 2.0/30 kB Progress (1): 4.1/30 kB Progress (1): 6.1/30 kB Progress (1): 8.2/30 kB Progress (1): 10/30 kB Progress (1): 12/30 kB Progress (1): 14/30 kB Progress (1): 16/30 kB Progress (1): 18/30 kB Progress (1): 20/30 kB Progress (1): 23/30 kB Progress (1): 25/30 kB Progress (1): 27/30 kB Progress (1): 29/30 kB Progress (1): 30 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.jar (30 kB at 42 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom Progress (1): 2.0/2.3 kB Progress (1): 2.3 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-formtags/1.14.3/appng-formtags-1.14.3.pom (2.3 kB at 3.7 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar Progress (1): 2.0/89 kB Progress (1): 4.1/89 kB Progress (1): 6.1/89 kB Progress (1): 8.2/89 kB Progress (1): 10/89 kB Progress (1): 12/89 kB Progress (1): 14/89 kB Progress (1): 16/89 kB Progress (1): 18/89 kB Progress (1): 20/89 kB Progress (1): 23/89 kB Progress (1): 25/89 kB Progress (1): 27/89 kB Progress (1): 29/89 kB Progress (1): 31/89 kB Progress (1): 33/89 kB Progress (1): 35/89 kB Progress (1): 37/89 kB Progress (1): 39/89 kB Progress (1): 41/89 kB Progress (1): 43/89 kB Progress (1): 45/89 kB Progress (1): 47/89 kB Progress (1): 49/89 kB Progress (1): 51/89 kB Progress (1): 53/89 kB Progress (1): 55/89 kB Progress (1): 57/89 kB Progress (1): 59/89 kB Progress (1): 61/89 kB Progress (1): 63/89 kB Progress (1): 66/89 kB Progress (1): 68/89 kB Progress (1): 70/89 kB Progress (1): 72/89 kB Progress (1): 74/89 kB Progress (1): 76/89 kB Progress (1): 78/89 kB Progress (1): 80/89 kB Progress (1): 82/89 kB Progress (1): 84/89 kB Progress (1): 86/89 kB Progress (1): 88/89 kB Progress (1): 89 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-forms/1.14.3/appng-forms-1.14.3-javadoc.jar (89 kB at 138 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar Progress (1): 2.0/41 kB Progress (1): 4.1/41 kB Progress (1): 6.1/41 kB Progress (1): 8.2/41 kB Progress (1): 10/41 kB Progress (1): 12/41 kB Progress (1): 14/41 kB Progress (1): 16/41 kB Progress (1): 18/41 kB Progress (1): 20/41 kB Progress (1): 23/41 kB Progress (1): 25/41 kB Progress (1): 27/41 kB Progress (1): 29/41 kB Progress (1): 31/41 kB Progress (1): 33/41 kB Progress (1): 35/41 kB Progress (1): 37/41 kB Progress (1): 39/41 kB Progress (1): 41 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-tools/1.14.3/appng-tools-1.14.3-sources.jar (41 kB at 64 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar Progress (1): 2.0/157 kB Progress (1): 4.1/157 kB Progress (1): 6.1/157 kB Progress (1): 8.2/157 kB Progress (1): 10/157 kB Progress (1): 12/157 kB Progress (1): 14/157 kB Progress (1): 16/157 kB Progress (1): 18/157 kB Progress (1): 20/157 kB Progress (1): 23/157 kB Progress (1): 25/157 kB Progress (1): 27/157 kB Progress (1): 29/157 kB Progress (1): 31/157 kB Progress (1): 33/157 kB Progress (1): 35/157 kB Progress (1): 37/157 kB Progress (1): 39/157 kB Progress (1): 41/157 kB Progress (1): 43/157 kB Progress (1): 45/157 kB Progress (1): 47/157 kB Progress (1): 49/157 kB Progress (1): 51/157 kB Progress (1): 53/157 kB Progress (1): 55/157 kB Progress (1): 57/157 kB Progress (1): 59/157 kB Progress (1): 61/157 kB Progress (1): 63/157 kB Progress (1): 66/157 kB Progress (1): 68/157 kB Progress (1): 70/157 kB Progress (1): 72/157 kB Progress (1): 74/157 kB Progress (1): 76/157 kB Progress (1): 78/157 kB Progress (1): 80/157 kB Progress (1): 82/157 kB Progress (1): 84/157 kB Progress (1): 86/157 kB Progress (1): 88/157 kB Progress (1): 90/157 kB Progress (1): 92/157 kB Progress (1): 94/157 kB Progress (1): 96/157 kB Progress (1): 98/157 kB Progress (1): 100/157 kB Progress (1): 102/157 kB Progress (1): 104/157 kB Progress (1): 106/157 kB Progress (1): 109/157 kB Progress (1): 111/157 kB Progress (1): 113/157 kB Progress (1): 115/157 kB Progress (1): 117/157 kB Progress (1): 119/157 kB Progress (1): 121/157 kB Progress (1): 123/157 kB Progress (1): 125/157 kB Progress (1): 127/157 kB Progress (1): 129/157 kB Progress (1): 131/157 kB Progress (1): 133/157 kB Progress (1): 135/157 kB Progress (1): 137/157 kB Progress (1): 139/157 kB Progress (1): 141/157 kB Progress (1): 143/157 kB Progress (1): 145/157 kB Progress (1): 147/157 kB Progress (1): 150/157 kB Progress (1): 152/157 kB Progress (1): 154/157 kB Progress (1): 156/157 kB Progress (1): 157 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-testsupport/1.14.3/appng-testsupport-1.14.3-javadoc.jar (157 kB at 216 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar Progress (1): 2.0/273 kB Progress (1): 4.1/273 kB Progress (1): 6.1/273 kB Progress (1): 8.2/273 kB Progress (1): 10/273 kB Progress (1): 12/273 kB Progress (1): 14/273 kB Progress (1): 16/273 kB Progress (1): 18/273 kB Progress (1): 20/273 kB Progress (1): 23/273 kB Progress (1): 25/273 kB Progress (1): 27/273 kB Progress (1): 29/273 kB Progress (1): 31/273 kB Progress (1): 33/273 kB Progress (1): 35/273 kB Progress (1): 37/273 kB Progress (1): 39/273 kB Progress (1): 41/273 kB Progress (1): 43/273 kB Progress (1): 45/273 kB Progress (1): 47/273 kB Progress (1): 49/273 kB Progress (1): 51/273 kB Progress (1): 53/273 kB Progress (1): 55/273 kB Progress (1): 57/273 kB Progress (1): 59/273 kB Progress (1): 61/273 kB Progress (1): 63/273 kB Progress (1): 66/273 kB Progress (1): 68/273 kB Progress (1): 70/273 kB Progress (1): 72/273 kB Progress (1): 74/273 kB Progress (1): 76/273 kB Progress (1): 78/273 kB Progress (1): 80/273 kB Progress (1): 82/273 kB Progress (1): 84/273 kB Progress (1): 86/273 kB Progress (1): 88/273 kB Progress (1): 90/273 kB Progress (1): 92/273 kB Progress (1): 94/273 kB Progress (1): 96/273 kB Progress (1): 98/273 kB Progress (1): 100/273 kB Progress (1): 102/273 kB Progress (1): 104/273 kB Progress (1): 106/273 kB Progress (1): 109/273 kB Progress (1): 111/273 kB Progress (1): 113/273 kB Progress (1): 115/273 kB Progress (1): 117/273 kB Progress (1): 119/273 kB Progress (1): 121/273 kB Progress (1): 123/273 kB Progress (1): 125/273 kB Progress (1): 127/273 kB Progress (1): 129/273 kB Progress (1): 131/273 kB Progress (1): 133/273 kB Progress (1): 135/273 kB Progress (1): 137/273 kB Progress (1): 139/273 kB Progress (1): 141/273 kB Progress (1): 143/273 kB Progress (1): 145/273 kB Progress (1): 147/273 kB Progress (1): 150/273 kB Progress (1): 152/273 kB Progress (1): 154/273 kB Progress (1): 156/273 kB Progress (1): 158/273 kB Progress (1): 160/273 kB Progress (1): 162/273 kB Progress (1): 164/273 kB Progress (1): 166/273 kB Progress (1): 168/273 kB Progress (1): 170/273 kB Progress (1): 172/273 kB Progress (1): 174/273 kB Progress (1): 176/273 kB Progress (1): 178/273 kB Progress (1): 180/273 kB Progress (1): 182/273 kB Progress (1): 184/273 kB Progress (1): 186/273 kB Progress (1): 188/273 kB Progress (1): 190/273 kB Progress (1): 193/273 kB Progress (1): 195/273 kB Progress (1): 197/273 kB Progress (1): 199/273 kB Progress (1): 201/273 kB Progress (1): 203/273 kB Progress (1): 205/273 kB Progress (1): 207/273 kB Progress (1): 209/273 kB Progress (1): 211/273 kB Progress (1): 213/273 kB Progress (1): 215/273 kB Progress (1): 217/273 kB Progress (1): 219/273 kB Progress (1): 221/273 kB Progress (1): 223/273 kB Progress (1): 225/273 kB Progress (1): 227/273 kB Progress (1): 229/273 kB Progress (1): 231/273 kB Progress (1): 233/273 kB Progress (1): 236/273 kB Progress (1): 238/273 kB Progress (1): 240/273 kB Progress (1): 242/273 kB Progress (1): 244/273 kB Progress (1): 246/273 kB Progress (1): 248/273 kB Progress (1): 250/273 kB Progress (1): 252/273 kB Progress (1): 254/273 kB Progress (1): 256/273 kB Progress (1): 258/273 kB Progress (1): 260/273 kB Progress (1): 262/273 kB Progress (1): 264/273 kB Progress (1): 266/273 kB Progress (1): 268/273 kB Progress (1): 270/273 kB Progress (1): 272/273 kB Progress (1): 273 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-javadoc.jar (273 kB at 397 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-core/1.14.3/appng-core-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3.war.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-template-assembly/1.14.3/appng-template-assembly-1.14.3-sources.jar.asc (473 B at 2.1 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-taglib/1.14.3/appng-taglib-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-appngizer/1.14.3/appng-appngizer-1.14.3-sources.jar.asc (473 B at 2.2 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-persistence/1.14.3/appng-persistence-1.14.3-javadoc.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-search/1.14.3/appng-search-1.14.3-sources.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar Progress (1): 2.0/14 kB Progress (1): 4.1/14 kB Progress (1): 6.1/14 kB Progress (1): 8.2/14 kB Progress (1): 10/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.jar (14 kB at 22 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom Progress (1): 2.0/3.8 kB Progress (1): 3.8 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/appng-appngizer-maven-plugin/1.14.3/appng-appngizer-maven-plugin-1.14.3.pom (3.8 kB at 5.8 kB/s) Downloading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/maven-metadata.xml Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/maven-metadata.xml Progress (1): 261 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/maven/maven-metadata.xml (261 B at 322 B/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar Progress (1): 2.0/163 kB Progress (1): 4.1/163 kB Progress (1): 6.1/163 kB Progress (1): 8.2/163 kB Progress (1): 10/163 kB Progress (1): 12/163 kB Progress (1): 14/163 kB Progress (1): 16/163 kB Progress (1): 18/163 kB Progress (1): 20/163 kB Progress (1): 23/163 kB Progress (1): 25/163 kB Progress (1): 27/163 kB Progress (1): 29/163 kB Progress (1): 31/163 kB Progress (1): 33/163 kB Progress (1): 35/163 kB Progress (1): 37/163 kB Progress (1): 39/163 kB Progress (1): 41/163 kB Progress (1): 43/163 kB Progress (1): 45/163 kB Progress (1): 47/163 kB Progress (1): 49/163 kB Progress (1): 51/163 kB Progress (1): 53/163 kB Progress (1): 55/163 kB Progress (1): 57/163 kB Progress (1): 59/163 kB Progress (1): 61/163 kB Progress (1): 63/163 kB Progress (1): 66/163 kB Progress (1): 68/163 kB Progress (1): 70/163 kB Progress (1): 72/163 kB Progress (1): 74/163 kB Progress (1): 76/163 kB Progress (1): 78/163 kB Progress (1): 80/163 kB Progress (1): 82/163 kB Progress (1): 84/163 kB Progress (1): 86/163 kB Progress (1): 88/163 kB Progress (1): 90/163 kB Progress (1): 92/163 kB Progress (1): 94/163 kB Progress (1): 96/163 kB Progress (1): 98/163 kB Progress (1): 100/163 kB Progress (1): 102/163 kB Progress (1): 104/163 kB Progress (1): 106/163 kB Progress (1): 109/163 kB Progress (1): 111/163 kB Progress (1): 113/163 kB Progress (1): 115/163 kB Progress (1): 117/163 kB Progress (1): 119/163 kB Progress (1): 121/163 kB Progress (1): 123/163 kB Progress (1): 125/163 kB Progress (1): 127/163 kB Progress (1): 129/163 kB Progress (1): 131/163 kB Progress (1): 133/163 kB Progress (1): 135/163 kB Progress (1): 137/163 kB Progress (1): 139/163 kB Progress (1): 141/163 kB Progress (1): 143/163 kB Progress (1): 145/163 kB Progress (1): 147/163 kB Progress (1): 150/163 kB Progress (1): 152/163 kB Progress (1): 154/163 kB Progress (1): 156/163 kB Progress (1): 158/163 kB Progress (1): 160/163 kB Progress (1): 162/163 kB Progress (1): 163 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-xmlapi/1.14.3/appng-xmlapi-1.14.3-sources.jar (163 kB at 178 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar.asc Progress (1): 473 B Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-api/1.14.3/appng-api-1.14.3.jar.asc (473 B at 2.3 kB/s) Uploading: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar Progress (1): 2.0/12 kB Progress (1): 4.1/12 kB Progress (1): 6.1/12 kB Progress (1): 8.2/12 kB Progress (1): 10/12 kB Progress (1): 12/12 kB Progress (1): 12 kB Uploaded: https://oss.sonatype.org:443/service/local/staging/deployByRepositoryId/orgappng-1014/org/appng/appng-mail/1.14.3/appng-mail-1.14.3-sources.jar (12 kB at 19 kB/s) [INFO] * Upload of locally staged artifacts finished. [INFO] * Closing staging repository with ID "orgappng-1014". Waiting for operation to complete... ......... [INFO] Remote staged 1 repositories, finished with success. [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] appNG Parent ....................................... SUCCESS [ 16.388 s] [INFO] appNG Tools ........................................ SUCCESS [ 17.435 s] [INFO] appNG Mail ......................................... SUCCESS [ 6.240 s] [INFO] appNG Forms ........................................ SUCCESS [ 10.132 s] [INFO] appng Formtags ..................................... SUCCESS [ 8.662 s] [INFO] appNG XML-API ...................................... SUCCESS [ 8.946 s] [INFO] appNG public API ................................... SUCCESS [ 20.990 s] [INFO] appNG testsupport .................................. SUCCESS [ 10.580 s] [INFO] appNG Persistence-Tools ............................ SUCCESS [ 25.637 s] [INFO] appNG Search ....................................... SUCCESS [ 16.130 s] [INFO] appNG Core Library ................................. SUCCESS [01:01 min] [INFO] appNG Tomcat 7 ..................................... SUCCESS [ 3.808 s] [INFO] appNG Tomcat 8 ..................................... SUCCESS [ 4.622 s] [INFO] appNG Command Line Interface ....................... SUCCESS [ 49.895 s] [INFO] appNG Tag Library .................................. SUCCESS [ 14.657 s] [INFO] appNG Application .................................. SUCCESS [ 9.548 s] [INFO] appNG application BOM .............................. SUCCESS [ 4.562 s] [INFO] appNG Documentation ................................ SUCCESS [ 29.954 s] [INFO] appNG Template Assembly Descriptors ................ SUCCESS [ 2.467 s] [INFO] appNG Template Parent .............................. SUCCESS [ 5.671 s] [INFO] appng-application-assembly ......................... SUCCESS [ 7.653 s] [INFO] appNG application parent ........................... SUCCESS [ 7.696 s] [INFO] Archetype - appng-archetype-application ............ SUCCESS [ 6.346 s] [INFO] appNGizer JAXB API ................................. SUCCESS [ 7.707 s] [INFO] appNGizer .......................................... SUCCESS [ 56.606 s] [INFO] appNG appNGizer Maven Plugin ....................... SUCCESS [03:47 min] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 10:42 min [INFO] Finished at: 2017-07-28T09:42:42+02:00 [INFO] Final Memory: 284M/1677M [INFO] ------------------------------------------------------------------------ [Pipeline] dir Running in /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone [Pipeline] { [Pipeline] sh [appng-standalone] Running shell script + /var/lib/jenkins/tools/hudson.tasks.Maven_MavenInstallation/Maven_3.5.0/bin/mvn clean deploy [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building appNG Standalone 1.14.3 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ appng-standalone --- [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ appng-standalone --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 5 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ appng-standalone --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ appng-standalone --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ appng-standalone --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/test-classes [INFO] [INFO] --- maven-surefire-plugin:2.20:test (default-test) @ appng-standalone --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running org.appng.standalone.ApplicationStartupTest Replacement String: C:\Foo\Bar\Bla\Blubb [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.054 s - in org.appng.standalone.ApplicationStartupTest [INFO] [INFO] Results: [INFO] [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ appng-standalone --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/appng-standalone-1.14.3.jar [INFO] [INFO] --- maven-dependency-plugin:3.0.1:copy-dependencies (default) @ appng-standalone --- [INFO] Copying appng-appngizer-1.14.3.war to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/appng-appngizer-1.14.3.war [INFO] Copying tomcat-tribes-8.5.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/tomcat-tribes-8.5.15.jar [INFO] Copying commons-io-2.5.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/commons-io-2.5.jar [INFO] Copying ecj-3.12.3.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/ecj-3.12.3.jar [INFO] Copying tomcat-embed-core-8.5.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/tomcat-embed-core-8.5.15.jar [INFO] Copying appng-manager-1.12.3.zip to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/appng-manager-1.12.3.zip [INFO] Copying appng-authentication-1.11.1.zip to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/appng-authentication-1.11.1.zip [INFO] Copying tomcat-juli-8.5.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/tomcat-juli-8.5.15.jar [INFO] Copying appng-scheduler-1.11.3.zip to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/appng-scheduler-1.11.3.zip [INFO] Copying tomcat-embed-jasper-8.5.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/tomcat-embed-jasper-8.5.15.jar [INFO] Copying tomcat-embed-el-8.5.15.jar to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/tomcat-embed-el-8.5.15.jar [INFO] Copying appng-application-1.14.3.war to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/appng-application-1.14.3.war [INFO] Copying appng-template-1.14.3.zip to /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/dependency/appng-template-1.14.3.zip [INFO] [INFO] --- maven-assembly-plugin:3.0.0:single (default) @ appng-standalone --- [INFO] Reading assembly descriptor: src/main/assembly/assembly.xml [INFO] Building zip: /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/appng-standalone-1.14.3.zip [INFO] [INFO] --- maven-source-plugin:3.0.1:jar-no-fork (default) @ appng-standalone --- [INFO] Building jar: /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/appng-standalone-1.14.3-sources.jar [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ appng-standalone --- [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/appng-standalone-1.14.3.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.jar [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/pom.xml to /var/lib/jenkins/.m2/repository/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.pom [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/appng-standalone-1.14.3.zip to /var/lib/jenkins/.m2/repository/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.zip [INFO] Installing /var/lib/jenkins/workspace/appNG_Release/appng/appng-standalone/target/appng-standalone-1.14.3-sources.jar to /var/lib/jenkins/.m2/repository/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3-sources.jar [INFO] [INFO] --- maven-deploy-plugin:2.8.2:deploy (default-deploy) @ appng-standalone --- Uploading: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.jar Progress (1): 2.0/9.5 kB Progress (1): 4.1/9.5 kB Progress (1): 6.1/9.5 kB Progress (1): 8.2/9.5 kB Progress (1): 9.5 kB Uploaded: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.jar (9.5 kB at 26 kB/s) Uploading: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.pom Progress (1): 2.0/6.2 kB Progress (1): 4.1/6.2 kB Progress (1): 6.1/6.2 kB Progress (1): 6.2 kB Uploaded: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.pom (6.2 kB at 59 kB/s) Downloading: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/maven-metadata.xml Progress (1): 307 B Downloaded: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/maven-metadata.xml (307 B at 7.5 kB/s) Uploading: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/maven-metadata.xml Progress (1): 339 B Uploaded: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/maven-metadata.xml (339 B at 2.4 kB/s) Uploading: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.zip Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.1/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.2/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.3/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.4/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.5/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.6/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.7/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.8/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 0.9/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.0/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.1/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.2/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.3/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.4/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.5/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.6/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.7/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.8/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 1.9/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.0/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.1/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.2/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.3/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.4/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.5/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.6/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.7/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.8/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 2.9/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.0/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.1/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.2/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.3/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.4/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.5/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.6/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.7/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.8/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 3.9/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.0/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.1/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.2/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.3/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.4/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.5/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.6/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.7/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.8/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 4.9/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.0/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.1/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.2/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.3/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.4/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.5/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.6/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.7/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.8/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 5.9/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.0/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.1/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.2/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.3/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.4/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.5/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.6/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.7/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.8/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 6.9/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.0/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.1/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.2/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.3/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.4/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.5/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.6/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.7/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.8/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 7.9/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.0/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.1/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.2/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.3/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.4/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.5/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.6/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.7/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.8/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 8.9/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.0/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.1/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.2/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.3/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.4/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.5/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.6/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.7/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.8/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 9.9/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10.0/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 10/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 11/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 12/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 13/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 14/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 15/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 16/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 17/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 18/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 19/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 20/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 21/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 22/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 23/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 24/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 25/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 26/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 27/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 28/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 29/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 30/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 31/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 32/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 33/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 34/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 35/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 36/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 37/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 38/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 39/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 40/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 41/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 42/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 43/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 44/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 45/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 46/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 47/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 48/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 49/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 50/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 51/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 52/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 53/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 54/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 55/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 56/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 57/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 58/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 59/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 60/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 61/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 62/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 63/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 64/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 65/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 66/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 67/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 68/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 69/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 70/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 71/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 72/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 73/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 74/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 75/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 76/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 77/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 78/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 79/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 80/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 81/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 82/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 83/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 84/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 85/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 86/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 87/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 88/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 89/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 90/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 91/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 92/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 93/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 94/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 95/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 96/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 97/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 98/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 99/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 100/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 101/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 102/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 103/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 104/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105/105 MB Progress (1): 105 MB Uploaded: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3.zip (105 MB at 23 MB/s) Uploading: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3-sources.jar Progress (1): 2.0/7.9 kB Progress (1): 4.1/7.9 kB Progress (1): 6.1/7.9 kB Progress (1): 7.9 kB Uploaded: https://appng.org/nexus/repository/appng-stable/org/appng/appng-standalone/1.14.3/appng-standalone-1.14.3-sources.jar (7.9 kB at 90 kB/s) [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 12.978 s [INFO] Finished at: 2017-07-28T09:43:00+02:00 [INFO] Final Memory: 28M/628M [INFO] ------------------------------------------------------------------------ [Pipeline] sh [appng-standalone] Running shell script + cp target/appng-standalone-1.14.3.zip /srv/www/appng.org/appng/builds/stable [Pipeline] } [Pipeline] // dir [Pipeline] } [Pipeline] // dir [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Results) [Pipeline] step Recording test results [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Docs) [Pipeline] dir Running in /var/lib/jenkins/workspace/appNG_Release/appng [Pipeline] { [Pipeline] sh [appng] Running shell script + rm -rf /srv/www/appng.org/appng/docs/1.14.3 [Pipeline] sh [appng] Running shell script + mkdir --parents /srv/www/appng.org/appng/docs/1.14.3/javadoc [Pipeline] sh [appng] Running shell script + mkdir --parents /srv/www/appng.org/appng/docs/1.14.3/reference [Pipeline] sh [appng] Running shell script + mkdir --parents /srv/www/appng.org/appng/docs/1.14.3/appngizer/html [Pipeline] sh [appng] Running shell script + mkdir --parents /srv/www/appng.org/appng/docs/1.14.3/appngizer/pdf [Pipeline] sh [appng] Running shell script + mv -f target/site/apidocs/allclasses-frame.html target/site/apidocs/allclasses-noframe.html target/site/apidocs/appng-javadoc.css target/site/apidocs/constant-values.html target/site/apidocs/deprecated-list.html target/site/apidocs/help-doc.html target/site/apidocs/index-all.html target/site/apidocs/index.html target/site/apidocs/org target/site/apidocs/overview-frame.html target/site/apidocs/overview-summary.html target/site/apidocs/overview-tree.html target/site/apidocs/package-list target/site/apidocs/resources target/site/apidocs/script.js target/site/apidocs/serialized-form.html /srv/www/appng.org/appng/docs/1.14.3/javadoc [Pipeline] sh [appng] Running shell script + mv -f appng-documentation/target/generated-docs/html /srv/www/appng.org/appng/docs/1.14.3/reference [Pipeline] sh [appng] Running shell script + mv -f appng-documentation/target/generated-docs/pdf /srv/www/appng.org/appng/docs/1.14.3/reference [Pipeline] sh [appng] Running shell script + mv -f appng-appngizer/target/generated-docs/pdf/appngizer-platform-installation-guide.pdf appng-appngizer/target/generated-docs/pdf/appngizer-setup-guide.pdf appng-appngizer/target/generated-docs/pdf/appngizer-user-manual.pdf /srv/www/appng.org/appng/docs/1.14.3/appngizer/pdf/ [Pipeline] sh [appng] Running shell script + mv -f appng-appngizer/target/generated-docs/html/appng.css appng-appngizer/target/generated-docs/html/appngizer-platform-installation-guide.html appng-appngizer/target/generated-docs/html/appngizer-setup-guide.html appng-appngizer/target/generated-docs/html/appngizer-user-manual.html appng-appngizer/target/generated-docs/html/coderay-asciidoctor.css appng-appngizer/target/generated-docs/html/images appng-appngizer/target/generated-docs/html/parts appng-appngizer/target/generated-docs/html/xml /srv/www/appng.org/appng/docs/1.14.3/appngizer/html/ [Pipeline] sh [appng] Running shell script + rm -rf /srv/www/appng.org/appng/docs/1.14.3/appngizer/html/parts [Pipeline] sh [appng] Running shell script + rm -rf /srv/www/appng.org/appng/docs/1.14.3/appngizer/html/xml [Pipeline] sh [appng] Running shell script + cp appng-xmlapi/target/classes/appng-application.xsd /srv/www/appng.org/schema/application/appng-application-1.14.3.xsd [Pipeline] sh [appng] Running shell script + cp appng-xmlapi/target/classes/appng-platform.xsd /srv/www/appng.org/schema/platform/appng-platform-1.14.3.xsd [Pipeline] sh [appng] Running shell script + cp appng-appngizer-jaxb/target/classes/appngizer.xsd /srv/www/appng.org/schema/appngizer/appngizer-1.14.3.xsd [Pipeline] sh [appng] Running shell script + cp appng-xmlapi/target/classes/appng-application.xsd /srv/www/appng.org/schema/application/appng-application.xsd [Pipeline] sh [appng] Running shell script + cp appng-xmlapi/target/classes/appng-platform.xsd /srv/www/appng.org/schema/platform/appng-platform.xsd [Pipeline] sh [appng] Running shell script + cp appng-appngizer-jaxb/target/classes/appngizer.xsd /srv/www/appng.org/schema/appngizer/appngizer.xsd [Pipeline] } [Pipeline] // dir [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (merge to master and tag) [Pipeline] dir Running in /var/lib/jenkins/workspace/appNG_Release/appng [Pipeline] { [Pipeline] sh [appng] Running shell script + git checkout master Switched to branch 'master' Your branch is up-to-date with 'origin/master'. [Pipeline] sh [appng] Running shell script + git merge --ff appng-1.14.x Updating 86a8dc5..1af5e9f Fast-forward .gitignore | 1 + CODE_OF_CONDUCT.adoc | 71 + CONTRIBUTING.adoc | 1 + README.adoc | 261 ++++ appng-api/pom.xml | 31 +- appng-application-assembly/pom.xml | 2 +- .../main/resources/assemblies/assembly-local.xml | 3 +- .../src/main/resources/assemblies/assembly.xml | 6 +- appng-application-bom/pom.xml | 1429 ++++++++++++++++++++ appng-application-bom/readme.txt | 9 + appng-application-parent/pom.xml | 18 +- appng-application/pom.xml | 40 +- .../conf/examples/appNG-example-mssql.properties | 2 +- appng-appngizer-jaxb/pom.xml | 4 +- appng-appngizer-maven-plugin/pom.xml | 8 +- appng-appngizer/pom.xml | 52 +- .../appngizer-platform-installation-guide.adoc | 2 +- .../src/main/asciidoc/appngizer-setup-guide.adoc | 8 +- .../src/main/asciidoc/appngizer-user-manual.adoc | 2 +- appng-archetype-application/pom.xml | 2 +- appng-archetype-application/readme.txt | 2 +- .../src/main/resources/archetype-resources/pom.xml | 82 +- .../src/test/resources/log4j.properties | 2 +- .../xml/PersonDataSourceTest-testPersons.xml | 2 +- appng-cli/pom.xml | 33 +- .../cli/commands/template/InstallTemplate.java | 4 + .../appng/cli/commands/AbstractCommandTest.java | 2 +- .../application/CommandInstallApplicationTest.java | 44 + .../repository/CommandCreateRepositoryTest.java | 2 +- .../template/CommandInstallTemplateTest.java | 41 + .../resources/localrepo/appng-template-0.8.0.zip | Bin 0 -> 4044 bytes .../demo-application-1.5.4-2017-04-10-1046.zip | Bin 0 -> 5456 bytes appng-cli/src/test/resources/log4j.properties | 34 +- appng-core/pom.xml | 32 +- .../mssql/V2_9_1__add_global_admin_role.sql | 3 +- .../appng/core/service/DatabaseServiceTest.java | 5 + .../src/test/resources/conf/log4j.properties | 20 - appng-core/src/test/resources/log4j.properties | 42 +- appng-documentation/pom.xml | 2 +- .../src/main/asciidoc/listing/dependencies.txt | 8 +- appng-forms/pom.xml | 31 +- appng-formtags/pom.xml | 28 +- appng-mail/pom.xml | 31 +- appng-persistence/pom.xml | 28 +- appng-search/pom.xml | 39 +- appng-standalone/pom.xml | 20 +- .../org/appng/standalone/ApplicationStartup.java | 7 +- appng-taglib/pom.xml | 30 +- .../main/java/org/appng/taglib/search/Search.java | 2 +- appng-template-assembly/pom.xml | 2 +- appng-template-parent/pom.xml | 10 +- appng-testsupport/pom.xml | 31 +- appng-tomcat7/pom.xml | 4 +- appng-tomcat8/pom.xml | 2 +- appng-tools/pom.xml | 28 +- appng-xmlapi/pom.xml | 28 +- pom.xml | 135 +- readme.adoc | 157 --- 58 files changed, 2501 insertions(+), 424 deletions(-) create mode 100644 CODE_OF_CONDUCT.adoc create mode 100644 CONTRIBUTING.adoc create mode 100644 README.adoc create mode 100644 appng-application-bom/pom.xml create mode 100644 appng-application-bom/readme.txt create mode 100644 appng-cli/src/test/java/org/appng/cli/commands/application/CommandInstallApplicationTest.java create mode 100644 appng-cli/src/test/java/org/appng/cli/commands/template/CommandInstallTemplateTest.java create mode 100644 appng-cli/src/test/resources/localrepo/appng-template-0.8.0.zip create mode 100644 appng-cli/src/test/resources/localrepo/demo-application-1.5.4-2017-04-10-1046.zip delete mode 100644 appng-core/src/test/resources/conf/log4j.properties delete mode 100644 readme.adoc [Pipeline] sh [appng] Running shell script + git tag appng-1.14.3 [Pipeline] sh [appng] Running shell script + git push origin appng-1.14.3 To git@github.com:appNG/appng.git * [new tag] appng-1.14.3 -> appng-1.14.3 [Pipeline] sh [appng] Running shell script + git push warning: push.default is unset; its implicit value has changed in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the traditional behavior, use: git config --global push.default matching To squelch this message and adopt the new behavior now, use: git config --global push.default simple When push.default is set to 'matching', git will push local branches to the remote branches that already exist with the same name. Since Git 2.0, Git defaults to the more conservative 'simple' behavior, which only pushes the current branch to the corresponding remote branch that 'git pull' uses to update the current branch. See 'git help config' and search for 'push.default' for further information. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode 'current' instead of 'simple' if you sometimes use older versions of Git) To git@github.com:appNG/appng.git 86a8dc5..1af5e9f master -> master [Pipeline] } [Pipeline] // dir [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (prepare next version) [Pipeline] dir Running in /var/lib/jenkins/workspace/appNG_Release/appng [Pipeline] { [Pipeline] sh [appng] Running shell script + git checkout -b appng-1.15.x Switched to a new branch 'appng-1.15.x' [Pipeline] sh [appng] Running shell script + sed -i s/1\.14\.3/1\.15\.0-SNAPSHOT/g pom.xml appng-api/pom.xml appng-application-assembly/pom.xml appng-application-bom/pom.xml appng-application-parent/pom.xml appng-application/pom.xml appng-appngizer-jaxb/pom.xml appng-appngizer-maven-plugin/pom.xml appng-appngizer/pom.xml appng-archetype-application/pom.xml appng-cli/pom.xml appng-core/pom.xml appng-documentation/pom.xml appng-forms/pom.xml appng-formtags/pom.xml appng-mail/pom.xml appng-persistence/pom.xml appng-search/pom.xml appng-standalone/pom.xml appng-taglib/pom.xml appng-template-assembly/pom.xml appng-template-parent/pom.xml appng-testsupport/pom.xml appng-tomcat7/pom.xml appng-tomcat8/pom.xml appng-tools/pom.xml appng-xmlapi/pom.xml appng-archetype-application/src/main/resources/archetype-resources/pom.xml appng-archetype-application/readme.txt appng-documentation/src/main/asciidoc/listing/dependencies.txt [Pipeline] sh [appng] Running shell script + sed s/:current: {stable}/:current: {snapshot}/g README.adoc image::https://www.aiticon.com/assets/images/appng_logo_760px.jpg[] :snapshot: 1.15.0-SNAPSHOT :stable: 1.14.3 :current: {snapshot} == Welcome to appNG appNG is a *web application platform* and a *web application framework*, based on http://tomcat.apache.org/[Apache Tomcat^] and the https://spring.io[Spring Framework^]. With appNG, you can build your own applications and deploy them to the platform within minutes. appNG is very well suited to create and operate your own application platform as a service (aPaaS). == Core Features * Clear separation of concerns following the *MVC* paradigm * *Declarative UI definition* using schema-safe XML files * Writing business logic by implementing a *handful of interfaces* * Automatic *parameter-binding* and type conversion * Built-in support for *paging, filtering sorting* * Out-of-the-box support for *JPA* and http://projects.spring.io/spring-data/[Spring Data^] * Built-In *connection pooling* using https://github.com/brettwooldridge/HikariCP[HikariCP^] * Database *schema migrations* powered by https://flywaydb.org/[Flyway^] * Built-In *role based access control*, which allows using field-based access * Easily provide your own *SOAP* or *REST* based webservices * Fully supports *internationalization* (i18n) * *Easy deployment* by providing a repository mechanism * Configurable caching powered by http://www.ehcache.org/[Ehcache^] * Cluster support and *horizontal scaling* * Powerful *administration tools*, including a graphical user interface (GUI), but also a command line interface (CLI) and a REST-client * Supports the *Bean Validation API* * Supports *indexing and searching*, powered by http://lucene.apache.org/[Lucene^] * Customizable *templating* mechanism * Configurable and extendable *authentication mechanism* (local, LDAP etc.) * Provides *job scheduling* powered by http://www.quartz-scheduler.org/[Quartz^] * Provides *tooling for common tasks* like resizing images, sending emails, geo-locating, report generation etc. * Provides a large set of commonly used *libraries* such as https://commons.apache.org/[Apache Commons^] or https://github.com/FasterXML/jackson[Jackson^] * Can serve *JSP*-content that can make use of the appNG *tag library* * *Multi-tenancy* allows to separate or group applications * *Rapid protoyping* enables you to design your user interface without writing one line of Java code == Getting started === Download and run the appNG standalone Version appNG is available as a standalone version, suitable for evaluation and testing purposes. The standalone version also comes with *appNGizer*, the REST-based administration tool for appNG. The standalone version can be found here: https://appng.org/appng/builds/stable/appng-standalone-{stable}.zip Unzip the file, change into the extracted folder and run [source,subs=normal] ---- java -jar appng-standalone-{stable}.jar -i -u ---- Wait a few seconds, until the console output stops, then visit http://localhost:8080/manager in your browser. Sign-in with the username `admin` and the password `s3cr3t`. [NOTE] ==== When executing the jar for the next time, you *must* omit the parameters `-u` and `-i`, as they are only allowed on the very first run (`-u` unpacks and configures the wrapped web applications, `-i` is for installing the appNG applications and the template). ==== === Create your first appNG application Using the *appNG Maven Archetype*, you can easily create your first own application. Therefore, the following command must be used (replace `mygroupid` and `myartifactid` with the desired values): [source,subs=normal] ---- mvn archetype:generate -DgroupId=mygroupid -DartifactId=myartifactid -DarchetypeGroupId=org.appng -DarchetypeArtifactId=appng-archetype-application -DarchetypeVersion={stable} -DinteractiveMode=false ---- Next, change into the created project folder and run `mvn package`. In the target folder, a file named `myartifactid-1.0-SNAPSHOT-.zip` should have been generated. This file is the application archive. === Deploying the application The next step is to deploy the application through a local repository, e.g. the application archives are served from the local file system. During installation of the *appNG standalone* version, a local repository has been created at `/path/to/appng-standalone-{stable}/repository/`. So the first step is to copy `myartifactid-1.0-SNAPSHOT-.zip` to this location. [TIP] ==== You can also build the application archive directly in the repository folder by using the Maven option `-DoutFolder=/path/to/appng-standalone-{stable}/repository/` ==== Next, we use the *appNG CLI* to install the application and to activate it for the site `manager` (that has been created during installation). In `/path/to/appng-standalone-{stable}/appng/WEB-INF/bin`, execute the following commands: [source] ---- ./appng install-application -n myartifactid -v 1.0-SNAPSHOT -r Local ./appng activate-application -s manager -a myartifactid ---- Both commands should return without any message, meaning they where successful. [NOTE] ==== You can also use the appNG Manager or the appNGizer to install and activate an application. To see a list of available CLI commands, execute `./appng` or `./appng -h`. If you configure the appNGizer Maven Plugin for your project, you can automatically install and activate your application after the build. ==== The final step is to __reload__ the site `manager`. Therefore, login at http://localhost:8080/manager and click on the reload-icon shown next to the site in the overview. A message __"Site has been reloaded."__ should appear. After a re-login (see details below), a new navigation item named `MYAPPLICATION` should appear on the site's navigation on the left. When clicking it, you see the results of your very first appNG application. *Congratulations!* [NOTE] ==== During installation, the application's role `Admin` has been added to the appNG's built-in `Administrators` group, to which your user belongs to. Since the groups of a user are determined once during login, you need to re-login to apply the newly received permissions. For the following updates of your application, this step is therefore not necessary. ==== === What's next? You should import the Maven project into your favorite IDE. Then start browsing the code to get an idea of how an appNG application works. You should also take a look at the https://appng.org/appng/docs/{snapshot}/reference/html/developerguide.html[Developer Guide]. You may also want to check out *appNGizer* at http://localhost:8080/appNGizer. The user manual can be found here: https://appng.org/appng/docs/{snapshot}/appngizer/html/appngizer-user-manual.html == Components [width="100%",options="header"] |==================== | Name | Type | Description | https://github.com/appNG/appng[appNG^] | Web application | The appNG platform. | https://github.com/appNG/appng[appNGizer^] | Web application | Provides the appNG REST API. The appNGizer is part of the appng Git Repository. During the build a separate appNGizer WAR file is packaged. | https://github.com/appNG/appng[appng-standalone^] | Standalone version with bundled Tomcat | Includes the applications: Manager, Authentication and Scheduler and also the appNG Template | https://github.com/appNG/appng-manager[appNG Manager^] | appNG core application | Provides a web-based interface to administer appNG and to access other appNG applications. | https://github.com/appNG/appng-authentication[appNG Authentication^] | appNG core application | Provides different authentication mechanisms for appNG. | https://github.com/appNG/appng-scheduler[appNG Scheduler^] | appNG core application | Provides job scheduling services. | https://github.com/appNG/appng-template[appNG Template^] | appNG template | The classic XSLT based template, used in conjunction with the appNG Manager. |==================== NOTE: The appNG and appNGizer web applications run in Apache Tomcat, while appNG applications run on the appNG platform. appNG core applications have elevated permissions to access and control the appNG platform. appNG templates define the visual appearance of appNG applications. == Documentation [width="100%",options="header"] |==================== | Component | Type | Format |appNG |JavaDoc |https://appng.org/appng/docs/{current}/javadoc/[HTML] |appNG |Application Developer Guide |https://appng.org/appng/docs/{current}/reference/html/developerguide.html[HTML^], https://appng.org/appng/docs/{current}/reference/pdf/developerguide.pdf[PDF^] |appNGizer |Setup Guide |https://appng.org/appng/docs/{current}/appngizer/html/appngizer-setup-guide.html[HTML^], https://appng.org/appng/docs/{current}/appngizer/pdf/appngizer-setup-guide.pdf[PDF^] |appNGizer |Platform installation guide |https://appng.org/appng/docs/{current}/appngizer/html/appngizer-platform-installation-guide.html[HTML^], https://appng.org/appng/docs/{current}/appngizer/pdf/appngizer-platform-installation-guide.pdf[PDF^] |appNGizer |User Manual |https://appng.org/appng/docs/{current}/appngizer/html/appngizer-user-manual.html[HTML^], https://appng.org/appng/docs/{current}/appngizer/pdf/appngizer-user-manual.pdf[PDF^] |==================== == Download Releases [width="100%",options="header"] |==================== | Component | Version | Format |appNG |{stable} |https://appng.org/appng/builds/stable/appng-application-{stable}.war[WAR^] |appNGizer |{stable} |https://appng.org/appng/builds/stable/appng-appngizer-{stable}.war[WAR^] |Standalone |{stable} |https://appng.org/appng/builds/stable/appng-standalone-{stable}.zip[ZIP^] |==================== == Download Snapshots [width="100%",options="header"] |==================== | Component | Version | Format |appNG |{snapshot} |https://appng.org/appng/builds/snapshot/appng-application-{snapshot}.war[WAR^] |appNGizer |{snapshot} |https://appng.org/appng/builds/snapshot/appng-appngizer-{snapshot}.war[WAR^] |Standalone |{snapshot} |https://appng.org/appng/builds/snapshot/appng-standalone-{snapshot}.zip[ZIP^] |==================== WARNING: Snapshots reflect the current development status. We do not recommend to use snapshots in production and might not be able to help, if you are running cutting-edge appNG. However, if you want to take a look at the latest features, feel free to download a copy and try it out. == Getting help Please ask your question at https://stackoverflow.com/[Stack Overflow^] and make sure to add the https://stackoverflow.com/questions/tagged/appng[appng^] tag to your question. If you think you found a bug or want to propose a new feature, please create a ticket in our https://appng.org/jira/[issue tracker^]. If you require an *Enterprise Support Plan*, please contact https://www.aiticon.com[aiticon GmbH^] for further information. aiticon also offers trainings, consulting, development and hosting for appNG. == How to contribute Coming soon. == Developer Links * https://appng.org/jira/[Issue Tracker^] * https://appng.org/jenkins/[Continuous Integration^] * https://appng.org/appng/[Builds and Docs^] * https://appng.org/schema/[XSD Schemata^] * Maven Repository - Stable * Maven Repository - Snapshot * appNG Application Repository - Stable * appNG Application Repository - Snapshot == License appNG is licensed under the https://www.apache.org/licenses/LICENSE-2.0[Apache License 2.0^]. [Pipeline] sh [appng] Running shell script + git status On branch appng-1.15.x Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) modified: appng-api/pom.xml modified: appng-application-assembly/pom.xml modified: appng-application-bom/pom.xml modified: appng-application-parent/pom.xml modified: appng-application/pom.xml modified: appng-appngizer-jaxb/pom.xml modified: appng-appngizer-maven-plugin/pom.xml modified: appng-appngizer/pom.xml modified: appng-archetype-application/pom.xml modified: appng-archetype-application/readme.txt modified: appng-archetype-application/src/main/resources/archetype-resources/pom.xml modified: appng-cli/pom.xml modified: appng-core/pom.xml modified: appng-documentation/pom.xml modified: appng-documentation/src/main/asciidoc/listing/dependencies.txt modified: appng-forms/pom.xml modified: appng-formtags/pom.xml modified: appng-mail/pom.xml modified: appng-persistence/pom.xml modified: appng-search/pom.xml modified: appng-standalone/pom.xml modified: appng-taglib/pom.xml modified: appng-template-assembly/pom.xml modified: appng-template-parent/pom.xml modified: appng-testsupport/pom.xml modified: appng-tomcat7/pom.xml modified: appng-tomcat8/pom.xml modified: appng-tools/pom.xml modified: appng-xmlapi/pom.xml modified: pom.xml Untracked files: (use "git add ..." to include in what will be committed) appng-standalone/src/test/resources/xml/copyConfig.xml no changes added to commit (use "git add" and/or "git commit -a") [Pipeline] sh [appng] Running shell script + git commit -a -m preparing next version 1.15.0-SNAPSHOT [appng-1.15.x 5c1e21c] preparing next version 1.15.0-SNAPSHOT 30 files changed, 49 insertions(+), 49 deletions(-) [Pipeline] sh [appng] Running shell script + git push origin appng-1.15.x To git@github.com:appNG/appng.git * [new branch] appng-1.15.x -> appng-1.15.x [Pipeline] } [Pipeline] // dir [Pipeline] } [Pipeline] // stage [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline Finished: SUCCESS